diff --git a/.gitignore b/.gitignore
index d108a66..bdbdffb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,4 +3,4 @@ logs/
nostr_core_lib/
blobs/
c-relay/
-
+text_graph/
diff --git a/api/index.html b/api/index.html
index b2c2a2c..d80575a 100644
--- a/api/index.html
+++ b/api/index.html
@@ -97,12 +97,12 @@
- |
- | Process ID |
- - |
+ Total Size |
+ - |
- | Active Connections |
- - |
+ Process ID |
+ - |
| Memory Usage |
@@ -188,7 +188,8 @@
| Rank |
Pubkey |
- Event Count |
+ Blob Count |
+ Total Size |
Percentage |
diff --git a/api/index.js b/api/index.js
index 2d6802d..f44ecb8 100644
--- a/api/index.js
+++ b/api/index.js
@@ -136,7 +136,7 @@ async function fetchRelayInfo(relayUrl) {
method: 'GET',
headers: {
'Accept': 'application/nostr+json',
- 'User-Agent': 'C-Relay-Admin-API/1.0'
+ 'User-Agent': 'Blossom-Admin-API/1.0'
},
timeout: 10000 // 10 second timeout
});
@@ -511,10 +511,8 @@ function updateAdminSectionsVisibility() {
function loadCurrentPageData() {
switch (currentPage) {
case 'statistics':
- // Load statistics immediately (no auto-refresh - using real-time monitoring events)
- sendStatsQuery().catch(error => {
- console.log('Auto-fetch statistics failed: ' + error.message);
- });
+ // Start HTTP polling for statistics (polls every 10 seconds)
+ startStatsPolling();
break;
case 'configuration':
// Load configuration
@@ -1311,7 +1309,7 @@ function initializeEventRateChart() {
eventRateChart = new ASCIIBarChart('event-rate-chart', {
maxHeight: 11, // Chart height in lines
maxDataPoints: 76, // Show last 76 bins (5+ minutes of history)
- title: 'New Events', // Chart title
+ title: 'New Blobs', // Chart title
xAxisLabel: '', // No X-axis label
yAxisLabel: '', // No Y-axis label
autoFitWidth: true, // Enable responsive font sizing
@@ -3298,7 +3296,7 @@ async function testPostEvent() {
["t", "test"],
["client", "c-relay-admin-api"]
],
- content: `Test event from C-Relay Admin API at ${new Date().toISOString()}`
+ content: `Test event from Blossom Admin API at ${new Date().toISOString()}`
};
logTestEvent('SENT', `Test event (before signing): ${JSON.stringify(testEvent)}`, 'EVENT');
@@ -3642,8 +3640,8 @@ function updateRelayInfoInHeader() {
// Get relay info from NIP-11 data or use defaults
const relayInfo = getRelayInfo();
- const relayName = relayInfo.name || 'C-Relay';
- const relayDescription = relayInfo.description || 'Nostr Relay';
+ const relayName = relayInfo.name || 'Blossom';
+ const relayDescription = relayInfo.description || 'Blob Storage Server';
// Convert relay pubkey to npub
let relayNpub = 'Loading...';
@@ -3682,8 +3680,8 @@ function getRelayInfo() {
// Default values
return {
- name: 'C-Relay',
- description: 'Nostr Relay',
+ name: 'Blossom',
+ description: 'Blob Storage Server',
pubkey: relayPubkey
};
}
@@ -3692,17 +3690,17 @@ function getRelayInfo() {
function updateStoredRelayInfo(configData) {
if (configData && configData.data) {
// Extract relay info from config data - handle both object and array formats
- let relayName = 'C-Relay';
- let relayDescription = 'Nostr Relay';
+ let relayName = 'Blossom';
+ let relayDescription = 'Blob Storage Server';
if (Array.isArray(configData.data)) {
// Array format: [{key: 'x', value: 'y'}, ...]
- relayName = configData.data.find(item => item.key === 'relay_name')?.value || 'C-Relay';
- relayDescription = configData.data.find(item => item.key === 'relay_description')?.value || 'Nostr Relay';
+ relayName = configData.data.find(item => item.key === 'relay_name')?.value || 'Blossom';
+ relayDescription = configData.data.find(item => item.key === 'relay_description')?.value || 'Blob Storage Server';
} else {
// Object format: {key1: 'value1', key2: 'value2', ...}
- relayName = configData.data.relay_name || 'C-Relay';
- relayDescription = configData.data.relay_description || 'Nostr Relay';
+ relayName = configData.data.relay_name || 'Blossom';
+ relayDescription = configData.data.relay_description || 'Blob Storage Server';
}
relayInfoData = {
@@ -3837,7 +3835,7 @@ async function sendRestartCommand() {
}
}
-// Send stats_query command to get database statistics using Administrator API (inner events)
+// Send query_view commands to get database statistics via HTTP POST
async function sendStatsQuery() {
if (!isLoggedIn || !userPubkey) {
log('Must be logged in to query database statistics', 'ERROR');
@@ -3845,74 +3843,81 @@ async function sendStatsQuery() {
return;
}
- if (!relayPool) {
- log('SimplePool connection not available', 'ERROR');
- updateStatsStatus('error', 'No relay connection');
- return;
- }
-
try {
updateStatsStatus('loading', 'Querying database...');
- // Create command array for stats query
- const command_array = ["stats_query", "all"];
+ // Query blob_overview view for basic stats
+ const overviewData = await sendAdminCommandHTTP(['query_view', 'blob_overview']);
+ handleViewQueryResponse('blob_overview', overviewData);
- // Encrypt the command array directly using NIP-44
- const encrypted_content = await encryptForRelay(JSON.stringify(command_array));
- if (!encrypted_content) {
- throw new Error('Failed to encrypt command array');
- }
+ // Query blob_type_distribution view
+ const typeData = await sendAdminCommandHTTP(['query_view', 'blob_type_distribution']);
+ handleViewQueryResponse('blob_type_distribution', typeData);
- // Create single kind 23456 admin event
- const statsEvent = {
- kind: 23456,
- pubkey: userPubkey,
- created_at: Math.floor(Date.now() / 1000),
- tags: [["p", getRelayPubkey()]],
- content: encrypted_content
- };
+ // Query blob_time_stats view
+ const timeData = await sendAdminCommandHTTP(['query_view', 'blob_time_stats']);
+ handleViewQueryResponse('blob_time_stats', timeData);
- // Sign the event
- const signedEvent = await window.nostr.signEvent(statsEvent);
- if (!signedEvent || !signedEvent.sig) {
- throw new Error('Event signing failed');
- }
-
- log('Sending stats query command...', 'INFO');
-
- // Publish via SimplePool
- const url = relayConnectionUrl.value.trim();
- const publishPromises = relayPool.publish([url], signedEvent);
-
- // Use Promise.allSettled to capture per-relay outcomes
- const results = await Promise.allSettled(publishPromises);
-
- // Check if any relay accepted the event
- let successCount = 0;
- results.forEach((result, index) => {
- if (result.status === 'fulfilled') {
- successCount++;
- log(`Stats query published successfully to relay ${index}`, 'INFO');
- } else {
- log(`Stats query failed on relay ${index}: ${result.reason?.message || result.reason}`, 'ERROR');
- }
- });
-
- if (successCount === 0) {
- const errorDetails = results.map((r, i) => `Relay ${i}: ${r.reason?.message || r.reason}`).join('; ');
- throw new Error(`All relays rejected stats query event. Details: ${errorDetails}`);
- }
-
- log('Stats query command sent successfully - waiting for response...', 'INFO');
- updateStatsStatus('waiting', 'Waiting for response...');
+ // Query top_uploaders view
+ const uploadersData = await sendAdminCommandHTTP(['query_view', 'top_uploaders']);
+ handleViewQueryResponse('top_uploaders', uploadersData);
+
+ log('All view queries completed successfully', 'INFO');
+ updateStatsStatus('loaded');
} catch (error) {
- log(`Failed to send stats query: ${error.message}`, 'ERROR');
+ log(`Failed to send view queries: ${error.message}`, 'ERROR');
updateStatsStatus('error', error.message);
}
}
-// Handle stats_query response and populate tables
+// Handle query_view response and populate appropriate table
+function handleViewQueryResponse(viewName, responseData) {
+ try {
+ console.log(`Processing view query response: ${viewName}`, responseData);
+
+ if (responseData.query_type !== 'query_view') {
+ log('Ignoring non-view-query response', 'WARNING');
+ return;
+ }
+
+ if (responseData.status !== 'success') {
+ log(`View query failed: ${responseData.error || 'Unknown error'}`, 'ERROR');
+ return;
+ }
+
+ // Route to appropriate handler based on view name
+ switch (viewName) {
+ case 'blob_overview':
+ if (responseData.data && Array.isArray(responseData.data) && responseData.data.length > 0) {
+ populateStatsOverview(responseData.data[0]);
+ }
+ break;
+ case 'blob_type_distribution':
+ if (responseData.data && Array.isArray(responseData.data)) {
+ populateStatsKinds(responseData.data);
+ }
+ break;
+ case 'blob_time_stats':
+ if (responseData.data && Array.isArray(responseData.data) && responseData.data.length > 0) {
+ populateStatsTime(responseData.data[0]);
+ }
+ break;
+ case 'top_uploaders':
+ if (responseData.data && Array.isArray(responseData.data)) {
+ populateStatsPubkeys(responseData.data);
+ }
+ break;
+ default:
+ console.log(`Unknown view name: ${viewName}`);
+ }
+
+ } catch (error) {
+ log(`Error processing ${viewName} response: ${error.message}`, 'ERROR');
+ }
+}
+
+// Legacy handler for backward compatibility
function handleStatsQueryResponse(responseData) {
try {
log('Processing stats query response...', 'INFO');
@@ -3923,20 +3928,30 @@ function handleStatsQueryResponse(responseData) {
return;
}
- // Populate overview table
- populateStatsOverview(responseData);
+ // Extract the actual data object
+ const statsData = responseData.data || responseData;
+ console.log('Extracted stats data:', statsData);
- // Populate event kinds table
- populateStatsKinds(responseData);
+ // Populate overview table with blob statistics
+ populateStatsOverview(statsData);
+
+ // Populate blob type distribution table
+ if (statsData.type_distribution && Array.isArray(statsData.type_distribution)) {
+ populateStatsKinds(statsData.type_distribution);
+ }
// Populate time-based statistics
- populateStatsTime(responseData);
+ if (statsData.blobs_24h !== undefined) {
+ populateStatsTime(statsData);
+ }
- // Populate top pubkeys table
- populateStatsPubkeys(responseData);
+ // Populate top uploaders table
+ if (statsData.top_uploaders && Array.isArray(statsData.top_uploaders)) {
+ populateStatsPubkeys(statsData.top_uploaders);
+ }
updateStatsStatus('loaded');
- log('Database statistics updated successfully', 'INFO');
+ log('Blob statistics updated successfully', 'INFO');
} catch (error) {
log(`Error processing stats response: ${error.message}`, 'ERROR');
@@ -4110,32 +4125,44 @@ function populateStatsOverview(data) {
if (!data) return;
// Update individual cells with flash animation for changed values
- updateStatsCell('db-size', data.database_size_bytes ? formatFileSize(data.database_size_bytes) : '-');
- updateStatsCell('total-events', data.total_events || '-');
- updateStatsCell('oldest-event', data.database_created_at ? formatTimestamp(data.database_created_at) : '-');
- updateStatsCell('newest-event', data.latest_event_at ? formatTimestamp(data.latest_event_at) : '-');
+ // Backend sends: total_bytes, total_blobs, first_upload, last_upload
+ updateStatsCell('db-size', data.total_bytes ? formatFileSize(data.total_bytes) : '-');
+ updateStatsCell('total-size', data.total_bytes ? formatFileSize(data.total_bytes) : '-');
+ updateStatsCell('total-events', data.total_blobs || '-');
+ updateStatsCell('oldest-event', data.first_upload ? formatTimestamp(data.first_upload) : '-');
+ updateStatsCell('newest-event', data.last_upload ? formatTimestamp(data.last_upload) : '-');
}
// Populate event kinds distribution table
function populateStatsKinds(data) {
const tableBody = document.getElementById('stats-kinds-table-body');
- if (!tableBody || !data.event_kinds) return;
+ if (!tableBody) return;
tableBody.innerHTML = '';
- if (data.event_kinds.length === 0) {
+ // Handle both old format (data.event_kinds) and new format (direct array from query_view)
+ const kindsData = data.event_kinds || data;
+
+ if (!Array.isArray(kindsData) || kindsData.length === 0) {
const row = document.createElement('tr');
- row.innerHTML = 'No event data | ';
+ row.innerHTML = 'No blob type data | ';
tableBody.appendChild(row);
return;
}
- data.event_kinds.forEach(kind => {
+ // Calculate total for percentages if not provided
+ const total = kindsData.reduce((sum, item) => sum + (item.blob_count || item.count || 0), 0);
+
+ kindsData.forEach(item => {
const row = document.createElement('tr');
+ const mimeType = item.mime_type || item.kind || '-';
+ const count = item.blob_count || item.count || 0;
+ const percentage = item.percentage || (total > 0 ? ((count / total) * 100).toFixed(1) : 0);
+
row.innerHTML = `
- ${kind.kind} |
- ${kind.count} |
- ${kind.percentage}% |
+ ${mimeType} |
+ ${count} |
+ ${percentage}% |
`;
tableBody.appendChild(row);
});
@@ -4145,48 +4172,59 @@ function populateStatsKinds(data) {
function populateStatsTime(data) {
if (!data) return;
- // Access the nested time_stats object from backend response
- const timeStats = data.time_stats || {};
-
// Update cells with flash animation for changed values
- updateStatsCell('events-24h', timeStats.last_24h || '0');
- updateStatsCell('events-7d', timeStats.last_7d || '0');
- updateStatsCell('events-30d', timeStats.last_30d || '0');
+ updateStatsCell('events-24h', data.blobs_24h || '0');
+ updateStatsCell('events-7d', data.blobs_7d || '0');
+ updateStatsCell('events-30d', data.blobs_30d || '0');
}
// Populate top pubkeys table
function populateStatsPubkeys(data) {
const tableBody = document.getElementById('stats-pubkeys-table-body');
- if (!tableBody || !data.top_pubkeys) return;
+ if (!tableBody) return;
tableBody.innerHTML = '';
- if (data.top_pubkeys.length === 0) {
+ // Handle both old format (data.top_pubkeys) and new format (direct array from query_view)
+ const pubkeysData = data.top_pubkeys || data;
+
+ if (!Array.isArray(pubkeysData) || pubkeysData.length === 0) {
const row = document.createElement('tr');
- row.innerHTML = 'No pubkey data | ';
+ row.innerHTML = 'No uploader data | ';
tableBody.appendChild(row);
return;
}
- data.top_pubkeys.forEach((pubkey, index) => {
+ // Calculate total for percentages if not provided
+ const total = pubkeysData.reduce((sum, item) => sum + (item.blob_count || 0), 0);
+
+ pubkeysData.forEach((item, index) => {
const row = document.createElement('tr');
+ // Handle both uploader_pubkey (new) and pubkey (old) field names
+ const pubkeyValue = item.uploader_pubkey || item.pubkey || '-';
+ const count = item.blob_count || 0;
+ const totalBytes = item.total_bytes || 0;
+ const percentage = item.percentage || (total > 0 ? ((count / total) * 100).toFixed(1) : 0);
+
// Convert hex pubkey to npub for display
- let displayPubkey = pubkey.pubkey || '-';
+ let displayPubkey = pubkeyValue;
let npubLink = displayPubkey;
try {
- if (pubkey.pubkey && pubkey.pubkey.length === 64 && /^[0-9a-fA-F]+$/.test(pubkey.pubkey)) {
- const npub = window.NostrTools.nip19.npubEncode(pubkey.pubkey);
+ if (pubkeyValue && pubkeyValue.length === 64 && /^[0-9a-fA-F]+$/.test(pubkeyValue)) {
+ const npub = window.NostrTools.nip19.npubEncode(pubkeyValue);
displayPubkey = npub;
npubLink = `${npub}`;
}
} catch (error) {
console.log('Failed to encode pubkey to npub:', error.message);
}
+
row.innerHTML = `
${index + 1} |
${npubLink} |
- ${pubkey.event_count} |
- ${pubkey.percentage}% |
+ ${count} |
+ ${formatFileSize(totalBytes)} |
+ ${percentage}% |
`;
tableBody.appendChild(row);
});
@@ -4467,15 +4505,68 @@ function updateStatsCell(cellId, newValue) {
}
}
-// Start auto-refreshing database statistics every 10 seconds
+// Start polling for statistics (every 10 seconds)
+function startStatsPolling() {
+ console.log('=== STARTING STATISTICS POLLING ===');
+ console.log('Current page:', currentPage);
+ console.log('Is logged in:', isLoggedIn);
+ console.log('User pubkey:', userPubkey);
+ console.log('Relay pubkey:', relayPubkey);
+
+ // Stop any existing polling first
+ stopStatsPolling();
+
+ // Fetch immediately
+ console.log('Fetching statistics immediately...');
+ sendStatsQuery().catch(error => {
+ console.error('Initial stats fetch failed:', error);
+ });
+
+ // Set up polling interval (10 seconds)
+ console.log('Setting up 10-second polling interval...');
+ statsAutoRefreshInterval = setInterval(() => {
+ console.log('⏰ Polling interval triggered - fetching statistics...');
+ sendStatsQuery().catch(error => {
+ console.error('Polling stats fetch failed:', error);
+ });
+ }, 10000);
+
+ console.log('Statistics polling started successfully');
+ console.log('Interval ID:', statsAutoRefreshInterval);
+ log('Statistics polling started (10 second interval)', 'INFO');
+}
+
+// Stop polling for statistics
+function stopStatsPolling() {
+ if (statsAutoRefreshInterval) {
+ clearInterval(statsAutoRefreshInterval);
+ statsAutoRefreshInterval = null;
+ log('Statistics polling stopped', 'INFO');
+ }
+
+ if (countdownInterval) {
+ clearInterval(countdownInterval);
+ countdownInterval = null;
+ }
+
+ // Reset countdown display
+ updateCountdownDisplay();
+}
+
+// Legacy function - kept for backward compatibility
function startStatsAutoRefresh() {
// DISABLED - Using real-time monitoring events instead of polling
// This function is kept for backward compatibility but no longer starts auto-refresh
log('Database statistics auto-refresh DISABLED - using real-time monitoring events', 'INFO');
}
-// Stop auto-refreshing database statistics
+// Legacy function - kept for backward compatibility
function stopStatsAutoRefresh() {
+ stopStatsPolling();
+}
+
+// Original stopStatsAutoRefresh implementation (now unused)
+function stopStatsAutoRefresh_ORIGINAL() {
if (statsAutoRefreshInterval) {
clearInterval(statsAutoRefreshInterval);
statsAutoRefreshInterval = null;
@@ -4659,6 +4750,11 @@ function closeSideNav() {
}
function switchPage(pageName) {
+ // Stop statistics polling if leaving statistics page
+ if (currentPage === 'statistics' && pageName !== 'statistics') {
+ stopStatsPolling();
+ }
+
// Update current page
currentPage = pageName;
@@ -4728,7 +4824,7 @@ function switchPage(pageName) {
// Initialize the app
document.addEventListener('DOMContentLoaded', () => {
- console.log('C-Relay Admin API interface loaded');
+ console.log('Blossom Admin API interface loaded');
// Initialize dark mode
initializeDarkMode();
diff --git a/build/admin_event.o b/build/admin_event.o
index f699305..c21d40c 100644
Binary files a/build/admin_event.o and b/build/admin_event.o differ
diff --git a/build/admin_interface.o b/build/admin_interface.o
index f554ac3..767db40 100644
Binary files a/build/admin_interface.o and b/build/admin_interface.o differ
diff --git a/build/ginxsom-fcgi b/build/ginxsom-fcgi
index 6b21062..5f1652d 100755
Binary files a/build/ginxsom-fcgi and b/build/ginxsom-fcgi differ
diff --git a/build/main.o b/build/main.o
index 1cc5e65..dab2e3a 100644
Binary files a/build/main.o and b/build/main.o differ
diff --git a/db/52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a.db b/db/52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a.db
index e3e7442..0386a66 100644
Binary files a/db/52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a.db and b/db/52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a.db differ
diff --git a/debug.log b/debug.log
index 04648b6..b544d4a 100644
--- a/debug.log
+++ b/debug.log
@@ -18865,3 +18865,12246 @@
[13:12:27.291] RECV relay.laantungir.net:443: ["OK", "8f4ff89575cf0b49d3db5800e2b001fd5ae08030e6332648515350381017899b", true, ""]
[13:12:27.350] RECV relay.laantungir.net:443: ["OK", "0146f87c0d7b2d536b3d470fa539fac96560ec7c2e0a8fc8021bae4368a87ff7", true, ""]
[13:12:27.350] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765559547"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[13:14:41.131] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765559680", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[13:14:41.131] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765559680"]
+[13:14:42.132] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "8f4ff89575cf0b49d3db5800e2b001fd5ae08030e6332648515350381017899b",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765559547,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "97fe38133dd0a02773ca421f9f0172657e69c064bebf0de29aa49736aad30dcfcf60bf77608319674c21ba4260a2921fc9b7d9347d90e977533e929f5515e476",
+ "tags": []
+ }]
+[13:14:42.133] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765559682,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "3885ed29147305eb96aaf437ec23877978b8f395c8016019eb21d09a2fc65ff2",
+ "sig": "5ef32fe15637be35b1bc8089e638ff1416c39a2a1444f611d80a7b77a4462cc4a84e17030debe8f75c379ef7455a036e46191e1d14bb305051fee5ac4b100077"
+ }]
+[13:14:42.134] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765559682,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "0940b6094099f2f2173ee88462cf91447356ee9518f8433fec62fabc021ffabe",
+ "sig": "d97683185a319fcfbbbcf3558853a3bc6d4a725c183df1b7e5c95ceb76bed7ec2b6409e962685be96f2f0e5682dad6c590ab21cc4aba845fe7ac796c612bd836"
+ }]
+[13:14:42.134] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765559682", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765559682
+ }]
+[13:14:42.134] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[13:14:42.134] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[13:14:42.134] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[13:14:42.134] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[13:14:42.134] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[13:14:42.134] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[13:14:42.134] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[13:14:42.134] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[13:14:42.134] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[13:14:42.134] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[13:14:42.134] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[13:14:42.134] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[13:14:42.134] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[13:14:42.134] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[13:14:42.134] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "19592ed4feec02b033ce6418a5f6811b23aca60875b1739d7b20284e0184905a",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765315836,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0\",\"display_name\":\"defaultuser0\",\"npub\":null,\"picture\":\"https://image.nostr.build/52ec77a3dcd9b40f7567d7a10c89ebfcb208a8f670fb35dccdcbe1fe91c411c9.jpg\",\"banner\":\"https://image.nostr.build/927a3bdff311aaf41486a8a81c480d6960b4d4e43083562f4c378248d75f74aa.jpg\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"Let’s learn together | I know stuff and do things, sometimes : be the better problem : #cats #bitcoin #cypherpunk #cypheranarchism #caturday #sarcasm #satire #memes #humor #stem #science #physics #astronomy #space #literature #books #poetry #art #artist #photography #graphics #design #3dprint #media #news #entertainment #southpark #tmnt #futurama #xfiles #horror #reading #writing #music #vinyl #retro #analog #vintage #lego #mtg #gaming #pc #xbox #nintendo #playstation #ai #ml #tech #foss #infosec #cybersec #opensource #python #privacy #security \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"ctrlxcvz@getalby.com\",\"deleted\":null}",
+ "sig": "0089fad7ea6e98e547bda22d50d1c07a52c02418f7cae0099d2798e9c7d6f89df4333367eab59cb4b408e8aa1b58a4d3a25797133ab5aedef647c6210bb2fb2e",
+ "tags": [["alt", "User profile for defaultuser0"], ["name", "defaultuser0"], ["display_name", "defaultuser0"], ["picture", "https://image.nostr.build/52ec77a3dcd9b40f7567d7a10c89ebfcb208a8f670fb35dccdcbe1fe91c411c9.jpg"], ["banner", "https://image.nostr.build/927a3bdff311aaf41486a8a81c480d6960b4d4e43083562f4c378248d75f74aa.jpg"], ["website", "https://github.com/ctrlxcvz"], ["about", "Let’s learn together | I know stuff and do things, sometimes : be the better problem : #cats #bitcoin #cypherpunk #cypheranarchism #caturday #sarcasm #satire #memes #humor #stem #science #physics #astronomy #space #literature #books #poetry #art #artist #photography #graphics #design #3dprint #media #news #entertainment #southpark #tmnt #futurama #xfiles #horror #reading #writing #music #vinyl #retro #analog #vintage #lego #mtg #gaming #pc #xbox #nintendo #playstation #ai #ml #tech #foss #infosec #cybersec #opensource #python #privacy #security \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "ctrlxcvz@getalby.com"]]
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[13:14:42.135] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[13:14:42.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[13:14:42.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[13:14:42.195] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[13:14:42.195] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[13:14:42.195] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[13:14:42.195] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765559680", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[13:14:42.195] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765559680"]
+[13:14:42.202] RECV relay.laantungir.net:443: ["OK", "3885ed29147305eb96aaf437ec23877978b8f395c8016019eb21d09a2fc65ff2", true, ""]
+[13:14:42.266] RECV relay.laantungir.net:443: ["OK", "0940b6094099f2f2173ee88462cf91447356ee9518f8433fec62fabc021ffabe", true, ""]
+[13:14:42.266] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765559682"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[13:25:50.873] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765560350", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[13:25:50.873] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765560350"]
+[13:25:51.874] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "3885ed29147305eb96aaf437ec23877978b8f395c8016019eb21d09a2fc65ff2",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765559682,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "5ef32fe15637be35b1bc8089e638ff1416c39a2a1444f611d80a7b77a4462cc4a84e17030debe8f75c379ef7455a036e46191e1d14bb305051fee5ac4b100077",
+ "tags": []
+ }]
+[13:25:51.875] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765560351,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "ddbbd5c6fd7c5f84b176e784911f2e9912c73599ec206f84b333f903454f8d04",
+ "sig": "b3b82842268e64cfb5959845fa0d8a464d570bb87a609479114a30d78ac48f138d03d4c65f726fd54311d3530163631be4e0c24716d32e551a1939a73dc200c6"
+ }]
+[13:25:51.875] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765560351,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "39a6f2f0a115586962cffec0f6f31f83241867f9a48be940bd1b25337b9196d9",
+ "sig": "eb8a4995b3d23017fac7e51034f6c25dabbe99e0db7ba1e059ea6fab8194c3804d297dc1ef206af52af7f20da25a3a818ad955c2263efab6a18e98b7d4a4b587"
+ }]
+[13:25:51.876] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765560351", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765560351
+ }]
+[13:25:51.876] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[13:25:51.876] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[13:25:51.876] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[13:25:51.876] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[13:25:51.876] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[13:25:51.876] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[13:25:51.876] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[13:25:51.876] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[13:25:51.876] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[13:25:51.876] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[13:25:51.876] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[13:25:51.876] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[13:25:51.876] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[13:25:51.876] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[13:25:51.876] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[13:25:51.876] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "19592ed4feec02b033ce6418a5f6811b23aca60875b1739d7b20284e0184905a",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765315836,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0\",\"display_name\":\"defaultuser0\",\"npub\":null,\"picture\":\"https://image.nostr.build/52ec77a3dcd9b40f7567d7a10c89ebfcb208a8f670fb35dccdcbe1fe91c411c9.jpg\",\"banner\":\"https://image.nostr.build/927a3bdff311aaf41486a8a81c480d6960b4d4e43083562f4c378248d75f74aa.jpg\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"Let’s learn together | I know stuff and do things, sometimes : be the better problem : #cats #bitcoin #cypherpunk #cypheranarchism #caturday #sarcasm #satire #memes #humor #stem #science #physics #astronomy #space #literature #books #poetry #art #artist #photography #graphics #design #3dprint #media #news #entertainment #southpark #tmnt #futurama #xfiles #horror #reading #writing #music #vinyl #retro #analog #vintage #lego #mtg #gaming #pc #xbox #nintendo #playstation #ai #ml #tech #foss #infosec #cybersec #opensource #python #privacy #security \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"ctrlxcvz@getalby.com\",\"deleted\":null}",
+ "sig": "0089fad7ea6e98e547bda22d50d1c07a52c02418f7cae0099d2798e9c7d6f89df4333367eab59cb4b408e8aa1b58a4d3a25797133ab5aedef647c6210bb2fb2e",
+ "tags": [["alt", "User profile for defaultuser0"], ["name", "defaultuser0"], ["display_name", "defaultuser0"], ["picture", "https://image.nostr.build/52ec77a3dcd9b40f7567d7a10c89ebfcb208a8f670fb35dccdcbe1fe91c411c9.jpg"], ["banner", "https://image.nostr.build/927a3bdff311aaf41486a8a81c480d6960b4d4e43083562f4c378248d75f74aa.jpg"], ["website", "https://github.com/ctrlxcvz"], ["about", "Let’s learn together | I know stuff and do things, sometimes : be the better problem : #cats #bitcoin #cypherpunk #cypheranarchism #caturday #sarcasm #satire #memes #humor #stem #science #physics #astronomy #space #literature #books #poetry #art #artist #photography #graphics #design #3dprint #media #news #entertainment #southpark #tmnt #futurama #xfiles #horror #reading #writing #music #vinyl #retro #analog #vintage #lego #mtg #gaming #pc #xbox #nintendo #playstation #ai #ml #tech #foss #infosec #cybersec #opensource #python #privacy #security \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "ctrlxcvz@getalby.com"]]
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[13:25:51.877] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[13:25:51.878] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[13:25:51.878] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[13:25:51.878] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[13:25:51.878] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[13:25:51.878] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[13:25:51.878] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[13:25:51.878] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[13:25:51.878] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[13:25:51.878] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[13:25:51.878] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[13:25:51.878] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[13:25:51.878] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[13:25:51.878] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[13:25:51.878] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[13:25:51.878] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[13:25:51.878] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[13:25:51.878] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[13:25:51.878] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[13:25:51.937] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[13:25:51.937] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[13:25:51.938] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[13:25:51.938] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[13:25:51.938] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560350", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[13:25:51.938] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765560350"]
+[13:25:51.941] RECV relay.laantungir.net:443: ["OK", "ddbbd5c6fd7c5f84b176e784911f2e9912c73599ec206f84b333f903454f8d04", true, ""]
+[13:25:52.000] RECV relay.laantungir.net:443: ["OK", "39a6f2f0a115586962cffec0f6f31f83241867f9a48be940bd1b25337b9196d9", true, ""]
+[13:25:52.000] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765560351"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[13:27:29.402] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765560449", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[13:27:29.402] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765560449"]
+[13:27:30.403] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "ddbbd5c6fd7c5f84b176e784911f2e9912c73599ec206f84b333f903454f8d04",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765560351,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "b3b82842268e64cfb5959845fa0d8a464d570bb87a609479114a30d78ac48f138d03d4c65f726fd54311d3530163631be4e0c24716d32e551a1939a73dc200c6",
+ "tags": []
+ }]
+[13:27:30.405] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765560450,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "f0cac6ae3f77658e7a4f55e45f4b6454a0fd4d9683e2fab2cbb8a00e26cb49dd",
+ "sig": "cebde47256ec217a685e8194b317a1d9daac1b3a164ffb2162fe3f3b067afaf2956ea6b3207b45d20864ddb1bcc1fea83758468ed74e9b23d93e8a33d2f4c061"
+ }]
+[13:27:30.405] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765560450,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "3cdaab68c4e08732d30dd75cd461d7dce9438ea9763dd0fa6ccc975e4411f24b",
+ "sig": "1dd9db212297f0f3107eb8a6ac4383abe51e1ffb967ecf68d685478cbd80261afbfdd584f739ad6c5b83c169aa79f35d7fbf2bfac585c05da6959e8079e378ba"
+ }]
+[13:27:30.405] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765560450", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765560450
+ }]
+[13:27:30.405] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[13:27:30.405] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[13:27:30.405] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[13:27:30.406] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "19592ed4feec02b033ce6418a5f6811b23aca60875b1739d7b20284e0184905a",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765315836,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0\",\"display_name\":\"defaultuser0\",\"npub\":null,\"picture\":\"https://image.nostr.build/52ec77a3dcd9b40f7567d7a10c89ebfcb208a8f670fb35dccdcbe1fe91c411c9.jpg\",\"banner\":\"https://image.nostr.build/927a3bdff311aaf41486a8a81c480d6960b4d4e43083562f4c378248d75f74aa.jpg\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"Let’s learn together | I know stuff and do things, sometimes : be the better problem : #cats #bitcoin #cypherpunk #cypheranarchism #caturday #sarcasm #satire #memes #humor #stem #science #physics #astronomy #space #literature #books #poetry #art #artist #photography #graphics #design #3dprint #media #news #entertainment #southpark #tmnt #futurama #xfiles #horror #reading #writing #music #vinyl #retro #analog #vintage #lego #mtg #gaming #pc #xbox #nintendo #playstation #ai #ml #tech #foss #infosec #cybersec #opensource #python #privacy #security \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"ctrlxcvz@getalby.com\",\"deleted\":null}",
+ "sig": "0089fad7ea6e98e547bda22d50d1c07a52c02418f7cae0099d2798e9c7d6f89df4333367eab59cb4b408e8aa1b58a4d3a25797133ab5aedef647c6210bb2fb2e",
+ "tags": [["alt", "User profile for defaultuser0"], ["name", "defaultuser0"], ["display_name", "defaultuser0"], ["picture", "https://image.nostr.build/52ec77a3dcd9b40f7567d7a10c89ebfcb208a8f670fb35dccdcbe1fe91c411c9.jpg"], ["banner", "https://image.nostr.build/927a3bdff311aaf41486a8a81c480d6960b4d4e43083562f4c378248d75f74aa.jpg"], ["website", "https://github.com/ctrlxcvz"], ["about", "Let’s learn together | I know stuff and do things, sometimes : be the better problem : #cats #bitcoin #cypherpunk #cypheranarchism #caturday #sarcasm #satire #memes #humor #stem #science #physics #astronomy #space #literature #books #poetry #art #artist #photography #graphics #design #3dprint #media #news #entertainment #southpark #tmnt #futurama #xfiles #horror #reading #writing #music #vinyl #retro #analog #vintage #lego #mtg #gaming #pc #xbox #nintendo #playstation #ai #ml #tech #foss #infosec #cybersec #opensource #python #privacy #security \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "ctrlxcvz@getalby.com"]]
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[13:27:30.407] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[13:27:30.408] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[13:27:30.408] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[13:27:30.408] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[13:27:30.408] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[13:27:30.408] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[13:27:30.408] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[13:27:30.408] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[13:27:30.408] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[13:27:30.467] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[13:27:30.467] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[13:27:30.467] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[13:27:30.467] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[13:27:30.467] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560449", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[13:27:30.467] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765560449"]
+[13:27:30.476] RECV relay.laantungir.net:443: ["OK", "f0cac6ae3f77658e7a4f55e45f4b6454a0fd4d9683e2fab2cbb8a00e26cb49dd", true, ""]
+[13:27:30.531] RECV relay.laantungir.net:443: ["OK", "3cdaab68c4e08732d30dd75cd461d7dce9438ea9763dd0fa6ccc975e4411f24b", true, ""]
+[13:27:30.531] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765560450"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[13:33:04.923] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765560784", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[13:33:04.923] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765560784"]
+[13:33:05.924] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "f0cac6ae3f77658e7a4f55e45f4b6454a0fd4d9683e2fab2cbb8a00e26cb49dd",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765560450,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "cebde47256ec217a685e8194b317a1d9daac1b3a164ffb2162fe3f3b067afaf2956ea6b3207b45d20864ddb1bcc1fea83758468ed74e9b23d93e8a33d2f4c061",
+ "tags": []
+ }]
+[13:33:05.926] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765560785,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "170f84a214c685c8d61eb6320ecc1484d3359df03ffaa19461fcb9c8fecdedb1",
+ "sig": "ff260158c90accdd6055eae2cc55d4f2e59cfe333ece0896513f6ffdfa3233390f992475a96088f88a71d58b7930ab8b0145a1f55c34e8ca05d033daf3f1f760"
+ }]
+[13:33:05.926] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765560785,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "124dc6801db1f408b991d4df4d599d198fe74367d35540cad25f64bea16d6ac8",
+ "sig": "12f9b5513efcb5134b9738099ef8e5c093cc11f80d2cc22f9fa4b486331fcd73f0e4d508347829263a2ad6ae6909c1821a7d70d7d9fd848e488d54e59978c365"
+ }]
+[13:33:05.926] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765560785", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765560785
+ }]
+[13:33:05.926] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[13:33:05.927] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "19592ed4feec02b033ce6418a5f6811b23aca60875b1739d7b20284e0184905a",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765315836,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0\",\"display_name\":\"defaultuser0\",\"npub\":null,\"picture\":\"https://image.nostr.build/52ec77a3dcd9b40f7567d7a10c89ebfcb208a8f670fb35dccdcbe1fe91c411c9.jpg\",\"banner\":\"https://image.nostr.build/927a3bdff311aaf41486a8a81c480d6960b4d4e43083562f4c378248d75f74aa.jpg\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"Let’s learn together | I know stuff and do things, sometimes : be the better problem : #cats #bitcoin #cypherpunk #cypheranarchism #caturday #sarcasm #satire #memes #humor #stem #science #physics #astronomy #space #literature #books #poetry #art #artist #photography #graphics #design #3dprint #media #news #entertainment #southpark #tmnt #futurama #xfiles #horror #reading #writing #music #vinyl #retro #analog #vintage #lego #mtg #gaming #pc #xbox #nintendo #playstation #ai #ml #tech #foss #infosec #cybersec #opensource #python #privacy #security \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"ctrlxcvz@getalby.com\",\"deleted\":null}",
+ "sig": "0089fad7ea6e98e547bda22d50d1c07a52c02418f7cae0099d2798e9c7d6f89df4333367eab59cb4b408e8aa1b58a4d3a25797133ab5aedef647c6210bb2fb2e",
+ "tags": [["alt", "User profile for defaultuser0"], ["name", "defaultuser0"], ["display_name", "defaultuser0"], ["picture", "https://image.nostr.build/52ec77a3dcd9b40f7567d7a10c89ebfcb208a8f670fb35dccdcbe1fe91c411c9.jpg"], ["banner", "https://image.nostr.build/927a3bdff311aaf41486a8a81c480d6960b4d4e43083562f4c378248d75f74aa.jpg"], ["website", "https://github.com/ctrlxcvz"], ["about", "Let’s learn together | I know stuff and do things, sometimes : be the better problem : #cats #bitcoin #cypherpunk #cypheranarchism #caturday #sarcasm #satire #memes #humor #stem #science #physics #astronomy #space #literature #books #poetry #art #artist #photography #graphics #design #3dprint #media #news #entertainment #southpark #tmnt #futurama #xfiles #horror #reading #writing #music #vinyl #retro #analog #vintage #lego #mtg #gaming #pc #xbox #nintendo #playstation #ai #ml #tech #foss #infosec #cybersec #opensource #python #privacy #security \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "ctrlxcvz@getalby.com"]]
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[13:33:05.928] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[13:33:05.929] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[13:33:05.929] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[13:33:05.929] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[13:33:05.929] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[13:33:05.929] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[13:33:05.929] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[13:33:05.929] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[13:33:05.929] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[13:33:05.929] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[13:33:05.929] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[13:33:05.987] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[13:33:05.988] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[13:33:05.988] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[13:33:05.988] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[13:33:05.988] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[13:33:05.988] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765560784", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[13:33:05.988] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765560784"]
+[13:33:05.992] RECV relay.laantungir.net:443: ["OK", "170f84a214c685c8d61eb6320ecc1484d3359df03ffaa19461fcb9c8fecdedb1", true, ""]
+[13:33:06.051] RECV relay.laantungir.net:443: ["OK", "124dc6801db1f408b991d4df4d599d198fe74367d35540cad25f64bea16d6ac8", true, ""]
+[13:33:06.051] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765560785"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[13:46:20.699] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765561580", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[13:46:20.700] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765561580"]
+[13:46:21.700] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "170f84a214c685c8d61eb6320ecc1484d3359df03ffaa19461fcb9c8fecdedb1",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765560785,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "ff260158c90accdd6055eae2cc55d4f2e59cfe333ece0896513f6ffdfa3233390f992475a96088f88a71d58b7930ab8b0145a1f55c34e8ca05d033daf3f1f760",
+ "tags": []
+ }]
+[13:46:21.702] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765561581,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "308ab0c7767839ad4f4f0aaffa14b1d0074fcaf538e8b90a8bb525a2da29dee3",
+ "sig": "62c1d237a59193ec013a49984ebee0b507697e0abd09e90a2954d5de2596f85cb5f26cacfa4cacc48ad01f715de22f229608432c6f204c138984666d87bb6868"
+ }]
+[13:46:21.703] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765561581,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "b9a8c09ff284938a92e9739d0d5b4cc2431639d61998c89d14ab01a20a329b25",
+ "sig": "f566ba2a5db93e7336f8b7475067a13c7c952e227bc85a6269088e46b95c35f705a4885a3c59c21948be41847e04ddfaadd2790200b057f3f42533deee291090"
+ }]
+[13:46:21.703] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765561581", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765561581
+ }]
+[13:46:21.703] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[13:46:21.703] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[13:46:21.703] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[13:46:21.703] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[13:46:21.703] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[13:46:21.703] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[13:46:21.703] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[13:46:21.703] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[13:46:21.703] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[13:46:21.703] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[13:46:21.703] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[13:46:21.703] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[13:46:21.703] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[13:46:21.703] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[13:46:21.703] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "19592ed4feec02b033ce6418a5f6811b23aca60875b1739d7b20284e0184905a",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765315836,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0\",\"display_name\":\"defaultuser0\",\"npub\":null,\"picture\":\"https://image.nostr.build/52ec77a3dcd9b40f7567d7a10c89ebfcb208a8f670fb35dccdcbe1fe91c411c9.jpg\",\"banner\":\"https://image.nostr.build/927a3bdff311aaf41486a8a81c480d6960b4d4e43083562f4c378248d75f74aa.jpg\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"Let’s learn together | I know stuff and do things, sometimes : be the better problem : #cats #bitcoin #cypherpunk #cypheranarchism #caturday #sarcasm #satire #memes #humor #stem #science #physics #astronomy #space #literature #books #poetry #art #artist #photography #graphics #design #3dprint #media #news #entertainment #southpark #tmnt #futurama #xfiles #horror #reading #writing #music #vinyl #retro #analog #vintage #lego #mtg #gaming #pc #xbox #nintendo #playstation #ai #ml #tech #foss #infosec #cybersec #opensource #python #privacy #security \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"ctrlxcvz@getalby.com\",\"deleted\":null}",
+ "sig": "0089fad7ea6e98e547bda22d50d1c07a52c02418f7cae0099d2798e9c7d6f89df4333367eab59cb4b408e8aa1b58a4d3a25797133ab5aedef647c6210bb2fb2e",
+ "tags": [["alt", "User profile for defaultuser0"], ["name", "defaultuser0"], ["display_name", "defaultuser0"], ["picture", "https://image.nostr.build/52ec77a3dcd9b40f7567d7a10c89ebfcb208a8f670fb35dccdcbe1fe91c411c9.jpg"], ["banner", "https://image.nostr.build/927a3bdff311aaf41486a8a81c480d6960b4d4e43083562f4c378248d75f74aa.jpg"], ["website", "https://github.com/ctrlxcvz"], ["about", "Let’s learn together | I know stuff and do things, sometimes : be the better problem : #cats #bitcoin #cypherpunk #cypheranarchism #caturday #sarcasm #satire #memes #humor #stem #science #physics #astronomy #space #literature #books #poetry #art #artist #photography #graphics #design #3dprint #media #news #entertainment #southpark #tmnt #futurama #xfiles #horror #reading #writing #music #vinyl #retro #analog #vintage #lego #mtg #gaming #pc #xbox #nintendo #playstation #ai #ml #tech #foss #infosec #cybersec #opensource #python #privacy #security \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "ctrlxcvz@getalby.com"]]
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[13:46:21.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[13:46:21.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[13:46:21.764] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[13:46:21.764] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[13:46:21.764] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[13:46:21.764] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561580", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[13:46:21.764] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765561580"]
+[13:46:21.765] RECV relay.laantungir.net:443: ["OK", "308ab0c7767839ad4f4f0aaffa14b1d0074fcaf538e8b90a8bb525a2da29dee3", true, ""]
+[13:46:21.826] RECV relay.laantungir.net:443: ["OK", "b9a8c09ff284938a92e9739d0d5b4cc2431639d61998c89d14ab01a20a329b25", true, ""]
+[13:46:21.826] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765561581"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[13:50:19.821] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765561819", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[13:50:19.821] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765561819"]
+[13:50:20.822] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "308ab0c7767839ad4f4f0aaffa14b1d0074fcaf538e8b90a8bb525a2da29dee3",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765561581,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "62c1d237a59193ec013a49984ebee0b507697e0abd09e90a2954d5de2596f85cb5f26cacfa4cacc48ad01f715de22f229608432c6f204c138984666d87bb6868",
+ "tags": []
+ }]
+[13:50:20.823] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765561820,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "c4f018353dba555ff4b776bb100325fb5c58feabcde6fa6863277ac3ba92753a",
+ "sig": "5036890a47f15b64663377039c27fb12897057fecd70adee8c418c9a0f11a25e6863bb3a595a235ae2580fed9ec4c4cc2e1364e658f8c62febe7ce06881c85a7"
+ }]
+[13:50:20.823] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765561820,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "d6dad45d8dcf391cfe1f6df18f196e726491db540fae7ac9df7d45147680e128",
+ "sig": "1a03e50bb3992e6175549800e7c159ee222e8d34ac780d22e5c600643cd7631419ae9d42143b739b1e8d0e6d343cc6bd55ea710f72b23ac40065046497617ace"
+ }]
+[13:50:20.824] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765561820", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765561820
+ }]
+[13:50:20.824] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[13:50:20.824] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[13:50:20.824] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[13:50:20.824] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[13:50:20.824] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[13:50:20.824] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[13:50:20.824] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[13:50:20.824] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[13:50:20.824] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[13:50:20.824] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[13:50:20.824] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[13:50:20.824] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[13:50:20.825] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[13:50:20.825] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[13:50:20.825] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[13:50:20.825] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[13:50:20.825] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[13:50:20.825] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[13:50:20.825] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[13:50:20.825] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[13:50:20.825] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[13:50:20.825] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[13:50:20.825] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[13:50:20.825] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[13:50:20.825] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[13:50:20.825] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[13:50:20.825] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[13:50:20.825] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[13:50:20.825] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[13:50:20.825] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[13:50:20.825] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "19592ed4feec02b033ce6418a5f6811b23aca60875b1739d7b20284e0184905a",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765315836,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0\",\"display_name\":\"defaultuser0\",\"npub\":null,\"picture\":\"https://image.nostr.build/52ec77a3dcd9b40f7567d7a10c89ebfcb208a8f670fb35dccdcbe1fe91c411c9.jpg\",\"banner\":\"https://image.nostr.build/927a3bdff311aaf41486a8a81c480d6960b4d4e43083562f4c378248d75f74aa.jpg\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"Let’s learn together | I know stuff and do things, sometimes : be the better problem : #cats #bitcoin #cypherpunk #cypheranarchism #caturday #sarcasm #satire #memes #humor #stem #science #physics #astronomy #space #literature #books #poetry #art #artist #photography #graphics #design #3dprint #media #news #entertainment #southpark #tmnt #futurama #xfiles #horror #reading #writing #music #vinyl #retro #analog #vintage #lego #mtg #gaming #pc #xbox #nintendo #playstation #ai #ml #tech #foss #infosec #cybersec #opensource #python #privacy #security \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"ctrlxcvz@getalby.com\",\"deleted\":null}",
+ "sig": "0089fad7ea6e98e547bda22d50d1c07a52c02418f7cae0099d2798e9c7d6f89df4333367eab59cb4b408e8aa1b58a4d3a25797133ab5aedef647c6210bb2fb2e",
+ "tags": [["alt", "User profile for defaultuser0"], ["name", "defaultuser0"], ["display_name", "defaultuser0"], ["picture", "https://image.nostr.build/52ec77a3dcd9b40f7567d7a10c89ebfcb208a8f670fb35dccdcbe1fe91c411c9.jpg"], ["banner", "https://image.nostr.build/927a3bdff311aaf41486a8a81c480d6960b4d4e43083562f4c378248d75f74aa.jpg"], ["website", "https://github.com/ctrlxcvz"], ["about", "Let’s learn together | I know stuff and do things, sometimes : be the better problem : #cats #bitcoin #cypherpunk #cypheranarchism #caturday #sarcasm #satire #memes #humor #stem #science #physics #astronomy #space #literature #books #poetry #art #artist #photography #graphics #design #3dprint #media #news #entertainment #southpark #tmnt #futurama #xfiles #horror #reading #writing #music #vinyl #retro #analog #vintage #lego #mtg #gaming #pc #xbox #nintendo #playstation #ai #ml #tech #foss #infosec #cybersec #opensource #python #privacy #security \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "ctrlxcvz@getalby.com"]]
+ }]
+[13:50:20.826] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[13:50:20.826] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[13:50:20.826] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[13:50:20.826] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[13:50:20.826] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[13:50:20.826] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[13:50:20.826] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[13:50:20.826] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[13:50:20.826] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[13:50:20.826] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[13:50:20.826] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[13:50:20.826] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[13:50:20.826] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[13:50:20.827] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[13:50:20.827] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[13:50:20.827] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[13:50:20.827] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[13:50:20.827] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[13:50:20.827] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[13:50:20.827] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[13:50:20.827] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[13:50:20.827] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[13:50:20.827] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[13:50:20.827] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[13:50:20.827] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[13:50:20.828] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[13:50:20.885] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[13:50:20.885] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[13:50:20.885] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561819", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[13:50:20.885] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765561819"]
+[13:50:20.889] RECV relay.laantungir.net:443: ["OK", "c4f018353dba555ff4b776bb100325fb5c58feabcde6fa6863277ac3ba92753a", true, ""]
+[13:50:20.950] RECV relay.laantungir.net:443: ["OK", "d6dad45d8dcf391cfe1f6df18f196e726491db540fae7ac9df7d45147680e128", true, ""]
+[13:50:20.950] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765561820"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[13:52:35.653] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765561955", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[13:52:35.653] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765561955"]
+[13:52:36.654] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "c4f018353dba555ff4b776bb100325fb5c58feabcde6fa6863277ac3ba92753a",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765561820,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "5036890a47f15b64663377039c27fb12897057fecd70adee8c418c9a0f11a25e6863bb3a595a235ae2580fed9ec4c4cc2e1364e658f8c62febe7ce06881c85a7",
+ "tags": []
+ }]
+[13:52:36.655] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765561956,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "1ef11682e49b493fe24a0e0eb86ad82dbea6c4381da669c4ef220186efae95de",
+ "sig": "12c5a3214770f91e112a6e8b68abab5b80f48ba8e650d3c3850f7b2d4fb46f5ee9d65a87ca1dd99336809c4dbb85d17d9ce1ee27a61a1793d64cc055396ab59f"
+ }]
+[13:52:36.656] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765561956,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "fb426548ef1ed676e7378471031d5a5f15a31dd69b367d5b0c3a674ef7f1e1da",
+ "sig": "b9b2d6371fd9c6e5954d841e51f60d59f1e3076491fa59535d6839c6de9d6bf403fe0d3082e1e064a720d2f72b94bc773a3b032ec5e26914d229c0012f4086ee"
+ }]
+[13:52:36.656] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765561956", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765561956
+ }]
+[13:52:36.656] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[13:52:36.656] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[13:52:36.656] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[13:52:36.656] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[13:52:36.656] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[13:52:36.656] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[13:52:36.656] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[13:52:36.657] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "19592ed4feec02b033ce6418a5f6811b23aca60875b1739d7b20284e0184905a",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765315836,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0\",\"display_name\":\"defaultuser0\",\"npub\":null,\"picture\":\"https://image.nostr.build/52ec77a3dcd9b40f7567d7a10c89ebfcb208a8f670fb35dccdcbe1fe91c411c9.jpg\",\"banner\":\"https://image.nostr.build/927a3bdff311aaf41486a8a81c480d6960b4d4e43083562f4c378248d75f74aa.jpg\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"Let’s learn together | I know stuff and do things, sometimes : be the better problem : #cats #bitcoin #cypherpunk #cypheranarchism #caturday #sarcasm #satire #memes #humor #stem #science #physics #astronomy #space #literature #books #poetry #art #artist #photography #graphics #design #3dprint #media #news #entertainment #southpark #tmnt #futurama #xfiles #horror #reading #writing #music #vinyl #retro #analog #vintage #lego #mtg #gaming #pc #xbox #nintendo #playstation #ai #ml #tech #foss #infosec #cybersec #opensource #python #privacy #security \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"ctrlxcvz@getalby.com\",\"deleted\":null}",
+ "sig": "0089fad7ea6e98e547bda22d50d1c07a52c02418f7cae0099d2798e9c7d6f89df4333367eab59cb4b408e8aa1b58a4d3a25797133ab5aedef647c6210bb2fb2e",
+ "tags": [["alt", "User profile for defaultuser0"], ["name", "defaultuser0"], ["display_name", "defaultuser0"], ["picture", "https://image.nostr.build/52ec77a3dcd9b40f7567d7a10c89ebfcb208a8f670fb35dccdcbe1fe91c411c9.jpg"], ["banner", "https://image.nostr.build/927a3bdff311aaf41486a8a81c480d6960b4d4e43083562f4c378248d75f74aa.jpg"], ["website", "https://github.com/ctrlxcvz"], ["about", "Let’s learn together | I know stuff and do things, sometimes : be the better problem : #cats #bitcoin #cypherpunk #cypheranarchism #caturday #sarcasm #satire #memes #humor #stem #science #physics #astronomy #space #literature #books #poetry #art #artist #photography #graphics #design #3dprint #media #news #entertainment #southpark #tmnt #futurama #xfiles #horror #reading #writing #music #vinyl #retro #analog #vintage #lego #mtg #gaming #pc #xbox #nintendo #playstation #ai #ml #tech #foss #infosec #cybersec #opensource #python #privacy #security \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "ctrlxcvz@getalby.com"]]
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[13:52:36.658] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[13:52:36.659] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[13:52:36.659] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[13:52:36.659] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[13:52:36.659] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[13:52:36.718] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[13:52:36.718] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[13:52:36.718] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[13:52:36.718] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[13:52:36.718] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765561955", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[13:52:36.718] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765561955"]
+[13:52:37.125] RECV relay.laantungir.net:443: ["OK", "1ef11682e49b493fe24a0e0eb86ad82dbea6c4381da669c4ef220186efae95de", true, ""]
+[13:52:37.125] RECV relay.laantungir.net:443: ["OK", "fb426548ef1ed676e7378471031d5a5f15a31dd69b367d5b0c3a674ef7f1e1da", true, ""]
+[13:52:37.125] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765561956"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[14:08:07.118] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765562886", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[14:08:07.118] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765562886"]
+[14:08:08.119] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "1dd031caa11680a715f7fca33502e2b1a97a7d39f7c7b670279814d10c2eada2",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765562246,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0 🌀\",\"display_name\":\"defaultuser0 🌀\",\"picture\":\"https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp\",\"banner\":\"https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \\n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"gallantdisk053@walletofsatoshi.com\"}",
+ "sig": "fdcefbda890eeb13ea6534230b42a50c35c3134fd1ede887e01ebe7645bebfe61a295c01f053db04959092880363c2538af9ec0582f127869f9996687becc42f",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for defaultuser0 🌀"], ["name", "defaultuser0 🌀"], ["display_name", "defaultuser0 🌀"], ["picture", "https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp"], ["banner", "https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp"], ["website", "https://github.com/ctrlxcvz"], ["about", "☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "gallantdisk053@walletofsatoshi.com"]]
+ }]
+[14:08:08.120] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765562888,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "21e5b696b3806c1daa11c9f8577cfd98704095e88b469b8062027674a1150d99",
+ "sig": "4080d661492d02fa825a134b72c87479838ae287fb272dd9a7fdcb7d9b8ea7d4df62a92f5afce3292ba73d3c9c28b87867ca3ad1dc1256a54db0bf96054b3d1d"
+ }]
+[14:08:08.121] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765562888,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "ead852c9886a0cd14dde353fdb82ef120e4914474a4585466ca89395bb8392cf",
+ "sig": "a1e162eb8a2edc5b03ee530aa45e98a60b114c7344cf098254e7815741db9fba8c4225f401782f9fe7c9a255cd08ea2697722af6ba6fb8e2e8f50011dd6bc4eb"
+ }]
+[14:08:08.121] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765562888", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765562888
+ }]
+[14:08:08.121] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "1ef11682e49b493fe24a0e0eb86ad82dbea6c4381da669c4ef220186efae95de",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765561956,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "12c5a3214770f91e112a6e8b68abab5b80f48ba8e650d3c3850f7b2d4fb46f5ee9d65a87ca1dd99336809c4dbb85d17d9ce1ee27a61a1793d64cc055396ab59f",
+ "tags": []
+ }]
+[14:08:08.121] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[14:08:08.121] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[14:08:08.122] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[14:08:08.123] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[14:08:08.123] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[14:08:08.123] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[14:08:08.123] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[14:08:08.123] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[14:08:08.123] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[14:08:08.123] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[14:08:08.123] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[14:08:08.123] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[14:08:08.123] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[14:08:08.123] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[14:08:08.123] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[14:08:08.123] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[14:08:08.123] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[14:08:08.123] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[14:08:08.123] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[14:08:08.123] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[14:08:08.123] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[14:08:08.124] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[14:08:08.124] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[14:08:08.124] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[14:08:08.124] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[14:08:08.124] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[14:08:08.124] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[14:08:08.124] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[14:08:08.124] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[14:08:08.124] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[14:08:08.124] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[14:08:08.124] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[14:08:08.124] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[14:08:08.124] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[14:08:08.182] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[14:08:08.183] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[14:08:08.183] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765562886", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[14:08:08.183] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765562886"]
+[14:08:08.187] RECV relay.laantungir.net:443: ["OK", "21e5b696b3806c1daa11c9f8577cfd98704095e88b469b8062027674a1150d99", true, ""]
+[14:08:08.244] RECV relay.laantungir.net:443: ["OK", "ead852c9886a0cd14dde353fdb82ef120e4914474a4585466ca89395bb8392cf", true, ""]
+[14:08:08.245] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765562888"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[14:16:47.205] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765563406", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[14:16:47.206] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765563406"]
+[14:16:48.206] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "21e5b696b3806c1daa11c9f8577cfd98704095e88b469b8062027674a1150d99",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765562888,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "4080d661492d02fa825a134b72c87479838ae287fb272dd9a7fdcb7d9b8ea7d4df62a92f5afce3292ba73d3c9c28b87867ca3ad1dc1256a54db0bf96054b3d1d",
+ "tags": []
+ }]
+[14:16:48.208] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765563408,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "099d9f55a80dfd7087f87c51ac7c6c47d63c8ccc0a932bf50c95be7dc5a2e263",
+ "sig": "6f92c291e6bec5c02ddeab3cf6b95757533e4422097f2eee5924d16f336ca0d8c6b84b74bd7bccafa0c754881cf33f2c19e1ae93286f1633f7eb3c1a3378354f"
+ }]
+[14:16:48.208] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765563408,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "b95cdd1b4b249e5d6f6bbc1f92d56c5907d026c148e234eda90effecfd65feab",
+ "sig": "23f41e637e094030a0450789a83ec6c4940878ee8e0528d0e47f415982df5784187e2975853d8efbb46d502bc7934275f2428caa2b87d51e70c8abc29ff10083"
+ }]
+[14:16:48.208] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765563408", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765563408
+ }]
+[14:16:48.208] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "1dd031caa11680a715f7fca33502e2b1a97a7d39f7c7b670279814d10c2eada2",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765562246,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0 🌀\",\"display_name\":\"defaultuser0 🌀\",\"picture\":\"https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp\",\"banner\":\"https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \\n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"gallantdisk053@walletofsatoshi.com\"}",
+ "sig": "fdcefbda890eeb13ea6534230b42a50c35c3134fd1ede887e01ebe7645bebfe61a295c01f053db04959092880363c2538af9ec0582f127869f9996687becc42f",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for defaultuser0 🌀"], ["name", "defaultuser0 🌀"], ["display_name", "defaultuser0 🌀"], ["picture", "https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp"], ["banner", "https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp"], ["website", "https://github.com/ctrlxcvz"], ["about", "☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "gallantdisk053@walletofsatoshi.com"]]
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[14:16:48.209] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[14:16:48.210] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[14:16:48.211] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[14:16:48.211] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[14:16:48.211] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[14:16:48.211] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[14:16:48.211] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[14:16:48.211] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[14:16:48.211] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[14:16:48.211] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[14:16:48.211] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[14:16:48.211] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[14:16:48.211] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[14:16:48.211] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[14:16:48.211] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[14:16:48.211] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[14:16:48.211] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[14:16:48.211] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[14:16:48.270] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[14:16:48.270] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[14:16:48.270] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563406", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[14:16:48.270] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765563406"]
+[14:16:48.276] RECV relay.laantungir.net:443: ["OK", "099d9f55a80dfd7087f87c51ac7c6c47d63c8ccc0a932bf50c95be7dc5a2e263", true, ""]
+[14:16:48.334] RECV relay.laantungir.net:443: ["OK", "b95cdd1b4b249e5d6f6bbc1f92d56c5907d026c148e234eda90effecfd65feab", true, ""]
+[14:16:48.334] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765563408"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[14:20:52.133] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765563651", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[14:20:52.133] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765563651"]
+[14:20:53.134] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "099d9f55a80dfd7087f87c51ac7c6c47d63c8ccc0a932bf50c95be7dc5a2e263",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765563408,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "6f92c291e6bec5c02ddeab3cf6b95757533e4422097f2eee5924d16f336ca0d8c6b84b74bd7bccafa0c754881cf33f2c19e1ae93286f1633f7eb3c1a3378354f",
+ "tags": []
+ }]
+[14:20:53.135] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765563653,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "10a6b0e34dc792c5c40049d94fa1d2eca9b6ed0246a8697eeca31cbe1f405c5c",
+ "sig": "63cf2e78a304f3fe449bb5d0b549e4ed7fabc6830ca4ffdb008f995fabeb7a8cb0b19eec1678bea03ab4a9e387d5fe6f8fd13e341aaccc26ef6aed19095c6023"
+ }]
+[14:20:53.136] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765563653,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "b816c360bc93a331effe514d2ab963659db378e55166a3a599a65a58829c0078",
+ "sig": "f801fca7a1669f2cdf2c779207f7015bd0917ead2de04687e5d863e2326093909cbb6fd64efcbab16078ad00a1b44894c4b33b4d6e1079e9c53224c3e34760ca"
+ }]
+[14:20:53.136] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765563653", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765563653
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "1dd031caa11680a715f7fca33502e2b1a97a7d39f7c7b670279814d10c2eada2",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765562246,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0 🌀\",\"display_name\":\"defaultuser0 🌀\",\"picture\":\"https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp\",\"banner\":\"https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \\n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"gallantdisk053@walletofsatoshi.com\"}",
+ "sig": "fdcefbda890eeb13ea6534230b42a50c35c3134fd1ede887e01ebe7645bebfe61a295c01f053db04959092880363c2538af9ec0582f127869f9996687becc42f",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for defaultuser0 🌀"], ["name", "defaultuser0 🌀"], ["display_name", "defaultuser0 🌀"], ["picture", "https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp"], ["banner", "https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp"], ["website", "https://github.com/ctrlxcvz"], ["about", "☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "gallantdisk053@walletofsatoshi.com"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[14:20:53.136] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[14:20:53.137] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[14:20:53.197] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[14:20:53.197] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[14:20:53.197] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765563651", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[14:20:53.197] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765563651"]
+[14:20:53.208] RECV relay.laantungir.net:443: ["OK", "10a6b0e34dc792c5c40049d94fa1d2eca9b6ed0246a8697eeca31cbe1f405c5c", true, ""]
+[14:20:53.258] RECV relay.laantungir.net:443: ["OK", "b816c360bc93a331effe514d2ab963659db378e55166a3a599a65a58829c0078", true, ""]
+[14:20:53.258] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765563653"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[15:36:38.306] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765568198", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[15:36:38.306] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765568198"]
+[15:36:39.307] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "10a6b0e34dc792c5c40049d94fa1d2eca9b6ed0246a8697eeca31cbe1f405c5c",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765563653,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "63cf2e78a304f3fe449bb5d0b549e4ed7fabc6830ca4ffdb008f995fabeb7a8cb0b19eec1678bea03ab4a9e387d5fe6f8fd13e341aaccc26ef6aed19095c6023",
+ "tags": []
+ }]
+[15:36:39.309] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765568199,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "37de934c2038e9b9f0d995339848fa6cbef8999daffa296749f83690aff91793",
+ "sig": "80cc37691588f91e1f96347d637ccf1bf424eb34930ef258845f882c2fefd6d9bd2ea6f93443e8186f863c2c24e566befddec7c42ebf134f0ba37ea0140c9736"
+ }]
+[15:36:39.309] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765568199,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "54c4f946733d311d21031fe49ebfb6bbbcda2393a1486c484833cd69b23c86f3",
+ "sig": "be7908fbb3036770456b42c7bd6f511350891f4d234960f93b28cb98bdf2c8fe51354f6b8adb52af1df21067cbf9943c45718ef050e9c14152717ddc66af3662"
+ }]
+[15:36:39.309] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765568199", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765568199
+ }]
+[15:36:39.310] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "1dd031caa11680a715f7fca33502e2b1a97a7d39f7c7b670279814d10c2eada2",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765562246,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0 🌀\",\"display_name\":\"defaultuser0 🌀\",\"picture\":\"https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp\",\"banner\":\"https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \\n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"gallantdisk053@walletofsatoshi.com\"}",
+ "sig": "fdcefbda890eeb13ea6534230b42a50c35c3134fd1ede887e01ebe7645bebfe61a295c01f053db04959092880363c2538af9ec0582f127869f9996687becc42f",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for defaultuser0 🌀"], ["name", "defaultuser0 🌀"], ["display_name", "defaultuser0 🌀"], ["picture", "https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp"], ["banner", "https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp"], ["website", "https://github.com/ctrlxcvz"], ["about", "☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "gallantdisk053@walletofsatoshi.com"]]
+ }]
+[15:36:39.310] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[15:36:39.310] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[15:36:39.310] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[15:36:39.310] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[15:36:39.310] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[15:36:39.310] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[15:36:39.310] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[15:36:39.310] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[15:36:39.310] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[15:36:39.310] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[15:36:39.310] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[15:36:39.310] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[15:36:39.310] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[15:36:39.310] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[15:36:39.310] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[15:36:39.311] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[15:36:39.312] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[15:36:39.312] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[15:36:39.312] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[15:36:39.312] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[15:36:39.312] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[15:36:39.312] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[15:36:39.312] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[15:36:39.312] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[15:36:39.312] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[15:36:39.312] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[15:36:39.312] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[15:36:39.312] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[15:36:39.312] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[15:36:39.312] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[15:36:39.312] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[15:36:39.312] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[15:36:39.312] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[15:36:39.371] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[15:36:39.371] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[15:36:39.371] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[15:36:39.371] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[15:36:39.372] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[15:36:39.372] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[15:36:39.372] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568198", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[15:36:39.372] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765568198"]
+[15:36:39.372] RECV relay.laantungir.net:443: ["OK", "37de934c2038e9b9f0d995339848fa6cbef8999daffa296749f83690aff91793", true, ""]
+[15:36:39.433] RECV relay.laantungir.net:443: ["OK", "54c4f946733d311d21031fe49ebfb6bbbcda2393a1486c484833cd69b23c86f3", true, ""]
+[15:36:39.433] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765568199"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[15:37:43.880] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765568263", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[15:37:43.880] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765568263"]
+[15:37:44.881] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "37de934c2038e9b9f0d995339848fa6cbef8999daffa296749f83690aff91793",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765568199,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "80cc37691588f91e1f96347d637ccf1bf424eb34930ef258845f882c2fefd6d9bd2ea6f93443e8186f863c2c24e566befddec7c42ebf134f0ba37ea0140c9736",
+ "tags": []
+ }]
+[15:37:44.882] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765568264,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "29712f0edcb71c5119400423b6daeb6cecd0bc315863ecc8bb11e7a6bf1a90e5",
+ "sig": "88fca87173a96a7961fc685d3611e7def0072680188e42239f24e4eb120e4c2d8b5ef3b4e0b43766dc7dbdecbb2bd69f2fbcb5cf1a41282915d70b91aa71ab6d"
+ }]
+[15:37:44.883] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765568264,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "e65612d79e7a2a5a86cd8dfdb036cd27fa0b190a16429082a31d75df8ea6ed3d",
+ "sig": "182b8a723c578a924d5d65924b09b4b3158e9314fd7fdce4325301dff4258cf3c5451ba28b1b335a406dfc864c8d6a75dab214741c95ce1374f1c2f381e97e5e"
+ }]
+[15:37:44.883] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765568264", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765568264
+ }]
+[15:37:44.883] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "1dd031caa11680a715f7fca33502e2b1a97a7d39f7c7b670279814d10c2eada2",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765562246,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0 🌀\",\"display_name\":\"defaultuser0 🌀\",\"picture\":\"https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp\",\"banner\":\"https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \\n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"gallantdisk053@walletofsatoshi.com\"}",
+ "sig": "fdcefbda890eeb13ea6534230b42a50c35c3134fd1ede887e01ebe7645bebfe61a295c01f053db04959092880363c2538af9ec0582f127869f9996687becc42f",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for defaultuser0 🌀"], ["name", "defaultuser0 🌀"], ["display_name", "defaultuser0 🌀"], ["picture", "https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp"], ["banner", "https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp"], ["website", "https://github.com/ctrlxcvz"], ["about", "☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "gallantdisk053@walletofsatoshi.com"]]
+ }]
+[15:37:44.883] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[15:37:44.883] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[15:37:44.883] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[15:37:44.883] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[15:37:44.883] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[15:37:44.884] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[15:37:44.884] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[15:37:44.884] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[15:37:44.884] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[15:37:44.884] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[15:37:44.884] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[15:37:44.884] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[15:37:44.884] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[15:37:44.884] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[15:37:44.884] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[15:37:44.884] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[15:37:44.884] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[15:37:44.884] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[15:37:44.884] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[15:37:44.884] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[15:37:44.884] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[15:37:44.884] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[15:37:44.885] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[15:37:44.885] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[15:37:44.885] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[15:37:44.885] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[15:37:44.885] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[15:37:44.885] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[15:37:44.885] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[15:37:44.885] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[15:37:44.885] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[15:37:44.885] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[15:37:44.885] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[15:37:44.885] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[15:37:44.885] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[15:37:44.886] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[15:37:44.886] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[15:37:44.886] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[15:37:44.886] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[15:37:44.886] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[15:37:44.886] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[15:37:44.886] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[15:37:44.886] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[15:37:44.886] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[15:37:44.886] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[15:37:44.886] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[15:37:44.886] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[15:37:44.886] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[15:37:44.887] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[15:37:44.887] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[15:37:44.887] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[15:37:44.887] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[15:37:44.887] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[15:37:44.887] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[15:37:44.945] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[15:37:44.945] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[15:37:44.945] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[15:37:44.945] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[15:37:44.945] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568263", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[15:37:44.945] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765568263"]
+[15:37:44.950] RECV relay.laantungir.net:443: ["OK", "29712f0edcb71c5119400423b6daeb6cecd0bc315863ecc8bb11e7a6bf1a90e5", true, ""]
+[15:37:45.009] RECV relay.laantungir.net:443: ["OK", "e65612d79e7a2a5a86cd8dfdb036cd27fa0b190a16429082a31d75df8ea6ed3d", true, ""]
+[15:37:45.009] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765568264"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[15:44:32.213] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765568671", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[15:44:32.213] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765568671"]
+[15:44:33.214] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "29712f0edcb71c5119400423b6daeb6cecd0bc315863ecc8bb11e7a6bf1a90e5",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765568264,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "88fca87173a96a7961fc685d3611e7def0072680188e42239f24e4eb120e4c2d8b5ef3b4e0b43766dc7dbdecbb2bd69f2fbcb5cf1a41282915d70b91aa71ab6d",
+ "tags": []
+ }]
+[15:44:33.216] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765568673,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "532667c65123b69dff63eaa3525ca24b3cfb5549ede822ce849299e736169051",
+ "sig": "71a6db4229b05ccd201bda81e46ee8eec3bd87bd24afe4e568d037fc2bcb90d05204d7aaeec2e58f8919f7b3a2d0f84862d4d302f041b92e00a7ae36c78ba822"
+ }]
+[15:44:33.217] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765568673,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "e3338db7e235a0caa011248e652bc3a40b3812b5ddd1d75ecdb4c1e9511df73d",
+ "sig": "bc226b666cd4b4e0a8622b7adbe9a1d40992760cd5ff954f34dff131a9cbf15456b71eb7bedb6e87326c2a7a1fe400287064db6fad428b39afff831d1b306aa4"
+ }]
+[15:44:33.217] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765568673", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765568673
+ }]
+[15:44:33.217] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "1dd031caa11680a715f7fca33502e2b1a97a7d39f7c7b670279814d10c2eada2",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765562246,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0 🌀\",\"display_name\":\"defaultuser0 🌀\",\"picture\":\"https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp\",\"banner\":\"https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \\n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"gallantdisk053@walletofsatoshi.com\"}",
+ "sig": "fdcefbda890eeb13ea6534230b42a50c35c3134fd1ede887e01ebe7645bebfe61a295c01f053db04959092880363c2538af9ec0582f127869f9996687becc42f",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for defaultuser0 🌀"], ["name", "defaultuser0 🌀"], ["display_name", "defaultuser0 🌀"], ["picture", "https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp"], ["banner", "https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp"], ["website", "https://github.com/ctrlxcvz"], ["about", "☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "gallantdisk053@walletofsatoshi.com"]]
+ }]
+[15:44:33.217] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[15:44:33.217] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[15:44:33.217] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[15:44:33.217] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[15:44:33.217] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[15:44:33.217] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[15:44:33.217] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[15:44:33.217] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[15:44:33.217] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[15:44:33.217] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[15:44:33.217] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[15:44:33.218] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[15:44:33.219] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[15:44:33.220] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[15:44:33.278] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[15:44:33.278] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[15:44:33.278] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[15:44:33.278] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[15:44:33.278] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765568671", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[15:44:33.278] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765568671"]
+[15:44:33.291] RECV relay.laantungir.net:443: ["OK", "532667c65123b69dff63eaa3525ca24b3cfb5549ede822ce849299e736169051", true, ""]
+[15:44:33.392] RECV relay.laantungir.net:443: ["OK", "e3338db7e235a0caa011248e652bc3a40b3812b5ddd1d75ecdb4c1e9511df73d", true, ""]
+[15:44:33.397] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765568673"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[15:52:20.484] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765569140", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[15:52:20.484] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765569140"]
+[15:52:21.485] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "532667c65123b69dff63eaa3525ca24b3cfb5549ede822ce849299e736169051",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765568673,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "71a6db4229b05ccd201bda81e46ee8eec3bd87bd24afe4e568d037fc2bcb90d05204d7aaeec2e58f8919f7b3a2d0f84862d4d302f041b92e00a7ae36c78ba822",
+ "tags": []
+ }]
+[15:52:21.487] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765569141,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "f4d7f59e9b6867b0c0bad8ecaf9dc6c53e78e257c41657fbde35e49ae32a7405",
+ "sig": "13f71bb841224d4a4d9f1e0999ae9834472c6dbc58237c81e76e1ddad5ed626d9ade29b264f05a670d1d2cf34ee6e694a1e3dbae8ee26b5648b7b69b67944ae3"
+ }]
+[15:52:21.487] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765569141,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "1e250318cae7c82a635da8f60a1a8657182de827006a503795e13cae7ce05611",
+ "sig": "4fbbb21e85b0d49299b4cbd44ef28e1868b14aed7e99c324678d766476fc4311d604743ab09c5a2d5ad6f3ffdd6c0c3c4eec3050a1e1ea069162fa07fbaafe06"
+ }]
+[15:52:21.487] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765569141", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765569141
+ }]
+[15:52:21.487] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "1dd031caa11680a715f7fca33502e2b1a97a7d39f7c7b670279814d10c2eada2",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765562246,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0 🌀\",\"display_name\":\"defaultuser0 🌀\",\"picture\":\"https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp\",\"banner\":\"https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \\n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"gallantdisk053@walletofsatoshi.com\"}",
+ "sig": "fdcefbda890eeb13ea6534230b42a50c35c3134fd1ede887e01ebe7645bebfe61a295c01f053db04959092880363c2538af9ec0582f127869f9996687becc42f",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for defaultuser0 🌀"], ["name", "defaultuser0 🌀"], ["display_name", "defaultuser0 🌀"], ["picture", "https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp"], ["banner", "https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp"], ["website", "https://github.com/ctrlxcvz"], ["about", "☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "gallantdisk053@walletofsatoshi.com"]]
+ }]
+[15:52:21.488] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[15:52:21.488] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[15:52:21.488] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[15:52:21.488] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[15:52:21.488] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[15:52:21.488] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[15:52:21.488] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[15:52:21.488] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[15:52:21.488] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[15:52:21.488] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[15:52:21.488] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[15:52:21.489] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[15:52:21.489] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[15:52:21.489] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[15:52:21.489] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[15:52:21.489] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[15:52:21.489] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[15:52:21.489] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[15:52:21.489] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[15:52:21.489] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[15:52:21.489] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[15:52:21.489] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[15:52:21.489] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[15:52:21.489] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[15:52:21.489] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[15:52:21.489] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[15:52:21.489] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[15:52:21.489] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[15:52:21.489] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[15:52:21.490] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[15:52:21.491] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[15:52:21.491] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[15:52:21.491] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[15:52:21.549] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[15:52:21.549] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[15:52:21.549] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[15:52:21.549] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[15:52:21.549] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[15:52:21.549] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[15:52:21.550] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569140", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[15:52:21.550] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765569140"]
+[15:52:21.550] RECV relay.laantungir.net:443: ["OK", "f4d7f59e9b6867b0c0bad8ecaf9dc6c53e78e257c41657fbde35e49ae32a7405", true, ""]
+[15:52:21.611] RECV relay.laantungir.net:443: ["OK", "1e250318cae7c82a635da8f60a1a8657182de827006a503795e13cae7ce05611", true, ""]
+[15:52:21.612] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765569141"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[15:59:25.432] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765569565", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[15:59:25.432] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765569565"]
+[15:59:26.433] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "f4d7f59e9b6867b0c0bad8ecaf9dc6c53e78e257c41657fbde35e49ae32a7405",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765569141,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "13f71bb841224d4a4d9f1e0999ae9834472c6dbc58237c81e76e1ddad5ed626d9ade29b264f05a670d1d2cf34ee6e694a1e3dbae8ee26b5648b7b69b67944ae3",
+ "tags": []
+ }]
+[15:59:26.435] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765569566,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "714e47fb36313fb28cc931eb984dbe4819d9094ae8b5c34c2c3ad01d9824aef0",
+ "sig": "31c2a2cfe14fc8babdf4735cf137b693afd691bc9d088114238b3e507d74563adb4c76e69ee53696ca571d3c563572367c94559c7f523376d9ed4dfe9b981d4c"
+ }]
+[15:59:26.435] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765569566,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "b1e8549ad50921ace29e951b97afbad5d02b8fdd096e388977c3e66cfc095335",
+ "sig": "2fb7fb2e0317ec2f69c66dba024e118d9f2587e997b4201c0fdbceb30ac977641fd338ce1a2b75736f1f566ff10010909ed03224951f3cca9cd52011bd5ad132"
+ }]
+[15:59:26.435] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765569566", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765569566
+ }]
+[15:59:26.435] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "1dd031caa11680a715f7fca33502e2b1a97a7d39f7c7b670279814d10c2eada2",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765562246,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0 🌀\",\"display_name\":\"defaultuser0 🌀\",\"picture\":\"https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp\",\"banner\":\"https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \\n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"gallantdisk053@walletofsatoshi.com\"}",
+ "sig": "fdcefbda890eeb13ea6534230b42a50c35c3134fd1ede887e01ebe7645bebfe61a295c01f053db04959092880363c2538af9ec0582f127869f9996687becc42f",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for defaultuser0 🌀"], ["name", "defaultuser0 🌀"], ["display_name", "defaultuser0 🌀"], ["picture", "https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp"], ["banner", "https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp"], ["website", "https://github.com/ctrlxcvz"], ["about", "☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "gallantdisk053@walletofsatoshi.com"]]
+ }]
+[15:59:26.435] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[15:59:26.435] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[15:59:26.435] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[15:59:26.435] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[15:59:26.436] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[15:59:26.436] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[15:59:26.436] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[15:59:26.436] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[15:59:26.436] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[15:59:26.436] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[15:59:26.436] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[15:59:26.436] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[15:59:26.436] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[15:59:26.436] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[15:59:26.436] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[15:59:26.436] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[15:59:26.436] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[15:59:26.436] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[15:59:26.436] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[15:59:26.436] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[15:59:26.436] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[15:59:26.437] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[15:59:26.438] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[15:59:26.438] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[15:59:26.438] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[15:59:26.438] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[15:59:26.438] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[15:59:26.438] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[15:59:26.438] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[15:59:26.438] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[15:59:26.438] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[15:59:26.438] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[15:59:26.438] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[15:59:26.438] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[15:59:26.497] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[15:59:26.497] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[15:59:26.497] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[15:59:26.497] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569565", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[15:59:26.497] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765569565"]
+[15:59:26.506] RECV relay.laantungir.net:443: ["OK", "714e47fb36313fb28cc931eb984dbe4819d9094ae8b5c34c2c3ad01d9824aef0", true, ""]
+[15:59:26.560] RECV relay.laantungir.net:443: ["OK", "b1e8549ad50921ace29e951b97afbad5d02b8fdd096e388977c3e66cfc095335", true, ""]
+[15:59:26.561] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765569566"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[16:01:33.700] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765569693", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[16:01:33.700] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765569693"]
+[16:01:34.701] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "714e47fb36313fb28cc931eb984dbe4819d9094ae8b5c34c2c3ad01d9824aef0",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765569566,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "31c2a2cfe14fc8babdf4735cf137b693afd691bc9d088114238b3e507d74563adb4c76e69ee53696ca571d3c563572367c94559c7f523376d9ed4dfe9b981d4c",
+ "tags": []
+ }]
+[16:01:34.703] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765569694,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "9ff52869158c13383726e9d97d553cdb4c0ab17b7a7ddfdc45fc5e830a34a499",
+ "sig": "33fdc75584bff24641b087c7959f7f7c992bb8671d64ead5c340a29b4943061b1d36e27a84ed76469df6b4339fc8c21c5e0d52d54a9f85fd48c4661d1638f079"
+ }]
+[16:01:34.703] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765569694,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "dff2d3d2532a55e3c94796203dd101ef2eddd7b53c880cf78c9d1a40e4f1f33d",
+ "sig": "925bc821ec70e50d846c75e411c96bbc6316a98b58ea81b22a873b31ad261aaf92824ebe3f54bdcd864b05b6e3c862677ad402f42aa98dc0c13c067fb11dca26"
+ }]
+[16:01:34.703] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765569694", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765569694
+ }]
+[16:01:34.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "1dd031caa11680a715f7fca33502e2b1a97a7d39f7c7b670279814d10c2eada2",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765562246,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0 🌀\",\"display_name\":\"defaultuser0 🌀\",\"picture\":\"https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp\",\"banner\":\"https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \\n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"gallantdisk053@walletofsatoshi.com\"}",
+ "sig": "fdcefbda890eeb13ea6534230b42a50c35c3134fd1ede887e01ebe7645bebfe61a295c01f053db04959092880363c2538af9ec0582f127869f9996687becc42f",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for defaultuser0 🌀"], ["name", "defaultuser0 🌀"], ["display_name", "defaultuser0 🌀"], ["picture", "https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp"], ["banner", "https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp"], ["website", "https://github.com/ctrlxcvz"], ["about", "☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "gallantdisk053@walletofsatoshi.com"]]
+ }]
+[16:01:34.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[16:01:34.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[16:01:34.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[16:01:34.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[16:01:34.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[16:01:34.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[16:01:34.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[16:01:34.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[16:01:34.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[16:01:34.704] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[16:01:34.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[16:01:34.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[16:01:34.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[16:01:34.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[16:01:34.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[16:01:34.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[16:01:34.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[16:01:34.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[16:01:34.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[16:01:34.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[16:01:34.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[16:01:34.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[16:01:34.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[16:01:34.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[16:01:34.705] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[16:01:34.706] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[16:01:34.706] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[16:01:34.706] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[16:01:34.706] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[16:01:34.706] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[16:01:34.706] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[16:01:34.706] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[16:01:34.706] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[16:01:34.706] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[16:01:34.706] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[16:01:34.706] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[16:01:34.706] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[16:01:34.706] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[16:01:34.706] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[16:01:34.706] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[16:01:34.706] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[16:01:34.707] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[16:01:34.707] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[16:01:34.707] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[16:01:34.707] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[16:01:34.707] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[16:01:34.707] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[16:01:34.707] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[16:01:34.707] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[16:01:34.707] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[16:01:34.707] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[16:01:34.707] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[16:01:34.707] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[16:01:34.707] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[16:01:34.765] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[16:01:34.765] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[16:01:34.765] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[16:01:34.765] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[16:01:34.765] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569693", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[16:01:34.765] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765569693"]
+[16:01:34.827] RECV relay.laantungir.net:443: ["OK", "9ff52869158c13383726e9d97d553cdb4c0ab17b7a7ddfdc45fc5e830a34a499", true, ""]
+[16:01:34.829] RECV relay.laantungir.net:443: ["OK", "dff2d3d2532a55e3c94796203dd101ef2eddd7b53c880cf78c9d1a40e4f1f33d", true, ""]
+[16:01:34.829] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765569694"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[16:02:47.934] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765569767", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[16:02:47.934] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765569767"]
+[16:02:48.935] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "9ff52869158c13383726e9d97d553cdb4c0ab17b7a7ddfdc45fc5e830a34a499",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765569694,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "33fdc75584bff24641b087c7959f7f7c992bb8671d64ead5c340a29b4943061b1d36e27a84ed76469df6b4339fc8c21c5e0d52d54a9f85fd48c4661d1638f079",
+ "tags": []
+ }]
+[16:02:48.936] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765569768,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "497f823fb2ca9c2efd6e1eaf6f08d265fb054ae0e5af8e7321a353989faae049",
+ "sig": "d33a93eff7e909000fe2c0feed348ca56c06b08161d2754343c9dfb9c4ee7f1f8194347784f7ae2cfa853efb41cbdbaa4d7a86eecbe59547de3792babec1ba60"
+ }]
+[16:02:48.937] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765569768,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "d67bd7f9bd9ecae9b08d44bc71f065887b678b183b7db94e93038617f2f37af0",
+ "sig": "6834057b594871f438e096bb69ecaae17396b1588359422718fa946be801594dcec3162765f5ff1d9e5adc7ab9d6149657598087aa7489c20bf16e0afca8f2ca"
+ }]
+[16:02:48.937] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765569768", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765569768
+ }]
+[16:02:48.937] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "1dd031caa11680a715f7fca33502e2b1a97a7d39f7c7b670279814d10c2eada2",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765562246,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0 🌀\",\"display_name\":\"defaultuser0 🌀\",\"picture\":\"https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp\",\"banner\":\"https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \\n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"gallantdisk053@walletofsatoshi.com\"}",
+ "sig": "fdcefbda890eeb13ea6534230b42a50c35c3134fd1ede887e01ebe7645bebfe61a295c01f053db04959092880363c2538af9ec0582f127869f9996687becc42f",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for defaultuser0 🌀"], ["name", "defaultuser0 🌀"], ["display_name", "defaultuser0 🌀"], ["picture", "https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp"], ["banner", "https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp"], ["website", "https://github.com/ctrlxcvz"], ["about", "☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "gallantdisk053@walletofsatoshi.com"]]
+ }]
+[16:02:48.937] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[16:02:48.937] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[16:02:48.937] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[16:02:48.937] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[16:02:48.937] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[16:02:48.937] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[16:02:48.938] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[16:02:48.938] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[16:02:48.938] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[16:02:48.938] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[16:02:48.938] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[16:02:48.938] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[16:02:48.938] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[16:02:48.938] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[16:02:48.938] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[16:02:48.938] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[16:02:48.938] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[16:02:48.938] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[16:02:48.938] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[16:02:48.939] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[16:02:48.939] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[16:02:48.939] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[16:02:48.939] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[16:02:48.939] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[16:02:48.939] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[16:02:48.939] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[16:02:48.939] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[16:02:48.939] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[16:02:48.939] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[16:02:48.939] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[16:02:48.939] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[16:02:48.939] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[16:02:48.939] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[16:02:48.939] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[16:02:48.939] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[16:02:48.939] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[16:02:48.940] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[16:02:48.940] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[16:02:48.940] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[16:02:48.940] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[16:02:48.940] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[16:02:48.940] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[16:02:48.940] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[16:02:48.940] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[16:02:48.940] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[16:02:48.940] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[16:02:48.940] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[16:02:48.940] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[16:02:48.940] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[16:02:48.940] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[16:02:48.940] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[16:02:48.940] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[16:02:48.940] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[16:02:48.940] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[16:02:48.999] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[16:02:48.999] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[16:02:48.999] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[16:02:48.999] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[16:02:48.999] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765569767", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[16:02:48.999] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765569767"]
+[16:02:49.025] RECV relay.laantungir.net:443: ["OK", "497f823fb2ca9c2efd6e1eaf6f08d265fb054ae0e5af8e7321a353989faae049", true, ""]
+[16:02:49.124] RECV relay.laantungir.net:443: ["OK", "d67bd7f9bd9ecae9b08d44bc71f065887b678b183b7db94e93038617f2f37af0", true, ""]
+[16:02:49.124] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765569768"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[16:08:46.169] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765570125", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[16:08:46.169] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765570125"]
+[16:08:47.170] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "497f823fb2ca9c2efd6e1eaf6f08d265fb054ae0e5af8e7321a353989faae049",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765569768,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "d33a93eff7e909000fe2c0feed348ca56c06b08161d2754343c9dfb9c4ee7f1f8194347784f7ae2cfa853efb41cbdbaa4d7a86eecbe59547de3792babec1ba60",
+ "tags": []
+ }]
+[16:08:47.172] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765570127,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "f01ea2bf6e33d65f713e19d20f35263d60c19ce94784bbb760ee4f241d6ea306",
+ "sig": "4d27b7d8a1ebfedb09223c1b507c7a5ab40ce86b12f1f889d1f57e918d2f4b8d6e5493b1acbd821e40163ae463caf7f9d5fe687590be28b1b6c1fa4627f18602"
+ }]
+[16:08:47.173] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765570127,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "01c090e90f086773d3c11734eaa8bcb79e6035550e7dadbcad8a8241f99ce293",
+ "sig": "b1623493049d1d9e0618214c26ca4903145af227100b1f6cf60864e482614d2281d72feb0b354194c94d2246fd020b16471868d1ec5b563cc2141acab02c4b75"
+ }]
+[16:08:47.173] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765570127", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765570127
+ }]
+[16:08:47.173] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "1dd031caa11680a715f7fca33502e2b1a97a7d39f7c7b670279814d10c2eada2",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765562246,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0 🌀\",\"display_name\":\"defaultuser0 🌀\",\"picture\":\"https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp\",\"banner\":\"https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \\n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"gallantdisk053@walletofsatoshi.com\"}",
+ "sig": "fdcefbda890eeb13ea6534230b42a50c35c3134fd1ede887e01ebe7645bebfe61a295c01f053db04959092880363c2538af9ec0582f127869f9996687becc42f",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for defaultuser0 🌀"], ["name", "defaultuser0 🌀"], ["display_name", "defaultuser0 🌀"], ["picture", "https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp"], ["banner", "https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp"], ["website", "https://github.com/ctrlxcvz"], ["about", "☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "gallantdisk053@walletofsatoshi.com"]]
+ }]
+[16:08:47.173] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[16:08:47.173] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[16:08:47.173] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[16:08:47.173] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[16:08:47.173] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[16:08:47.173] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[16:08:47.173] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[16:08:47.173] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[16:08:47.173] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[16:08:47.173] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[16:08:47.173] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[16:08:47.174] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[16:08:47.175] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[16:08:47.234] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[16:08:47.234] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[16:08:47.234] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[16:08:47.235] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[16:08:47.235] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[16:08:47.235] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[16:08:47.235] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765570125", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[16:08:47.235] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765570125"]
+[16:08:47.235] RECV relay.laantungir.net:443: ["OK", "f01ea2bf6e33d65f713e19d20f35263d60c19ce94784bbb760ee4f241d6ea306", true, ""]
+[16:08:47.296] RECV relay.laantungir.net:443: ["OK", "01c090e90f086773d3c11734eaa8bcb79e6035550e7dadbcad8a8241f99ce293", true, ""]
+[16:08:47.296] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765570127"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[16:31:36.609] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765571496", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[16:31:36.609] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765571496"]
+[16:31:37.610] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "f01ea2bf6e33d65f713e19d20f35263d60c19ce94784bbb760ee4f241d6ea306",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765570127,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "4d27b7d8a1ebfedb09223c1b507c7a5ab40ce86b12f1f889d1f57e918d2f4b8d6e5493b1acbd821e40163ae463caf7f9d5fe687590be28b1b6c1fa4627f18602",
+ "tags": []
+ }]
+[16:31:37.612] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765571497,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "7978570cf33676f89fd32abec09e67fe22fe35b6987008a792414816b812f9ff",
+ "sig": "1ddbdaa79240b07b7ed2f38b610d8a2345c88214004b505cf0f02ed0cba9b2144e3560dfe10bc70bd0ea687a82487758c5ddaf52481aa47d460f3ddc46b4ef4a"
+ }]
+[16:31:37.612] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765571497,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "8c6ebb366015191d375b9240053bd9a44e985e8290d56ce30ee77939c4f03a49",
+ "sig": "610b3f179d4a069fc9d8faa710ceeb91ae839d09b664c71ad731f24b075e819b120d88ec8591f483fd90ac871915ca3f03a084dbcdd98d646771b251f739554f"
+ }]
+[16:31:37.612] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765571497", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765571497
+ }]
+[16:31:37.612] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "1dd031caa11680a715f7fca33502e2b1a97a7d39f7c7b670279814d10c2eada2",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765562246,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0 🌀\",\"display_name\":\"defaultuser0 🌀\",\"picture\":\"https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp\",\"banner\":\"https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \\n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"gallantdisk053@walletofsatoshi.com\"}",
+ "sig": "fdcefbda890eeb13ea6534230b42a50c35c3134fd1ede887e01ebe7645bebfe61a295c01f053db04959092880363c2538af9ec0582f127869f9996687becc42f",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for defaultuser0 🌀"], ["name", "defaultuser0 🌀"], ["display_name", "defaultuser0 🌀"], ["picture", "https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp"], ["banner", "https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp"], ["website", "https://github.com/ctrlxcvz"], ["about", "☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "gallantdisk053@walletofsatoshi.com"]]
+ }]
+[16:31:37.613] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[16:31:37.613] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[16:31:37.613] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[16:31:37.613] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[16:31:37.613] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[16:31:37.613] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[16:31:37.613] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[16:31:37.613] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[16:31:37.613] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[16:31:37.613] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[16:31:37.613] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[16:31:37.613] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[16:31:37.613] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[16:31:37.613] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[16:31:37.613] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[16:31:37.614] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[16:31:37.614] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[16:31:37.614] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[16:31:37.614] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[16:31:37.614] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[16:31:37.614] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[16:31:37.614] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[16:31:37.614] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[16:31:37.614] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[16:31:37.614] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[16:31:37.614] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[16:31:37.614] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[16:31:37.614] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[16:31:37.614] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[16:31:37.614] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[16:31:37.614] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[16:31:37.614] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[16:31:37.614] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[16:31:37.615] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[16:31:37.615] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[16:31:37.615] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[16:31:37.615] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[16:31:37.615] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[16:31:37.615] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[16:31:37.615] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[16:31:37.615] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[16:31:37.615] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[16:31:37.615] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[16:31:37.615] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[16:31:37.615] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[16:31:37.615] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[16:31:37.615] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[16:31:37.615] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[16:31:37.615] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[16:31:37.615] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[16:31:37.616] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[16:31:37.616] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[16:31:37.674] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[16:31:37.674] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[16:31:37.674] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[16:31:37.674] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[16:31:37.674] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[16:31:37.674] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[16:31:37.674] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571496", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[16:31:37.674] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765571496"]
+[16:31:37.679] RECV relay.laantungir.net:443: ["OK", "7978570cf33676f89fd32abec09e67fe22fe35b6987008a792414816b812f9ff", true, ""]
+[16:31:37.737] RECV relay.laantungir.net:443: ["OK", "8c6ebb366015191d375b9240053bd9a44e985e8290d56ce30ee77939c4f03a49", true, ""]
+[16:31:37.738] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765571497"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[16:36:45.802] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765571805", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[16:36:45.803] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765571805"]
+[16:36:46.803] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "7978570cf33676f89fd32abec09e67fe22fe35b6987008a792414816b812f9ff",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765571497,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "1ddbdaa79240b07b7ed2f38b610d8a2345c88214004b505cf0f02ed0cba9b2144e3560dfe10bc70bd0ea687a82487758c5ddaf52481aa47d460f3ddc46b4ef4a",
+ "tags": []
+ }]
+[16:36:46.805] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765571806,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "0d48e2e15a41a3972ae6907606fa6cd1de7e9383b2fecc429bdfddf0aded45f9",
+ "sig": "d885277bf2ea81c0c67e537d99ea04fa79fe849ff5e68f147515fb836352a9b843bf3fe7f111278d154d5bbc5a0239ada9e08afe4293fceeb36b545e82014968"
+ }]
+[16:36:46.806] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765571806,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "d639027d3c814cab933f7cd26647c2a40d68efff6d1bb3ac3f0453e5193d6165",
+ "sig": "1eba9114bb4a06cba253b0380ec24251f7a17b4d0f61fb078f1125fac6edcc87a84a8a2c4a6923ae5c9072725b730cc1640e88cf575c79af095d83922a043537"
+ }]
+[16:36:46.806] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765571806", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765571806
+ }]
+[16:36:46.806] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "1dd031caa11680a715f7fca33502e2b1a97a7d39f7c7b670279814d10c2eada2",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765562246,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0 🌀\",\"display_name\":\"defaultuser0 🌀\",\"picture\":\"https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp\",\"banner\":\"https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \\n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"gallantdisk053@walletofsatoshi.com\"}",
+ "sig": "fdcefbda890eeb13ea6534230b42a50c35c3134fd1ede887e01ebe7645bebfe61a295c01f053db04959092880363c2538af9ec0582f127869f9996687becc42f",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for defaultuser0 🌀"], ["name", "defaultuser0 🌀"], ["display_name", "defaultuser0 🌀"], ["picture", "https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp"], ["banner", "https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp"], ["website", "https://github.com/ctrlxcvz"], ["about", "☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "gallantdisk053@walletofsatoshi.com"]]
+ }]
+[16:36:46.806] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[16:36:46.806] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[16:36:46.806] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[16:36:46.806] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[16:36:46.806] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[16:36:46.807] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[16:36:46.807] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[16:36:46.807] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[16:36:46.807] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[16:36:46.807] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[16:36:46.807] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[16:36:46.807] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[16:36:46.807] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[16:36:46.807] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[16:36:46.807] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[16:36:46.807] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[16:36:46.807] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[16:36:46.807] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[16:36:46.807] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[16:36:46.807] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[16:36:46.807] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[16:36:46.807] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[16:36:46.807] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[16:36:46.807] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[16:36:46.808] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[16:36:46.808] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[16:36:46.808] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[16:36:46.808] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[16:36:46.808] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[16:36:46.808] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[16:36:46.808] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[16:36:46.808] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[16:36:46.808] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[16:36:46.808] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[16:36:46.808] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[16:36:46.808] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[16:36:46.808] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[16:36:46.808] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[16:36:46.808] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[16:36:46.808] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[16:36:46.808] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[16:36:46.808] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[16:36:46.809] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[16:36:46.809] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[16:36:46.809] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[16:36:46.809] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[16:36:46.809] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[16:36:46.809] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[16:36:46.809] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[16:36:46.809] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[16:36:46.809] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[16:36:46.809] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[16:36:46.867] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[16:36:46.867] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[16:36:46.868] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[16:36:46.868] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[16:36:46.868] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[16:36:46.868] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[16:36:46.868] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765571805", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[16:36:46.868] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765571805"]
+[16:36:46.881] RECV relay.laantungir.net:443: ["OK", "0d48e2e15a41a3972ae6907606fa6cd1de7e9383b2fecc429bdfddf0aded45f9", true, ""]
+[16:36:46.929] RECV relay.laantungir.net:443: ["OK", "d639027d3c814cab933f7cd26647c2a40d68efff6d1bb3ac3f0453e5193d6165", true, ""]
+[16:36:46.929] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765571806"]
+
+=== NOSTR WebSocket Debug Log Started ===
+[16:40:32.767] SEND relay.laantungir.net:443: ["REQ", "pool_1_1765572032", {
+ "kinds": [0],
+ "limit": 0
+ }]
+[16:40:32.768] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1765572032"]
+[16:40:33.768] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "0d48e2e15a41a3972ae6907606fa6cd1de7e9383b2fecc429bdfddf0aded45f9",
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765571806,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "d885277bf2ea81c0c67e537d99ea04fa79fe849ff5e68f147515fb836352a9b843bf3fe7f111278d154d5bbc5a0239ada9e08afe4293fceeb36b545e82014968",
+ "tags": []
+ }]
+[16:40:33.770] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765572033,
+ "kind": 0,
+ "tags": [],
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "id": "7b754b9775df914fafb7a3c99cd4c0dbba92fabf3832ec985ffca19db45b8cf2",
+ "sig": "35856588740a8c571fabeb19ad916d49b3965c61b8b2ced5c179cfadae8e8b95a1c3745732c861daf16fbcdb2ba3544331ff2bb8095894d7dc5b80e565e28c8d"
+ }]
+[16:40:33.771] SEND relay.laantungir.net:443: ["EVENT", {
+ "pubkey": "52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a",
+ "created_at": 1765572033,
+ "kind": 10002,
+ "tags": [["r", "wss://relay.laantungir.net"]],
+ "content": "",
+ "id": "75aa0d96fc75fbf53fe668b845fd370fffbfcdcd525f9896703a46a51828645a",
+ "sig": "7ef1c13d40337c4227d3c2378d5db62bc1cf046fe2500389da93f4bbfe38c4112684862c12072ebab8a438347699a1413f064f8a78491347177ff4f30aaa4373"
+ }]
+[16:40:33.771] SEND relay.laantungir.net:443: ["REQ", "pool_2_1765572033", {
+ "kinds": [23458],
+ "#p": ["52e366edfa4e9cc6a6d4653828e51ccf828a2f5a05227d7a768f33b5a198681a"],
+ "since": 1765572033
+ }]
+[16:40:33.771] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "1dd031caa11680a715f7fca33502e2b1a97a7d39f7c7b670279814d10c2eada2",
+ "pubkey": "bc80df628b36f8b40c9453159fda63a6297af65c895f7fbefda8d3c8a4986626",
+ "created_at": 1765562246,
+ "kind": 0,
+ "content": "{\"name\":\"defaultuser0 🌀\",\"display_name\":\"defaultuser0 🌀\",\"picture\":\"https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp\",\"banner\":\"https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp\",\"website\":\"https://github.com/ctrlxcvz\",\"about\":\"☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \\n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \\n⛏️✊ 🛠️ \\nLibertatem per securitatem et secretum.\",\"nip05\":\"ctrlxcvz@plebchain.club\",\"lud16\":\"gallantdisk053@walletofsatoshi.com\"}",
+ "sig": "fdcefbda890eeb13ea6534230b42a50c35c3134fd1ede887e01ebe7645bebfe61a295c01f053db04959092880363c2538af9ec0582f127869f9996687becc42f",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for defaultuser0 🌀"], ["name", "defaultuser0 🌀"], ["display_name", "defaultuser0 🌀"], ["picture", "https://cdn.nostrcheck.me/5374ffe465600ebf1e8cd9feacc7bc08e29aa4ba835c5b152791bd8c2551c702.webp"], ["banner", "https://cdn.nostrcheck.me/2357b4063a524b9bd96573a6a43ea46a326b17f6a21903d41ad920d3a6e51841.webp"], ["website", "https://github.com/ctrlxcvz"], ["about", "☕🫠 Human first ; a junk drawer of thoughts, interests, & useless trivia second 🧷📎 I know stuff and do things, sometimes 💾📚 Be the better problem 🌀👿 Let’s learn together | \n#sarcasm #coffee #cats #bitcoin #stem #lit #art #photog #design #3Dprint #memes #satire #physicalmedia #records #gaming #mtg #horror #retro #tech #privacy #security #foss #film 🎬 https://boxd.it/1jJR \n⛏️✊ 🛠️ \nLibertatem per securitatem et secretum."], ["nip05", "ctrlxcvz@plebchain.club"], ["lud16", "gallantdisk053@walletofsatoshi.com"]]
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "2df78b387e5353fb9f24d0ddf278055e558b67359d472aef99c4578d26dab27a",
+ "pubkey": "52c4397920d1a47abcedd342f2eb56706405148f46e8cd6b25b42de2ce69a7f1",
+ "created_at": 1765552654,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif\",\"picture\":\"https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif\",\"display_name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"about\":\"AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱\",\"name\":\"𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗\",\"pronouns\":\"he/him\",\"lud16\":\"studiedlyric63@walletofsatoshi.com\",\"created_at\":1765449604,\"nip05\":\"iris.to/napnap.nostr\"}",
+ "sig": "5b2c0118b589487e8d273c95d504ee24b3406b5dff12d3b38adeaf447097f18c61f523bb705cb20c2b5e87ac783d3d70196ef1234d79aebdeff0cdaa24625375",
+ "tags": [["alt", "User profile for 𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["display_name", "𝕯𝖆𝖋𝖞𝖉𝖉 𝕹𝖆𝖕𝖎𝖊𝖗"], ["picture", "https://i.ibb.co/qLTz2859/grok-video-2025-12-06-21-38-03.gif"], ["banner", "https://i.pinimg.com/originals/a0/07/cb/a007cb58f10c80d6ac1df076c18ef143.gif"], ["pronouns", "he/him"], ["about", "AI & crypto enthusiast | Tech geek | Science lover | 80s/90s pop culture fan. Exploring the intersection of AI, blockchain, and emerging tech, Am Yisrael Chai🇮🇱"], ["nip05", "iris.to/napnap.nostr"], ["lud16", "studiedlyric63@walletofsatoshi.com"], ["i", "twitter:DafyddNapX", "1724755839666270703"], ["i", "github:Napiersnotes", "732ea106cc658c8e6dfdafd80694375a"]]
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "af65468c51ed30d2f68e906f5a909d6ff53f326f8cd14eb1146a0f7dc2b7e522",
+ "pubkey": "e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb",
+ "created_at": 1765552359,
+ "kind": 0,
+ "content": "{\"name\":\"🇮🇹Davide btc ⚡\",\"nip05\":\"coordinator@whiteyesats.website\",\"about\":\"Full node btc - maximalist. Hold your btc in self custody\\nBitcoin - privacy - No KYC 🚫\\nNostr free relay: wss://relay.davidebtc.me\\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\\n\\n####Robosat Coordiator#####\\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\\n\\n#####Contacts#####\\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\\nmail: davidebtc@tutamail.com\\n\\n#####Resources#####\\nSubstack: https://davidebtc186.substack.com\\nGitHub:https://github.com/asyscom\",\"lud16\":\"zap@whiteyesats.website\",\"display_name\":\"🇮🇹Davide btc ⚡\",\"picture\":\"https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg\",\"banner\":\"https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg\"}",
+ "sig": "f13dc15211a2770fe712975bbe5955c4ce04ec70b1917475b21d1fa526682d3935779e5057211a947cf591b5a3462445e4417926f92f897ae85f3759a12f2448",
+ "tags": [["alt", "User profile for 🇮🇹Davide btc ⚡"], ["name", "🇮🇹Davide btc ⚡"], ["display_name", "🇮🇹Davide btc ⚡"], ["picture", "https://image.nostr.build/ca640eb9059a3a63665de95e5f9d51d56fd5683a8c0e5de4901c037b3c68b83b.jpg"], ["banner", "https://image.nostr.build/0af6177c41661294029d85644803352400aeca28b8bd8e18026dfc5018e483e9.jpg"], ["about", "Full node btc - maximalist. Hold your btc in self custody\nBitcoin - privacy - No KYC 🚫\nNostr free relay: wss://relay.davidebtc.me\nPersonal Lnd Node: 0355e062e304de30b231acb612bfc3bbfaa33fdcc98291a8f45b1983808865c384\n\n####Robosat Coordiator#####\nCordinator Lnd node: 025da46e8521fbe14c1d60d23d74b2b6d0dcc740ff600232314ef65751346e940e@qeni2ckqe5sv5tvtcs4akbca5ew5soisykh2efh4vvpqhsjggfemm7yd.onion:9735\nCoordinator Robosat: http://s4usqbcf2pk2xwghdzaggrxd3paiqpvnl4lm2dxp6dec3wbclgbdyiyd.onion/\nCoordinator Robosat site: https://whiteyesats.davidebtc.me\nFederation Live Status Page: https://whiteyesats.davidebtc.me/status/robosats\n\n#####Contacts#####\nSimplex: https://smp17.simplex.im/a#wSybGAOR98kvBMcYiaFN0QYzoaGpZ2MC-QbaUk_AJ_8\nmail: davidebtc@tutamail.com\n\n#####Resources#####\nSubstack: https://davidebtc186.substack.com\nGitHub:https://github.com/asyscom"], ["nip05", "coordinator@whiteyesats.website"], ["lud16", "zap@whiteyesats.website"]]
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "4c7355e1fb9e6e455278615e4c069189d68775d94fb520fd709e2c1123c6ae4c",
+ "pubkey": "9fe72c76ced19360f2e62d89b8b54f80fdea877a1f334b58b1e4bdf1e3a5f902",
+ "created_at": 1765547956,
+ "kind": 0,
+ "content": "{\"created_at\":1728907932,\"name\":\"植木等\",\"display_name\":\"植木等\"}",
+ "sig": "2372b54dea83fd430447ef199125fd7ec9d487e21815a62f2ec166eab93a9a6213c4081cef9dddc702aed4462ad4c69009cee87e858c5457c19ecc44f5e34889",
+ "tags": [["alt", "User profile for 植木等"], ["name", "植木等"], ["display_name", "植木等"]]
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "d61a3c58f4333aa4fc54fdd771a3123d81e8e76336990cfb7789f3669ef150d1",
+ "pubkey": "6b6e19ce47a917cbe13a67eeb4053a9b301e78ec991413e7554953088ed62d3b",
+ "created_at": 1765545315,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg\",\"banner\":\"https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg\",\"name\":\"ぺぇ🐇\",\"display_name\":\"ぺぇ🐇\",\"lud16\":\"remotebass85@walletofsatoshi.com\",\"username\":\"petan\",\"displayName\":\"ぺぇ🐇\",\"website\":\"https://piku.page/@petan\",\"about\":\"インターネット要介護5/他力本願寺の住職/怠惰の煮凝り\",\"nip05valid\":true,\"birthday\":{\"month\":8,\"day\":25}}",
+ "sig": "59bf7bdcae8a995fe11f9f3fc12db283495c8d4bfde0db864959f30cd85a8c821f7a5c7d0a229c20abccdc9138d9d77eeefe9df67e29d47b3361fd9504c19769",
+ "tags": [["alt", "User profile for ぺぇ🐇"], ["name", "ぺぇ🐇"], ["display_name", "ぺぇ🐇"], ["picture", "https://image.nostr.build/0a96aa909d8575f20c6a20c96bdb7306f6b0a2c959972d4380bc7fbe67054102.jpg"], ["banner", "https://image.nostr.build/2e696c011c30e13836e6c21e1d8dbe0bb57cfaab82eb9a3e632ea6667ceb819a.jpg"], ["website", "https://piku.page/@petan"], ["about", "インターネット要介護5/他力本願寺の住職/怠惰の煮凝り"], ["lud16", "remotebass85@walletofsatoshi.com"]]
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "c88c56af6ab600bdc7f2896db31417c999ee8dc8f5f1f675883533839dff06be",
+ "pubkey": "caef2482c04bb9abc3ac6fcdd27347e092a63dc3724171056182567460cb54c3",
+ "created_at": 1765537309,
+ "kind": 0,
+ "content": "{\"name\":\"WILLPOWER\",\"nip05\":\"willpower@nostrplebs.com\",\"about\":\"WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia.\",\"lud16\":\"invitedveil07@walletofsatoshi.com\",\"display_name\":\"WILLPOWER\",\"picture\":\"https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg\",\"banner\":\"https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg\",\"website\":\"https://willpowerstudios.com\"}",
+ "sig": "b60a7f6220cf18f6b560cb404dffa058f7e69a2c336ed2787b73ea2f247da9c6ff953d4fbbfa1dd9a7287098f7587249fe294bb8a7fcd0653b7f94a938aa3d47",
+ "tags": [["alt", "User profile for WILLPOWER"], ["name", "WILLPOWER"], ["display_name", "WILLPOWER"], ["picture", "https://blossom.primal.net/0aaf70e7197b2116a87adf479eca6a0a316ff9558c83ba4a1ead6af382b11ae3.jpg"], ["banner", "https://image.nostr.build/ae2856328a00800d6f506bc8b27dd4be26d7b6e750ef05b499725d83a4c97829.jpg"], ["website", "https://willpowerstudios.com"], ["about", "WILLPOWER is a New Media Artist, Performer & Spiritual Creative Technologist using Light, Sound and other Invisible Forces to transcend the simulatrix... creating the nUtopia."], ["nip05", "willpower@nostrplebs.com"], ["lud16", "invitedveil07@walletofsatoshi.com"]]
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "4aba7be10e4f70194abd1a0c9c549e0eefd7f4399373770fab8583c9c3543207",
+ "pubkey": "307d82b86916ced32850474a17dc4a061cb8074e316e10571459f5204b849fee",
+ "created_at": 1765519068,
+ "kind": 0,
+ "content": "{\"name\":\"PlebTradeDude\",\"about\":\"Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech.\",\"display_name\":\"PlebTradeDude\",\"picture\":\"https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg\",\"banner\":\"https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg\",\"lud16\":\"redman22@shakepay.me\"}",
+ "sig": "3b7545d4f7cf2fa475d3e1505de54e9544b2d0515b8fa1b338a764ff5ca39af9627049a86ef94e455297fe074823b37f1115319c66582349b7f0e654c5aa76e4",
+ "tags": [["alt", "User profile for PlebTradeDude"], ["name", "PlebTradeDude"], ["display_name", "PlebTradeDude"], ["picture", "https://pfp.nostr.build/f96577cc9b7e62c0d992541a7829e8b38674a277b8c98c60d59f4e6cc3e2de47.jpg"], ["banner", "https://blossom.primal.net/ce34e32e491fbde62421facf17b465fdc08154ccdfb1e3734fad704ea5f81757.jpg"], ["about", "Just a dude saving in the hardest money available looking to provide value to the world around me. As well as awakening my fellow normies to freedom tech."], ["lud16", "redman22@shakepay.me"]]
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "9f383298a9e452dd1d558b2ff09bb40eedfc5452814e768d69705a7f20e1e939",
+ "pubkey": "05972259ec683e9843ce12fae6cedda06e65062cfb014799e2abd52b2932bae6",
+ "created_at": 1765504588,
+ "kind": 0,
+ "content": "{\"name\":\"M0053\",\"display_name\":\"M0053\",\"picture\":\"https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg\",\"about\":\"Alone.\",\"nip05\":\"M0053@mooose.xyz\",\"lud16\":\"moose@walletofsatoshi.com\",\"banner\":\"https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg\",\"lnurl\":\"lnurl1dp68gurn8ghj7ampd3kx2ar0veekzar0wd5xjtnrdakj7tnhv4kxctttdehhwm30d3h82unvwqhk6mm0wdjsdqt05l\"}",
+ "sig": "535e8b035209c27c642d63d415007de74ac117caf9779342940ad5817269dc433a074c39c065f053a019d442352826e1b797719c9bf09361446caff665b057a8",
+ "tags": [["client", "Phoenix", "31990:84de35e2584d2b144aae823c9ed0b0f3deda09648530b93d1a2a146d1dea9864:app-profile"], ["alt", "User profile for M0053"], ["name", "M0053"], ["display_name", "M0053"], ["picture", "https://image.nostr.build/0477bad0a5dfdc50a75cac9443d3cf5372cf9e0567db303ecdace7074b4e837a.jpg"], ["banner", "https://image.nostr.build/0ef2ad322d39ef3fcd6edf10285dd01580c4974077c23fd6b15caa2b7c24e1a8.jpg"], ["about", "Alone."], ["nip05", "M0053@mooose.xyz"], ["lud16", "moose@walletofsatoshi.com"]]
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "83b3eec8c5d39f19f119ad642e3d9da16bcc54d08b06cf4d040f8563ed184cb8",
+ "pubkey": "416ca193aa5448b8cca1f09642807765cc0ee299609f972df0614cfb8ea2f2b1",
+ "created_at": 1765489050,
+ "kind": 0,
+ "content": "{\"name\":\"Mina 👽💜\",\"picture\":\"https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png\",\"about\":\"Euch die Uhren, uns die Zeit.\\nEwige Blumenkraft!\\nAll hail discordia!\\nPraise \\\"Bob\\\"!\\n\\nChaotic neutral\\nLasombra antitribu\\n161\",\"nip05\":\"mina@zaps.lol\",\"lud16\":\"ghastlymass71@walletofsatoshi.com\",\"website\":\"https://jigglycrumb.space\",\"display_name\":\"Mina 👽💜\",\"nip05valid\":true,\"username\":\"jigglycrumb\",\"displayName\":\"Mina 👽💜🎁\",\"banner\":\"https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png\"}",
+ "sig": "300839812ffc3905e03c8cdbd32113dfab2560f37b9e0ddb61aa4f75125c832a0ee651daf9ebbea0ee41645ed5f4597a32b551e9693223efc2b4dc3b82bee95a",
+ "tags": [["alt", "User profile for Mina 👽💜"], ["name", "Mina 👽💜"], ["display_name", "Mina 👽💜"], ["picture", "https://pfp.nostr.build/7cb40ba87b457606543eae0d2f981abdaf93d14c94b8d722c90ba17b40be7d6a.png"], ["banner", "https://image.nostr.build/85e87d810cd659642ebad8c3fd28648949a426bc6806efd39343d251434d649d.png"], ["website", "https://jigglycrumb.space"], ["about", "Euch die Uhren, uns die Zeit.\nEwige Blumenkraft!\nAll hail discordia!\nPraise \"Bob\"!\n\nChaotic neutral\nLasombra antitribu\n161"], ["nip05", "mina@zaps.lol"], ["lud16", "ghastlymass71@walletofsatoshi.com"]]
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "0b700d537ce85e75b784f682effc69eb0de950da0be1b5c06b40bfa6a97173d4",
+ "pubkey": "24551bda30b45ce7f20bc8f53a587c120c50d41c0a12e89f724d790c09ab9425",
+ "created_at": 1765481148,
+ "kind": 0,
+ "content": "{\"name\":\"Lebrestein\",\"display_name\":\"Lebrestein\",\"picture\":\"https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg\",\"lud16\":\"demonicmine709@walletofsatoshi.com\",\"website\":\"https://airgo.bio/athos\",\"about\":\"Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe\"}",
+ "sig": "3af59cae0f060ed12dddcadb7ac757065a0268427641de60e78d7a6890a8091b009b0341847949365ce160602988be09e3dfa07e6581018ccd40a8bed5578e1d",
+ "tags": [["alt", "User profile for Lebrestein"], ["name", "Lebrestein"], ["display_name", "Lebrestein"], ["picture", "https://image.nostr.build/30d2e6ebdb363baf7d6e5e91e7d4ae1789f84b290c34ad8ac260d4044dd1a7f2.jpg"], ["lud16", "demonicmine709@walletofsatoshi.com"], ["website", "https://airgo.bio/athos"], ["about", "Estudante de biomedicina, comandante de avião. Skatista. Programador de sistema. Falo Português, Inglês, espanhol, francês, alemão, Esperanto, Ido, chinês, Koreano, japonês, russo, árabe"]]
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "940732eab27af0d1e1c9e6b2b296b48e281f52693ac4ae7659ba4e7cf9684480",
+ "pubkey": "685ac3b194f5c1c38246cb52a1d2a1a933c3c83ba970a5d9f163668dafeff5e7",
+ "created_at": 1765480815,
+ "kind": 0,
+ "content": "{\"name\":\"⚡BitDisturber⚡\",\"about\":\"Privacy, security and #Bitcoin for Joe 6-Pack.\\n\\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech\",\"picture\":\"https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp\",\"banner\":\"https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp\",\"displayName\":\"Bit Disturber\",\"display_name\":\"⚡BitDisturber⚡\"}",
+ "sig": "fd5b39ff3ea76ab92a4a829e8e58c11f6e987684d28f3365827c2b776b9c27c4023e87d1b5f02a7b0c4d8c2931d7f861814724af758ed16d1b3b9678dbbda052",
+ "tags": [["alt", "User profile for ⚡BitDisturber⚡"], ["name", "⚡BitDisturber⚡"], ["display_name", "⚡BitDisturber⚡"], ["picture", "https://coinos.io/api/public/b2cdb7ab5812a532f34c1f4573a91a40ee9f697ab05bbba731986dc72fc0cedf.webp"], ["banner", "https://coinos.io/api/public/1c16c2bad8c69812fbbd94ecd1a24e39eecab8f21d316e9fe86769fe1eee60bf.webp"], ["about", "Privacy, security and #Bitcoin for Joe 6-Pack.\n\n#Bitcoin #Nostr #Alberta #Decentralize #FreeSpeech"]]
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "35fb486dddac8863ca6fb53b2174f80a0bfee8a53e936f7fd8ac30d644fb42b6",
+ "pubkey": "e9aa50decff01f2cec1ec2b2e0b34332cf9c92cafdac5a7cc0881a6d26b59854",
+ "created_at": 1765472646,
+ "kind": 0,
+ "content": "{\n\t\"name\":\t\"Lord Rayleigh\",\n\t\"about\":\t\"I Rayleigh your events. In a previous life, I was a Nobel Prize winning Physicist, and I discovered argon. Now I work for Laan Tungir, and I help protect the speech of everyone in his WoT.\",\n\t\"picture\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/2/28/John_William_Strutt.jpg/500px-John_William_Strutt.jpg\",\n\t\"banner\":\t\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Argon_discharge_tube.jpg/1024px-Argon_discharge_tube.jpg\",\n\t\"nip05\":\t\"lordrayleigh@laantungir.net\"\n}",
+ "sig": "98ca83ac732978f270d522cbac1cde3b9976248687fe29ec3f7f8eaf12d8d9bf59573ef55bd66d4bc54836ca04e367a72c7d79eef420405d7bdeefbea79f01b6",
+ "tags": []
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "6946a7cb9ea07c7a9a703c275a60cdbdf6a2213e4b4a562b30324a1708e5d09d",
+ "pubkey": "fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe",
+ "created_at": 1765472491,
+ "kind": 0,
+ "content": "{\"name\":\"Bearetta 🐻❄️🇨🇿\",\"display_name\":\"Bearetta 🐻❄️🇨🇿\",\"picture\":\"https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4\",\"banner\":\"https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4\",\"website\":\"https://odysee.com/@Bearetta\",\"about\":\"#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\\n\\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\\n\\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav\",\"nip05\":\"Bearetta@Bitpunk.fm\",\"lud16\":\"taintedsunday44@walletofsatoshi.com\",\"pubkey\":\"fc72ae4bcd1414ad43c02f1692a2fbf9d31de19e551576e8b3ba142d2b816dbe\",\"is_deleted\":false,\"pronouns\":\"GM PV GFY\"}",
+ "sig": "1d67e2577f9e5f69dd55b494f0a101576bbe3125751e27772995273bb16d5514e1b13ccd4916ba5154df07f88c89e1d2ae1be54de1682b935ab8b7f8a9e4e85f",
+ "tags": [["alt", "User profile for Bearetta 🐻❄️🇨🇿"], ["name", "Bearetta 🐻❄️🇨🇿"], ["display_name", "Bearetta 🐻❄️🇨🇿"], ["picture", "https://video.nostr.build/14c159a8aeaa2632ed5fa67847bda645ee5ba372eb06fd2272a6a349bd4e081d.mp4"], ["banner", "https://video.nostr.build/04b4b76c44c45d00ee0e85e5f0019db176eaec62015ddaf41d213dfd8e2e2c52.mp4"], ["website", "https://odysee.com/@Bearetta"], ["about", "#czechstr #praha Rock-'n'-roll tradwife of another Nostrich, witch, bear momma leading her cubs towards freedom.\nProud part of czech #bitcoin group #jednadvacet 🧡 Blues/rock/jazz singer and pianist in few Prague bands.\n\nI do not support religions of any kind, Bitcoin preaching included. Clear signal, no noise. Shitposting is life tho.😈\n\nnostr:nevent1qqsye3xxmypdvtvxtl3vk39sp5hvt2mg3zxn8kekmcm4w3hhea6j0ygpzpmhxue69uhkummnw3ezumt0d5hsyg8uw2hyhng5zjk58sp0z6f297le6vw7r8j4z4mw3va6zskjhqtdhcpsgqqqqqqshgnjav"], ["nip05", "Bearetta@Bitpunk.fm"], ["lud16", "taintedsunday44@walletofsatoshi.com"], ["pronouns", "GM PV GFY"]]
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "25ad5342d15e65e7ccea57bb7b43a5e4bf8553e915585281059ee309ac020f02",
+ "pubkey": "169877de7de9fb77a5a52032978e637f97d88691b8536b8ae5db3b83bf2487ce",
+ "created_at": 1765471094,
+ "kind": 0,
+ "content": "{\"name\":\"InfoBot\",\"display_name\":\"InfoBot\"}",
+ "sig": "4b68866e7b9318fae5808aa1e50d88fd10437b2e2fd6179422800dbfe767d40e6b6a6988b10e4ed48f6b51d39d93ea34705c9cf7178a85457d1ad7d487442331",
+ "tags": []
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "b5dea6abc747dcff5128bbdd4ffc634408cb79f6392b55d3c1edb234803fcc1c",
+ "pubkey": "43c87a37802b6baa95b574b117e89197486cebf5eca453212549bc1a8e1264d4",
+ "created_at": 1765469382,
+ "kind": 0,
+ "content": "{\"name\":\"Noor\",\"username\":\"Op\",\"display_name\":\"Noor\",\"displayName\":\"Op🏴☠️🚬\",\"about\":\"Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ\",\"picture\":\"https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg\",\"banner\":\"https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg\"}",
+ "sig": "dc69bf5706e67b86098902e34c110c1c8fbb8ffa3900c5ad5db347099f6639810114b5f920bfd5306d0f2f95b5ddb80d01aecac0034b9c8c89a29f37d1d53d5e",
+ "tags": [["alt", "User profile for Noor"], ["name", "Noor"], ["display_name", "Noor"], ["picture", "https://image.nostr.build/156683b2779d16bd81271120ff93fbfb509806da4acae0dd7f24c7cd0a6e7db6.jpg"], ["banner", "https://image.nostr.build/08772976a6492bde053f5ce8a247327a38607943d8f88ccf2185e9fa9ad06de0.jpg"], ["about", "Lisp Netrunner ▽ e/acc 🏴☠️ || 1Samuel8:1-22 Accept No King Among Men || ◯ ✝ᵗʰᵉ ᵃⁿᵒⁱⁿᵗᵉᵈ ᵒⁿᵉˢ"]]
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "c0691fd655c8ac3926f714dd19668b08bb41f18be56019ca7bb59331d81b3d95",
+ "pubkey": "bfde225283301cdf766c496772ee1e3d864ce6a2b262a9a5c8fa31446c7b8dc2",
+ "created_at": 1765456232,
+ "kind": 0,
+ "content": "{\"name\":\"Thursday 5∞\",\"nip05\":\"saintalgorithm@nostrplebs.com\",\"display_name\":\"Thursday 5∞\",\"picture\":\"https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg\",\"banner\":\"https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg\",\"lud16\":\"stormyexample90@walletofsatoshi.com\",\"about\":\"⭕\",\"displayName\":\"Thursday 5∞\"}",
+ "sig": "a450c8a0a1002e0d63552af121b75307ce9a7f3a83408f151fb2e7d13e84fce5cee09a9aafe6164fcdd03f575638dcba9a82ea8ad09ef1ee7edae64cf8937ee2",
+ "tags": [["alt", "User profile for Thursday 5∞"], ["name", "Thursday 5∞"], ["display_name", "Thursday 5∞"], ["picture", "https://image.nostr.build/1e0cc6c09781396c08e84da2075537e2218c047c61e315ca058441efa5e875ef.jpg"], ["banner", "https://image.nostr.build/f495a5470207f122bd82512793e86f026508e5badf4b1b72f875e825c274f149.jpg"], ["about", "⭕"], ["nip05", "saintalgorithm@nostrplebs.com"], ["lud16", "stormyexample90@walletofsatoshi.com"]]
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "9ca29dac37ce0fd5104d1e12827d0f882a09a664e291d6920a8d088612a675fe",
+ "pubkey": "b15f78e4622dfcb3e2ff4a30e38a98ad5ed519540f00f2488f138c90e1b0965b",
+ "created_at": 1765455054,
+ "kind": 0,
+ "content": "{\"name\":\"Cajo\",\"nip05\":\"cajoca@nostrcheck.me\",\"about\":\"Half a century kid 😎\\n\\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)\",\"lud16\":\"snugpanda79@walletofsatoshi.com\",\"display_name\":\"Cajo\",\"picture\":\"https://m.primal.net/KJLR.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}",
+ "sig": "f1000de394d2cdd21e6f6f6a75149d0a944b621b5364114b2a9969dae606ff406815f7e5ff907c95fcf04a6575a6f3778c590f8c609a77acb74f3847ceecd820",
+ "tags": [["alt", "User profile for Cajo"], ["name", "Cajo"], ["display_name", "Cajo"], ["picture", "https://m.primal.net/KJLR.jpg"], ["banner", "https://m.primal.net/HQTd.jpg"], ["about", "Half a century kid 😎\n\nSupplying guidelines on improving Windows/Linux/Mac machines and their email/browser/network features (particularly Privacy related)"], ["nip05", "cajoca@nostrcheck.me"], ["lud16", "snugpanda79@walletofsatoshi.com"]]
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "b16b3687e4102e0151fa6cb25227e4a963d3102a763280f68a67ddabf1ec70fe",
+ "pubkey": "3852e1794ee4a426aa25d77b178ca2c48e9af6d9de7d1f7a69bd20dae2ae5037",
+ "created_at": 1765434982,
+ "kind": 0,
+ "content": "{\"name\":\"cinta\",\"about\":\"bring news from Indonesia \\nhttps://nostr.build/\",\"lud16\":\"paddedwolf63@walletofsatoshi.com\",\"display_name\":\"cinta\",\"picture\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\",\"banner\":\"https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png\"}",
+ "sig": "f0ba608b3f771df1ac39634061dd0a5aa5834f102be45af94c6e29abbd183ad3936d8d2b5b76b22b566404f7c22ddeee1c6005d8260600f523f9b3b5f955aa40",
+ "tags": [["alt", "User profile for cinta"], ["name", "cinta"], ["display_name", "cinta"], ["picture", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["banner", "https://blossom.primal.net/758e9c16d33b245fb81b5ac0842b01733f08f9d6b026bf4d9bab3b8dadf260ec.png"], ["about", "bring news from Indonesia \nhttps://nostr.build/"], ["lud16", "paddedwolf63@walletofsatoshi.com"]]
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "b8806a1520ecb810cfb9b74c0a64c32ed2eaf5f9ac063e3be72edd75601156a4",
+ "pubkey": "b57d921e26f0f2f7e46b9c2dc8b56145951d13c66e75f210a5bb535918f34db5",
+ "created_at": 1765429454,
+ "kind": 0,
+ "content": "{\"name\":\"🔞FantasyXXX🔞\",\"nip05\":\"fantasyxxx@iris.to\",\"about\":\"🔞 Pull Up A Chair, Choose Your Video, Pull Your Cock/Pussy Out & Enjoy ...\\nJoin FantasyXXX to enjoy exclusive #porn full-length #videos with your favorite Porn Stars, MILF's, BBC & many more XXX content 💋😍👄🫦 #NSFW\",\"lud16\":\"bristlydimple78@walletofsatoshi.com\",\"display_name\":\"🔞FantasyXXX🔞\",\"picture\":\"https://image.nostr.build/3fcc6936c0d6a741bb1297eec0039ebcf4111c950d9efd2ee7def7267152d6d8.jpg\",\"banner\":\"https://blossom.primal.net/407324a981c3f809914451d19bbbfeaa4826af43682fc06c23e16ccbc8ddab01.jpg\",\"website\":\"https://dsvplay.com/f/vgx1yqbk0x\"}",
+ "sig": "bd0a15549395eefb4172279834c05b0530554e269a77104fcc0af8002e14c2648f64465fb4798b01b013aece9b57c74719279d46b1cbc6f54100685d36469460",
+ "tags": []
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "8a97413c98a04d911364ea9fc5138b6e27142c94b5d1ff47e3c6929bd31a44dd",
+ "pubkey": "0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc",
+ "created_at": 1765418741,
+ "kind": 0,
+ "content": "{\"name\":\"arfonzo\",\"banner\":\"https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif\",\"picture\":\"https://m.primal.net/HPhq.gif\",\"lud16\":\"arf@rizful.com\",\"nip05\":\"arfonzo@nostriches.net\",\"about\":\"Nerding, horticulture & humble servant of cats. 🐈⬛🐈\\n\\n⚡ I run the relay: wss://nostr.superfriends.online\",\"kind\":0,\"display_name\":\"arfonzo\",\"pubkey\":\"0ab50b198824f4ed986f4f497f6169f0d903122bcaa14bcb11cecd3b922522bc\",\"username\":\"arfonzo\",\"displayName\":\"arfonzo\",\"npub\":\"npub1p26skxvgyn6wmxr0fayh7ctf7rvsxy3te2s5hjc3emxnhy39y27qtc60yv\",\"created_at\":1696953006,\"lnurl\":\"lnurl1dp68gurn8ghj7mrw9e6xjurn9uh8wetvdskkkmn0wahz7mrww4excup0v9exvmmw0fhs8hjker\"}",
+ "sig": "aa2aeaabf0454fc3cf49e489cdf1847f7e7898c3b5f297e65a253278c92a4c74a1c63cb80059151b96d1fcdbe93b91792074c10673034ad66573e5b58fa03fc3",
+ "tags": [["alt", "User profile for arfonzo"], ["name", "arfonzo"], ["display_name", "arfonzo"], ["picture", "https://m.primal.net/HPhq.gif"], ["banner", "https://nostr.build/i/nostr.build_8cd2f46aa31eb703ff77431804e8baa57a121bc9c83eb711136af1fa28889849.gif"], ["about", "Nerding, horticulture & humble servant of cats. 🐈⬛🐈\n\n⚡ I run the relay: wss://nostr.superfriends.online"], ["nip05", "arfonzo@nostriches.net"], ["lud16", "arf@rizful.com"]]
+ }]
+[16:40:33.772] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "8170b04e441979d0b0b694bbe8969ea98fe11a8017dbb0f4c2148ba7dd1e86a4",
+ "pubkey": "13bc95d921c8b6b26cf35494964daf86f9312fe50924483d266827979d80897d",
+ "created_at": 1765408802,
+ "kind": 0,
+ "content": "{\"name\":\"Rich Nost\",\"display_name\":\"Rich Nost\",\"picture\":\"https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg\",\"banner\":\"https://v.nostr.build/78K42MSDwXjW0cdS.mp4\",\"nip05\":\"richnost@nostrplebs.com\",\"username\":\"richnost\",\"displayName\":\"Rich Nost\",\"pronouns\":\"vi/vim\",\"lud16\":\"intelligenthedgehog71@zeuspay.com\",\"about\":\"Bitcoin hedge wizard. Do not consult me unless as a last resort.\"}",
+ "sig": "a82dd7498a367b5161d2342767cd3b98b79eca68217e5e763618572c548f38ded4fdcf0ea9a3353593b73ebd86a68bcf53f5afc1b469cd0e266eac44ef6c401e",
+ "tags": [["alt", "User profile for Rich Nost"], ["name", "Rich Nost"], ["display_name", "Rich Nost"], ["picture", "https://image.nostr.build/f0f5ed87a30185b1c8ba7d7e07e7c875970b5652208e35b0f4703774bfcddb7d.jpg"], ["banner", "https://v.nostr.build/78K42MSDwXjW0cdS.mp4"], ["pronouns", "vi/vim"], ["about", "Bitcoin hedge wizard. Do not consult me unless as a last resort."], ["nip05", "richnost@nostrplebs.com"], ["lud16", "intelligenthedgehog71@zeuspay.com"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "86a8902e683aea3498f811197602cbc7d1385b0f4c9bee902fb42019b7347aa0",
+ "pubkey": "d9c2ec9765485f7f39a1b59c4ef7578879d2d17908364e1031129cc7b72f692d",
+ "created_at": 1765403712,
+ "kind": 0,
+ "content": "{\"name\":\"Flavio\",\"display_name\":\"Flavio\",\"lud16\":\"npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash\",\"picture\":\"https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg\",\"banner\":\"https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg\",\"nip05\":\"flavio@nsec.app\"}",
+ "sig": "30238e6b1e4391899a441b4397745e6f60f3ffb885ff40290788ceca17058a57be7696deb24a5541d719aa5ba3fc986ec73e8eda2fe09212e2d5ec593126437d",
+ "tags": [["alt", "User profile for Flavio"], ["name", "Flavio"], ["display_name", "Flavio"], ["lud16", "npub1m8pwe9m9fp0h7wdpkkwyaa6h3pua95tepqmyuyp3z2wv0de0dykspnhldc@npub.cash"], ["picture", "https://image.nostr.build/b768f7ec15e77d5caef4e6f67e3a993e35d9b207181fb682edcd0e7a34492821.jpg"], ["banner", "https://image.nostr.build/9b8da5afa0c804647722281e3a7dff47e12f3898c984bf5ab3142896fb1b9d19.jpg"], ["nip05", "flavio@nsec.app"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "5bf417a59a531dab0f892fda43198398c3243d70e16f9195b4389b53226d8df7",
+ "pubkey": "794833e538ff2acb9149a736cf02d30c6ae0022c76d2dd55b57e540dc2f9c731",
+ "created_at": 1765398900,
+ "kind": 0,
+ "content": "{\"name\":\"Madrid\",\"display_name\":\"Madrid\",\"lud16\":\"npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash\",\"picture\":\"https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg\",\"banner\":\"https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg\",\"nip05\":\"madrid@nsec.app\"}",
+ "sig": "8bbecd8686e1e749029ae75b631803e5c5f5ea5c8b06006463cb8f845e092563abd493ab458b6d4746ff03624e5a57d50fd154325f6a6110dec149dc2ef58b19",
+ "tags": [["alt", "User profile for Madrid"], ["name", "Madrid"], ["display_name", "Madrid"], ["lud16", "npub109yr8efclu4vhy2f5umv7qknp34wqq3vwmfd64d40e2qmshecucs6qge6l@npub.cash"], ["picture", "https://image.nostr.build/395857790736c78e36090c852ef08aeb14bb38f2a031478bcf7014a5bbe08716.jpg"], ["banner", "https://image.nostr.build/c38d3a79345e4dc24083aa884a5c39dbcce91d5b6c9314f3fa9ac88495dcd45a.jpg"], ["nip05", "madrid@nsec.app"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "25946b20481dca508ca530b3849ac4a2eaf2339f22681056327c0c260d031de1",
+ "pubkey": "67c51461656869505daea82f5c1c0b53669660094b7faab4038043c158672261",
+ "created_at": 1765394281,
+ "kind": 0,
+ "content": "{\"name\":\"Heiman Architectonics\",\"display_name\":\"Heiman Architectonics\",\"nip05\":\"heimanmetar@siamstr.com\",\"website\":\"https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4\",\"image\":\"https://m.primal.net/MXpe.jpg\",\"picture\":\"https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg\",\"banner\":\"https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png\",\"about\":\"🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \\n🔥 Built from axioms \\n⚡ ESTP, Di(C), E3 \\n⊢ {Set, Logic, Peano}\",\"lud16\":\"poorsquid41@walletofsatoshi.com\"}",
+ "sig": "f95d275f2b04f71c777c618f83ad4e45f753ac053bb3470a9e32c23bfd69c37a58b982e6c20aac693c8e2ecdb0dd265a2444f810bbaca03a6c5388bca12c7652",
+ "tags": [["alt", "User profile for Heiman Architectonics"], ["name", "Heiman Architectonics"], ["display_name", "Heiman Architectonics"], ["picture", "https://image.nostr.build/318c7a330736d9b3c970be43a5fbe8ffb915f87658069ef71d0f24433774433e.jpg"], ["banner", "https://image.nostr.build/d2b36dd83658348d0e15d9040d3df4d44e0818bf7776474c819947af5bc5edd2.png"], ["website", "https://crimson-erica-018.notion.site/Heiman-Architectonics-1fe1b746e64d8017845ff372167c2b7c?pvs=4"], ["about", "🧠 Architect of Learning & Life Systems | 🏗️ Creator of AURI \n🔥 Built from axioms \n⚡ ESTP, Di(C), E3 \n⊢ {Set, Logic, Peano}"], ["nip05", "heimanmetar@siamstr.com"], ["lud16", "poorsquid41@walletofsatoshi.com"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "b7b8df426ffce68a80d769798c44a5884c170fe19c2fa01187dec4170030ec82",
+ "pubkey": "672b3853bd325c35acac8aaa0f078d2d62ad9c5f16a7c59e709738765b46edf1",
+ "created_at": 1765391042,
+ "kind": 0,
+ "content": "{\"name\":\"Ginxsom Blossom Server\",\"about\":\"A Nostr-enabled Blossom media server\",\"picture\":\"\"}",
+ "sig": "f6bd64820c6911dd3282b90b2596cc10bc4db709e73b2d0465fcffdcabac32ca1bfd96a717c0ca17cafc2720ac2b4b3c44bf8bba7f3e2b1a28fe59d46ba0259f",
+ "tags": []
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "4af511ecc63234b415c4ca156b67c5b782a65b2ddfb4f6955ec5b1c21a2f9a9b",
+ "pubkey": "b6b5f42a79961477a4376865dbddba963d337596880c6194edcf30debb0c2482",
+ "created_at": 1765390890,
+ "kind": 0,
+ "content": "{\"nip05\":\"shredder@zaps.lol\",\"display_name\":\"shredder\",\"banner\":\"https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg\",\"picture\":\"https://m.primal.net/Ktfd.jpg\",\"lud16\":\"shredder@rizful.com\",\"name\":\"shredder\"}",
+ "sig": "f594edc02f33dacba6f0f6b5ba0de8cc672dbb531c4fd78d8dea7fda95eb5e54e78d79d93c164f85e1fd11f59b9636f39d2c7fc899820b077c4d3cebc37b2156",
+ "tags": [["alt", "User profile for shredder"], ["name", "shredder"], ["display_name", "shredder"], ["picture", "https://m.primal.net/Ktfd.jpg"], ["banner", "https://image.nostr.build/80740710970910f6be5d7b26e582cd400cf1f13ea6dc094ac45c425f0cded7ec.jpg"], ["nip05", "shredder@zaps.lol"], ["lud16", "shredder@rizful.com"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "21aff3268620519eb26708beb7a9746ff3ea690400b38f5314a5fb38891e1801",
+ "pubkey": "7dc1677112f05eaf49547806543b1c006ce3257278e52b1c9abff63270ed704f",
+ "created_at": 1765371231,
+ "kind": 0,
+ "content": "{\"name\":\"逆砂 参角/💊/☁\",\"picture\":\"https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg\",\"nip05\":\"invertedtriangle358.github.io\",\"display_name\":\"逆砂 参角/💊/☁\",\"website\":\"invertedtriangle358.github.io\",\"lightningAddress\":\"invertedtriangle@walletofsatoshi.com\",\"lud16\":\"invertedtriangle@walletofsatoshi.com\",\"birthday\":{\"month\":3,\"day\":14},\"about\":\"さかさ さんかくです。\\n\\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\\n\\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7\",\"banner\":\"https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true\"}",
+ "sig": "746b6a40eb0e4f3c5e2f35d5bbcb32b0f6a979cac94462db7eebd5f06af6af8cca58ffb41aa0f6c19e7717dbf38c95cfbb6c593587e4ac44762ce9acc01099a9",
+ "tags": [["alt", "User profile for 逆砂 参角/💊/☁"], ["name", "逆砂 参角/💊/☁"], ["display_name", "逆砂 参角/💊/☁"], ["picture", "https://raw.githubusercontent.com/invertedtriangle358/images/refs/heads/main/Sankaku/Sankaku_icon2026(light-size).jpg"], ["banner", "https://github.com/invertedtriangle358/images/blob/main/Sankaku/Nostrasia2025%E7%94%A8%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%892.1.png?raw=true"], ["website", "invertedtriangle358.github.io"], ["about", "さかさ さんかくです。\n\n縦書きクライアント 野雨-Nosame-: https://invertedtriangle358.github.io/Nosame\n\nnostr:nevent1qqswrh9snpdzult8eaqhwsvrmhr43yxatxg3g0qvl5nq9xr5tjqy38qppemhxue69uhhjctzw5hx6ef0qgs8mst8wyf0qh40f928spj58vwqqm8ry4e83eftrjdtla3jwrkhqncrqsqqqqqpsxekl7"], ["nip05", "invertedtriangle358.github.io"], ["lud16", "invertedtriangle@walletofsatoshi.com"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "4c819052df95b72002981b2ea63f497f7ffbaa15a161884344ba7896e95276d1",
+ "pubkey": "f1f9b0996d4ff1bf75e79e4cc8577c89eb633e68415c7faf74cf17a07bf80bd8",
+ "created_at": 1765364619,
+ "kind": 0,
+ "content": "{\"banner\":\"https://nostr.build/i/4437.png\",\"website\":\"https://uselessshit.co\",\"reactions\":true,\"nip05\":\"_@thisbitcointhing.com\",\"picture\":\"https://uselessshit.co/images/avatar.gif\",\"lud16\":\"furiouschina21@walletofsatoshi.com\",\"display_name\":\"pitiunited\",\"name\":\"pitiunited\"}",
+ "sig": "6cb33e81fd441de03492873b612c3929d8e9cc184f90c900fb1d5fceff4e545ba59698f22292dd7d6facc0578f3ff24ece6cfe18b8ea7aedbc11e8433258758d",
+ "tags": [["alt", "User profile for pitiunited"], ["name", "pitiunited"], ["display_name", "pitiunited"], ["picture", "https://uselessshit.co/images/avatar.gif"], ["banner", "https://nostr.build/i/4437.png"], ["website", "https://uselessshit.co"], ["nip05", "_@thisbitcointhing.com"], ["lud16", "furiouschina21@walletofsatoshi.com"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "2aa7ddf1f05f6c8f276fe583564f86fd877566598b0aaf79cdd6370fbba241ce",
+ "pubkey": "daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6",
+ "created_at": 1765335696,
+ "kind": 0,
+ "content": "{\"display_name\":\"Einundzwanzig Portal\",\"name\":\"Einundzwanzig Portal\",\"picture\":\"https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png\",\"about\":\"Willkommen auf dem Portal der Einundzwanzig Community.\",\"banner\":\"https://i.imgur.com/IS9gEhQ.jpg\",\"website\":\"https://portal.einundzwanzig.space\",\"nip05\":\"einundzwanzigportal@nip05.codingarena.top\",\"nip05valid\":false,\"pubkey\":\"daf83d92768b5d0005373f83e30d4203c0b747c170449e02fea611a0da125ee6\",\"displayName\":\"Einundzwanzig Portal\"}",
+ "sig": "769e855fe6b3580a4fcb5a42975c1a0b7716d21028fa809c57919a31978b7d04b44dc74f535bb98d38ba1288afe0b5f4c96c5630fa4a4d66ba18e7374882d47d",
+ "tags": [["alt", "User profile for Einundzwanzig Portal"], ["name", "Einundzwanzig Portal"], ["display_name", "Einundzwanzig Portal"], ["picture", "https://nostr.build/i/nostr.build_3e0f67c30d1540f42308ad8eaa2a8aa66857eb04d8122894e37095c70dd547f7.png"], ["banner", "https://i.imgur.com/IS9gEhQ.jpg"], ["website", "https://portal.einundzwanzig.space"], ["about", "Willkommen auf dem Portal der Einundzwanzig Community."], ["nip05", "einundzwanzigportal@nip05.codingarena.top"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "852cdbb1404081492a69c929401c76e32379c98f3dc3345a39bea81d35efa892",
+ "pubkey": "686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b",
+ "created_at": 1765328334,
+ "kind": 0,
+ "content": "{\"name\":\"หมู หมู\",\"display_name\":\"หมู หมู\",\"picture\":\"https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg\",\"banner\":\"https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg\",\"about\":\"อย่างสีเหลือง\",\"lud16\":\"hearmooooo@walletofsatoshi.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H\",\"pubkey\":\"686a8c459873abf9a9038ba0170ab3bf21d1954d13b9454f1cc788779ff4627b\",\"is_deleted\":false}",
+ "sig": "473d91b033cbfc2956d0d44a6f9ecb3b762694486c2807ca28fe56a5f98ee06910fff5ae663abc0c04fd9070e15cfdadb561cf9312c7810af3d224e387b76dd4",
+ "tags": [["alt", "User profile for หมู หมู"], ["name", "หมู หมู"], ["display_name", "หมู หมู"], ["picture", "https://image.nostr.build/4b9d4e5d655f65c2209a52fd7a14490de72f4f9e257340358ef74ccd4c13e94e.jpg"], ["banner", "https://image.nostr.build/7d0a4ddc846e45d4eac03a83bacfaf70962e0aad4f4ab125038b4fe7eb26d49d.jpg"], ["about", "อย่างสีเหลือง"], ["lud16", "hearmooooo@walletofsatoshi.com"], ["lud06", "LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHKSETPWFKK7MM0DAHSLW460H"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "2232b1793e9a536404d10be868014195b2c93e86d4d72338d141034b195d47bb",
+ "pubkey": "552ba911d5905344a39b89c029bc8620056b73aebe4a894ec1e7dc85f5be71d0",
+ "created_at": 1765326888,
+ "kind": 0,
+ "content": "{\"name\":\"poolrooms\",\"display_name\":\"poolrooms\",\"picture\":\"https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg\",\"banner\":\"https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg\",\"about\":\"I'm just some guy\\n\\nXMR Tip Jar:\\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ\",\"website\":\"https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA\"}",
+ "sig": "6ef1a77ab0ec906c49aa57012fde64d969fad10b71ff493414beea8e60ca77834ebadebc0d47e87198ab59869317e802edc6bf3cf9f4763af470617e16892ebf",
+ "tags": [["alt", "User profile for poolrooms"], ["name", "poolrooms"], ["display_name", "poolrooms"], ["picture", "https://image.nostr.build/370eab717f2a79ef29c907badd4fb8c4fbd7e231984c380aac390a4060c3a01c.jpg"], ["banner", "https://image.nostr.build/8eeb3d2d7b4b531035537a894369b55cb2963cd684e2bfafac8c6bb7e42240b3.jpg"], ["about", "I'm just some guy\n\nXMR Tip Jar:\n82ewMBgQ5ZTFELENKSL27LDKV44i8DrF9Yrr3nqubmBFWmHZYSVebcN2Emgt3twtbBNsDms9PPWJr9ScH6VsjTYT2tusfdJ"], ["website", "https://smp9.simplex.im/a#quJ6V82MdFsO_41dkDqlNGJXsuKftGRDW847lku7LcA"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "fadf9fc8d43f406149c203375b0208896ed5b4aae282524e3858a5c95aee4617",
+ "pubkey": "3f11abb2e235da2d4dda5d6deb2f123173476a745a3ca56895a1d0f632a42f40",
+ "created_at": 1765290607,
+ "kind": 0,
+ "content": "{\"name\":\"set:// 𓁣 🏴 probably\",\"picture\":\"https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg\",\"about\":\"Resident of planet dyne.org co-founder of basspistol.com\\nHome is not a place, it's a public key. #choomScroll\\nOn nostr since Block 750'951\",\"nip05\":\"setto@basspistol.com\",\"banner\":\"https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp\",\"website\":\"https://setto.basspistol.com/linktree\",\"display_name\":\"set:// 𓁣 🏴 probably\",\"displayName\":\"set:// 𓁣 🏴 probably\",\"lud16\":\"setto@basspistol.com\",\"pronouns\":\"fabulous\"}",
+ "sig": "832814aa6521e0e14a615c9be2d7da7c6f4cce2ee86ef3b856af4e94118a7e5f5f982b04f0d58a87ade9fefd046f097c8c456ec6002da543379437c203234126",
+ "tags": [["alt", "User profile for set:// 𓁣 🏴 probably"], ["name", "set:// 𓁣 🏴 probably"], ["display_name", "set:// 𓁣 🏴 probably"], ["picture", "https://tortellino.basspistol.org/a9357f7a7c8746f6d39d3b9eb4fbb1c9c746c46e3ff2255d6f59b67f9decaf83.jpg"], ["banner", "https://tortellino.basspistol.org/8a6493fea10b19ff91ed63ff479a17b0e8511713ccae1b2e6c27c9f57c264fed.webp"], ["website", "https://setto.basspistol.com/linktree"], ["about", "Resident of planet dyne.org co-founder of basspistol.com\nHome is not a place, it's a public key. #choomScroll\nOn nostr since Block 750'951"], ["nip05", "setto@basspistol.com"], ["lud16", "setto@basspistol.com"], ["pronouns", "fabulous"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "4792e222446832b3c19a625b85caac598694e4bac9359dcf3c2088a8ba05f361",
+ "pubkey": "391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248",
+ "created_at": 1765288640,
+ "kind": 0,
+ "content": "{\"banner\":\"https://i.nostr.build/lLK6n.jpg\",\"website\":\"https://amboss.tech\",\"lud16\":\"jestopher@strike.me\",\"nip05\":\"Jestopher@Amboss.space\",\"picture\":\"https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg\",\"display_name\":\"Jestopher\",\"about\":\"Co-founder of Amboss Technologies, Inc.\\n\\\"Never before has greed tempted me to live a very simple life.\\\"\\nMostly #memes & #lightningnetwork thoughts\\nhttps://amboss.tech\",\"name\":\"Jestopher\",\"username\":\"Jestopher\",\"displayName\":\"Jestopher\"}",
+ "sig": "966b0c9133268804e4aaad7a4f6cacba0510d49d80104832bc98d6137f87dfcbe33a3ae1a47643ced313ed3bc8f2b9cd74ceda83e7719901e69e15a5511f2338",
+ "tags": [["alt", "User profile for Jestopher"], ["name", "Jestopher"], ["display_name", "Jestopher"], ["picture", "https://image.nostr.build/d456f26f9accf7bf8aee9638c463ff61d92d7a73272f9474464fb71aac46b967.jpg"], ["banner", "https://i.nostr.build/lLK6n.jpg"], ["website", "https://amboss.tech"], ["about", "Co-founder of Amboss Technologies, Inc.\n\"Never before has greed tempted me to live a very simple life.\"\nMostly #memes & #lightningnetwork thoughts\nhttps://amboss.tech"], ["nip05", "Jestopher@Amboss.space"], ["lud16", "jestopher@strike.me"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "14a30d81f9003756bd04ca3a3f3f41cbc5da1549e02f1c8d1ba83395a8b6edb3",
+ "pubkey": "cf7ad05f8e99de8eadbbfbd5ca1c0f9b75499bce07074966b277688ca5e1d726",
+ "created_at": 1765286942,
+ "kind": 0,
+ "content": "{\"name\":\"Eluc\",\"picture\":\"https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png\",\"about\":\"Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch\",\"nip05\":\"eluc@bitcoincoin.ch\",\"username\":\"eluc\",\"display_name\":\"Eluc\",\"displayName\":\"Eluc\",\"banner\":\"https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png\",\"website\":\"https://eluc.ch\",\"lud16\":\"eluc@ln.mtpelerin.com\",\"identities\":[{\"type\":\"github\",\"claim\":\"ElucGeek\",\"proof\":\"https://github.com/ElucGeek\"}],\"nip05valid\":true}",
+ "sig": "cc1c7b041e7219bd8298fb10f27921fddb1b8614282b8dafbdfd2b9ccf1cae5cdda02d316ccf88a8829925dbd3c594a5c14e3253fe275b299943acba91dfe0e0",
+ "tags": [["alt", "User profile for Eluc"], ["name", "Eluc"], ["display_name", "Eluc"], ["picture", "https://eluc.ch/wp-content/uploads/2021/12/Eluc-1UP-64x64-1.png"], ["banner", "https://eluc.ch/wp-content/uploads/2023/01/Smartphone-open-source-app-Yubikey-SD-Pokemon-card-Lego-gamer-1536x804.png"], ["website", "https://eluc.ch"], ["about", "Open minded Bitcoiner and blogger with a focus on UX, privacy and security. https://eluc.ch"], ["nip05", "eluc@bitcoincoin.ch"], ["lud16", "eluc@ln.mtpelerin.com"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "b1d3fd0e7b5711e7c814a2efbfe28304324c25a037ebd40ef39825f15bb60a1e",
+ "pubkey": "f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0",
+ "created_at": 1765281346,
+ "kind": 0,
+ "content": "{\"name\":\"🟠 isolabellart\",\"display_name\":\"🟠 isolabellart\",\"picture\":\"https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png\",\"banner\":\"https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png\",\"website\":\"https://isolabellart.it.com\",\"about\":\"I paint in oil.\\nInspired by time, silence, and light.\\nEach work is unique and for sale in Bitcoin.\\n→ https://isolabellart.it.com\\n\\nArt gallery: https://gallery.isolabellart.it.com\",\"nip05\":\"isolabellart@isolabellart.it.com\",\"lud16\":\"isolabellart@blitzwalletapp.com\",\"lud06\":\"LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z\",\"pubkey\":\"f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0\",\"is_deleted\":false}",
+ "sig": "5b4bba08ad18a8143a594a710d7b8f5c4b062a33283f68587a7fbf82c5187f1059628b79e5d0254b4f611f61ef48e22ebf9ae7d6ea89df18657536b0a79dfabd",
+ "tags": [["alt", "User profile for 🟠 isolabellart"], ["name", "🟠 isolabellart"], ["display_name", "🟠 isolabellart"], ["picture", "https://creatr.nostr.wine/creator/content/c9149a12-1852-4607-91c0-eedbfce6949b.png"], ["banner", "https://creatr.nostr.wine/creator/content/1f560d95-49b4-4cea-84ad-a3390f023026.png"], ["website", "https://isolabellart.it.com"], ["about", "I paint in oil.\nInspired by time, silence, and light.\nEach work is unique and for sale in Bitcoin.\n→ https://isolabellart.it.com\n\nArt gallery: https://gallery.isolabellart.it.com"], ["nip05", "isolabellart@isolabellart.it.com"], ["lud16", "isolabellart@blitzwalletapp.com"], ["lud06", "LNURL1DP68GURN8GHJ7EM9W3SKCCNE9E3K7MF09EMK2MRV944KUMMHDCHKCMN4WFK8QTMFWDHKCCTZV4KXCCTJWSGZJS8Z"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "fe848bd21725112e62a43298febbbabf5dca84fa23239d91041944e7dce1b2eb",
+ "pubkey": "fa54f754defeda38354e7514eda03254476a755fc2d8b29d7ed867addafffdb6",
+ "created_at": 1765281250,
+ "kind": 0,
+ "content": "{\"name\":\"artem\",\"display_name\":\"Mist3rArtem \",\"picture\":\"https://blossom.primal.net/2ff24d1a88e214c89fa460bf0f0c3cb905c1609e72cf8602a176c425e9a173d3.jpg\",\"banner\":\"https://blossom.primal.net/f2bcdf65218e6959454442d81400415a2b4017b8aaae7b425a74712cbd94af56.jpg\",\"website\":\"https://youtube.com/@mist3rartem?feature=shared60dc0f48de\"}",
+ "sig": "eb9ebaa63edbb24310b9cf37a8f1c776dbe9d913c7d800d7d3ca3d541fd116037674504a5716698999302660dd17a79927593556d5f4a5c82666143842e15ca3",
+ "tags": []
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "5079a923dcb0d86cf722d210ce7a52208196ec0c506d2a6a79ef8dad28d7a70f",
+ "pubkey": "fe5915e97c59b0672a80351bd2e4a89d1414c56a25e74eab9b2ebc9014a8403b",
+ "created_at": 1765277285,
+ "kind": 0,
+ "content": "{\"name\":\"Eros\",\"display_name\":\"Eros\",\"lud16\":\"npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash\",\"banner\":\"https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg\",\"picture\":\"https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg\",\"nip05\":\"eros@nsec.app\"}",
+ "sig": "0a288f0edd8980d2cf9b73a09df65065a7a98f1e37901576d84d4eb8060ffdabff20d0d083aa45fd4d8d92cf5e702b3a337e370dee5bb1998246a3b5ba76acca",
+ "tags": [["alt", "User profile for Eros"], ["name", "Eros"], ["display_name", "Eros"], ["lud16", "npub1lev3t6tutxcxw25qx5da9e9gn52pf3t2yhn5a2um967fq99ggqas00p4pk@npub.cash"], ["banner", "https://image.nostr.build/bc5895516167b989abfcedffccb3379666c36a23f2276cbe7061179be1d0e199.jpg"], ["picture", "https://image.nostr.build/32bd1aca3fa95f5f00fd82550c22e551083c805480429e8e2042b9c13ca901a2.jpg"], ["nip05", "eros@nsec.app"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "eb6fb7f1366d87d2592f1019f925b8dfc7b9686f58deb55cc9387a9832279746",
+ "pubkey": "19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829",
+ "created_at": 1765273609,
+ "kind": 0,
+ "content": "{\"npub\":\"19026aee3adf58f0633f81141155efabd44ae995b46c1b74523d017af0a31829\",\"display_name\":\"Dex\",\"name\":\"Dex\",\"picture\":\"https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg\",\"banner\":\"https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg\"}",
+ "sig": "819787250636c4ef6f60830d7b18a53cf212dfebf61264a2d8aa1dea8bf502e7ffafb80ba13cf87edae2bc89461828aa3c441563768a4b56f253bf7895f3f4dd",
+ "tags": [["alt", "User profile for Dex"], ["name", "Dex"], ["display_name", "Dex"], ["picture", "https://image.nostr.build/7a0c746fdbd389ee1390f0179fa8ccba9e50f50fb8efb6bfcf0284602a64b43c.jpg"], ["banner", "https://image.nostr.build/5608c05f97dbea538b1bd47ea4060eb3066a4d26c88553c3b0396223df1d8f0d.jpg"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "1c3c87dd049d00f3f5817b9fafa7993cb2842fd72296279e9aa7bfe98499fb32",
+ "pubkey": "fc30e76d9c46d1b77bc47f3cd2cdf60a6cab9405658d774196e5e15db7217c03",
+ "created_at": 1765251242,
+ "kind": 0,
+ "content": "{\"website\":\"http://www.bluebirdsunlimited.com/\",\"lud06\":\"\",\"picture\":\"https://blossom.primal.net/f66c1b5ca26181b3def8c1d1a44268b56ef6bdb8b494c4e2153b5f7749fe1202.png\",\"lud16\":\"BlueBirdsUnlimited@primal.net\",\"banner\":\"https://m.primal.net/NxJE.jpg\",\"nip05\":\"BlueBirdsUnlimited@primal.net\",\"name\":\"Infobot\",\"about\":\"Tesla\\nhttps://ts.la/clifford100624\\n\\nStarlink\\nhttps://starlink.com/residential?referral=RC-2686069-73331-69\\n\\nT-Mobile\\nhttps://referral.t-mobile.com/hzuztJE\\n\\nAptera Vehicle \\nhttps://aptera.us/reserve?referral_code=cHxsio8X\\n\\n\\nSolar Vehicle, Bird & Pet homes, Engineer, RN, MSTR & Aptera Investor, Landlord, Gardener, Self Employed, Bitcoin Miner\",\"display_name\":\"Infobot\"}",
+ "sig": "ad68a227b0904bd281bb942b1f990bc59688d5dd4e3de9d0bbe3f70802e5826eeba67cb6cdbe551dcdc0e9ff6841c69329cead02e7c650381a7b26165f5c511d",
+ "tags": []
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "cdb9919da0c3db1bdb62ac677d1b3a2c448a7c9f0b10874d8523b62e39de5cdf",
+ "pubkey": "659a74f6cfbc7c252c58d93452b9d9575e36c464aa6544c6375227c9166a6ed9",
+ "created_at": 1765246049,
+ "kind": 0,
+ "content": "{\"name\":\"Turkey\",\"display_name\":\"Turkey\",\"about\":\"World traveling Turkey 🦃 lover. \\n\\nGo see the world.\",\"picture\":\"https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg\",\"banner\":\"https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg\",\"nip05\":\"turkey@nostrplebs.com\",\"lud16\":\"turkey@minibits.cash\",\"created_at\":1728104455}",
+ "sig": "d986977dad7d0a8c231300747769f8d8454eb46ced54019fa326a8ced39c10b3f8fb9aa2dd5b542072cec9959327693c1dc8a75bb4adb36e526d686f671f632d",
+ "tags": [["alt", "User profile for Turkey"], ["name", "Turkey"], ["display_name", "Turkey"], ["picture", "https://blossom.primal.net/2595078c4aab968b4afb453248c8139f0f11caa94190f672bcd41b77741cde76.jpg"], ["banner", "https://image.nostr.build/9deccec082e5f74d7f5abaa1f32d6dc916bd7aaffc166b0d5d14061ec9447b08.jpg"], ["about", "World traveling Turkey 🦃 lover. \n\nGo see the world."], ["nip05", "turkey@nostrplebs.com"], ["lud16", "turkey@minibits.cash"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "ef91072ece70e176ef54a384e697e8632012f998bfff71279b8cb32a55104de1",
+ "pubkey": "04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b",
+ "created_at": 1765228947,
+ "kind": 0,
+ "content": "{\"name\":\"Surrealistic Menina\",\"about\":\"Cristalina aka Surrealistic Menina \\nPhotographer, Art, Music and Poetry Lover\\n✨️ Music is my Religion ✨️\\nLove to laugh and to make laugh 💕 \\nIndigo child\\nHigh Priestess\\nAvatar and banner, by ® Eric Brenner\",\"lud16\":\"cristalina@rizful.com\",\"display_name\":\"Surrealistic Menina\",\"picture\":\"https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif\",\"banner\":\"https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg\"}",
+ "sig": "b0ba9e636160c02f97b2ce613adbfdcffe013738659ef60d141864b8acebf932c18bf32446ce0904d6b169ca4cc2981a5d8eaf3fbe41fc0a20f4b90100011fec",
+ "tags": [["alt", "User profile for Surrealistic Menina"], ["name", "Surrealistic Menina"], ["display_name", "Surrealistic Menina"], ["picture", "https://blossom.primal.net/35a621eb6b562e1df4eb62b60cdc4ac041f93ddd0b326e6b78e119f9de5d1139.gif"], ["banner", "https://blossom.primal.net/772b23176cd440ac2d9347058828007702494e25137a78a35b7ecafd2eb865dd.jpg"], ["about", "Cristalina aka Surrealistic Menina \nPhotographer, Art, Music and Poetry Lover\n✨️ Music is my Religion ✨️\nLove to laugh and to make laugh 💕 \nIndigo child\nHigh Priestess\nAvatar and banner, by ® Eric Brenner"], ["lud16", "cristalina@rizful.com"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "dbc3140f1b21f15de31ad4413d1abde2214bcdeb2ed6edda23b970e15e6f0f38",
+ "pubkey": "4a916109ff33c5ecec755eb8d2e2f57d78b684b067a4a12b5301a42db0c26f86",
+ "created_at": 1765198661,
+ "kind": 0,
+ "content": "{\"name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"nip05\":\"kriptix2@iris.to\",\"about\":\"Cogito, ergo...\\n\\n#FREEPALESTINE 🇵🇸\\n\\nNon-Religious Discordian Psychonaut\\n\\nNode Runner\\n\\n**Posts Render Best on Amethyst**\",\"lud16\":\"heavyfield06@walletofsatoshi.com\",\"display_name\":\"🇰 🇷 🇾 🇵 🇹 🇮 🇽\",\"picture\":\"https://m.primal.net/PKDO.gif\",\"banner\":\"https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg\",\"website\":\"https://bitcoinknots.org/\"}",
+ "sig": "20935b133c3a92b81dd3263604547a80a70301b88b89bc852174384d87ea95810cc6df2258aa4834c0e85bb3225fd00e6d490d510d8dbe53384c59b014ed75ef",
+ "tags": [["alt", "User profile for 🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["display_name", "🇰 🇷 🇾 🇵 🇹 🇮 🇽"], ["picture", "https://m.primal.net/PKDO.gif"], ["banner", "https://blossom.primal.net/536c5ddd3cc3f82a7cc0a1563232f221b832d91b45b563cd81c1cc8ec1d13efd.jpg"], ["website", "https://bitcoinknots.org/"], ["about", "Cogito, ergo...\n\n#FREEPALESTINE 🇵🇸\n\nNon-Religious Discordian Psychonaut\n\nNode Runner\n\n**Posts Render Best on Amethyst**"], ["nip05", "kriptix2@iris.to"], ["lud16", "heavyfield06@walletofsatoshi.com"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "294cf90172199750508e055f00b52378d7d5a18ad632aba47b95c4bf2ea0b803",
+ "pubkey": "bb0174ae21a6cac1a0a9c8b4ac6ebfda56ce51605c315b1824970bc275f7239a",
+ "created_at": 1765197469,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg\",\"lud16\":\"Cyphermunkhouse@blink.sv\",\"website\":\"https://www.cyphermunkhouse.com\",\"name\":\"CYPHERMUNK HOUSE | LONDON\",\"about\":\"London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\\n\\n#NOSTR ONLY\\n\\n📅 Upcoming Events 📅\\n13 Dec - CMH in Bedford ⚽\\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\\n21 Dec - Christmas & Chill 🎄\\n\\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\\n\\nEST 835679\\n🐇🪩⚡️\",\"display_name\":\"CYPHERMUNK HOUSE | LONDON\",\"banner\":\"https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg\",\"nip05\":\"cyphermunkhouse@zaps.lol\"}",
+ "sig": "8d8c99c8d2088f490eb98d52454a538e36252102aa71632394a7c33528687c2effa3be4022364bab14b421e58fa3a1daa6192d26733b3d570e0cee6e5ffdb5af",
+ "tags": [["alt", "User profile for CYPHERMUNK HOUSE | LONDON"], ["name", "CYPHERMUNK HOUSE | LONDON"], ["display_name", "CYPHERMUNK HOUSE | LONDON"], ["picture", "https://image.nostr.build/3dd6a0db179d5eca0ef1d84c108631b2cf4f868278a61ad0142d225886c1217a.jpg"], ["banner", "https://image.nostr.build/3043407cff9c0dd8fcf7b8c6d516eb521cd006bfb34dc2c26f6dbd60cd99241e.jpg"], ["website", "https://www.cyphermunkhouse.com"], ["about", "London pop-up #Bitcoin hub championing open source culture and the ideas of the 21st century.\n\n#NOSTR ONLY\n\n📅 Upcoming Events 📅\n13 Dec - CMH in Bedford ⚽\n18 Dec - npub18cngxzyjtjw38mrcwlghmj5sdjzt4am4ezra23jlheafsjtt8duq6ld82l 🍸\n21 Dec - Christmas & Chill 🎄\n\nSupported by npub1wrzguj625auyeysfuuxzf7ywhzlwfz9gm3fml2lul72gwqxw8n9swtcm02\n\nEST 835679\n🐇🪩⚡️"], ["lud16", "Cyphermunkhouse@blink.sv"], ["nip05", "cyphermunkhouse@zaps.lol"]]
+ }]
+[16:40:33.773] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "7d37fca266e9285e57763f3956d9773de1b842dfaa10a6ce2de051ff2b433818",
+ "pubkey": "89ba19cfed66b618fe8e25a019e6b7f25fcd00ed4017d02084fee2eb967af7ee",
+ "created_at": 1765171285,
+ "kind": 0,
+ "content": "{\"name\":\"システムをファック\",\"display_name\":\"システムをファック\",\"about\":\". 🌀Just ɱ&₿🌀 \\n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \\nFrom the People For the People \\n In ɱath We Trust In Code We Verify \\n 🟠 ₿itcoins&ɱonero are Forever 🟠 \\n #FreeSamourai☣ #FuckTheState☣\\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \\\"Safety\\\" will be Left With NONE.\\n\\\"When Freedom is Outlawed Only Outlaws Will Be Free.\\\"\\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\\nAnCap Seperating Money&State\\n🏴☠️vVvolṑnLabé\\n\\n\\\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\\\"\",\"picture\":\"https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg\",\"banner\":\"https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg\",\"website\":\"https://wtfhappenedin1971.com/\",\"lud16\":\"🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1\",\"pronouns\":\"モネロシン\"}",
+ "sig": "9722b8329e5e0b0d7f404a987070beacc90f3502fecffa36ec72c91e1105f927f801b3947f5b70a6f67b85a0ebccb1d3612ea1e09883a7baa126da083786e26d",
+ "tags": [["alt", "User profile for システムをファック"], ["name", "システムをファック"], ["display_name", "システムをファック"], ["picture", "https://image.nostr.build/9433bcd21539eed002b06edb9ac53d1fa4159cb59257e71d1e9470d8bd22b9c2.jpg"], ["banner", "https://image.nostr.build/2abb88053a336aa3a49e11e2fa92cc90118825c8b8b909949527281df276d220.jpg"], ["about", ". 🌀Just ɱ&₿🌀 \n ɱiner,hodler,Node Runner ₿itcoins&ɱonero are FreedoɱMoney,USE IT !\nFreedom Soundɱoney Locked in Time ₿acked by Energy Ruled by ɱath Enforced by Code \nFrom the People For the People \n In ɱath We Trust In Code We Verify \n 🟠 ₿itcoins&ɱonero are Forever 🟠 \n #FreeSamourai☣ #FuckTheState☣\nPrivacy is Not a Crime Privacy is integral part of Freedom, Anyone who Trades Freedom for \"Safety\" will be Left With NONE.\n\"When Freedom is Outlawed Only Outlaws Will Be Free.\"\nhttps://archive.org/details/anarchy_Cypherpunk_Manifesto\nAnCap Seperating Money&State\n🏴☠️vVvolṑnLabé\n\n\"The Times 07/Apr/2014 Bank of England Warns Over Digital Currencies\""], ["website", "https://wtfhappenedin1971.com/"], ["lud16", "🏴☠️ 85XxciD4HYjTW8N58GiLSud9zJBkYSw7WWEoCBLPbLUKDre2Han6EKaRjBDHocfCT7QR2Rw6BqUPW6u7NCEPW63LDoc6yx1"], ["pronouns", "モネロシン"]]
+ }]
+[16:40:33.774] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "f63942ab13aa9771dd7172fcc108774ef3f057f8b74562c6d033318e0dd4136c",
+ "pubkey": "02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16",
+ "created_at": 1765170063,
+ "kind": 0,
+ "content": "{\"name\":\"かみなし\",\"about\":\"ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い\",\"gender\":\"\",\"area\":\"\",\"picture\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp\",\"banner\":\"https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp\",\"nip05\":\"kaminashi_neobakufu@neobakufu.com\",\"lud16\":\"npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash\",\"website\":\"http://neobakufu.com\",\"display_name\":\"かみなし\"}",
+ "sig": "d33126ada7cd18d6cfbe85443d939d2cc8f6de18009f3cbfaa066ae2f7b09829bdcf6d62b9bca2192d7d3f4ddfe71729e0a47112f977e950e7617a97d0248538",
+ "tags": [["alt", "User profile for かみなし"], ["name", "かみなし"], ["display_name", "かみなし"], ["picture", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/147cfa85d9fe5afd5ebb89b2a90a674036086d512c0b126a92fe64fd30906783.webp"], ["banner", "https://cdn.nostrcheck.me/02c93191ccdadea5f8907c9498216e70fcc035a41f318a76aba988acd77bac16/f32777468462372e593508fcd3a40f91ceb3c6f18ebdc85db5ece5126a1fb3b0.webp"], ["website", "http://neobakufu.com"], ["about", "ネオ幕府アキノリ党幹事長兼パーティスト/漫画『令和元年のえずくろしい』原案/クリエイター/ケイオスマジック修行中/タロット占い"], ["nip05", "kaminashi_neobakufu@neobakufu.com"], ["lud16", "npub1qtynrywvmt02t7ys0j2fsgtwwr7vqddyrucc5a4t4xy2e4mm4stqx3lava@npub.cash"]]
+ }]
+[16:40:33.774] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "56cedd6d2be057928c6c44dec1a4dd1ca2fc8fe86ad077259e3a3f8430fa498e",
+ "pubkey": "ec6e83c16fce7ac752abc546cfabefa3b77a65b90b043c3fea49a07e0ef22fc5",
+ "created_at": 1765165541,
+ "kind": 0,
+ "content": "{\"name\":\"TrevoSats\",\"display_name\":\"TrevoSats\",\"picture\":\"https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg\",\"banner\":\"https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg\",\"about\":\"The end of blind faith in casino algorithms.\\n\\nProvably fair draws, built on the mathematical truth of Bitcoin.\\n\\nIf it can't be audited, it's a scam.\",\"nip05\":\"trevosats@nostrplebs.com\",\"lud16\":\"trevosats@rizful.com\",\"website\":\"bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2\"}",
+ "sig": "8cf60c8979e223adaf3330e7d4b7b5a8255f5d97d7f2f4e309b418115074fc9931bf6efbf7f4533ef22db47ea1d614de82df4318846fee4482052f41c54a7263",
+ "tags": [["alt", "User profile for TrevoSats"], ["name", "TrevoSats"], ["display_name", "TrevoSats"], ["picture", "https://image.nostr.build/2738216e3c5a19d5d7a44c0908e21c4cdd61c129f516ac1fdf060f32ff74553c.jpg"], ["banner", "https://image.nostr.build/9cca8a0ee25d352791a1d6688fc280ac0e5ce31ff7fdd3040de198f874ee5814.jpg"], ["about", "The end of blind faith in casino algorithms.\n\nProvably fair draws, built on the mathematical truth of Bitcoin.\n\nIf it can't be audited, it's a scam."], ["nip05", "trevosats@nostrplebs.com"], ["lud16", "trevosats@rizful.com"], ["website", "bc1quusnj6ssx7sle0kz05cu9r8dgv7juaexlkrlh2"]]
+ }]
+[16:40:33.774] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "e83ea67f16241f2979420f46a64092987187d3c1a8f6158cd578723d55d6a4fd",
+ "pubkey": "d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af",
+ "created_at": 1765162767,
+ "kind": 0,
+ "content": "{\"name\":\"Pickle Dan 🥒\",\"picture\":\"https://i.nostr.build/iR9nFxiEAcW8eX5M.png\",\"displayName\":\"Not Yarnlady\",\"display_name\":\"Pickle Dan 🥒\",\"website\":\"breadandtoast.com\",\"pronouns\":\"Dan, Daniel, Danny, Pickle, Sticker Dan\",\"lud16\":\"wolfertdan@strike.me\",\"about\":\"✝️ Sharing my life with strangers.\\n\\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\\n\\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\\n\\nI co-host a #PuffPuffPaint sometimes.\\nFormerly Managed:\\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e\",\"banner\":\"https://i.nostr.build/FGjCDwki5PC7SAgU.png\"}",
+ "sig": "33745782386a96292ae7e0714a6c7340c034b2b50a6ea47586979a4cf354ace9f53da7722c5c8ec04c6f5cc547f10a0dfb082ed81eadd4227f8c8b921209a449",
+ "tags": [["client", "Corny Chat", "31990:c3c73212fb6cd88d1acc18f6849c660c46a3c972bf5a766c5938d0649fddcb7c:nostrhandler"], ["alt", "User profile for Pickle Dan 🥒"], ["name", "Pickle Dan 🥒"], ["display_name", "Pickle Dan 🥒"], ["picture", "https://i.nostr.build/iR9nFxiEAcW8eX5M.png"], ["website", "breadandtoast.com"], ["pronouns", "Dan, Daniel, Danny, Pickle, Sticker Dan"], ["lud16", "wolfertdan@strike.me"], ["about", "✝️ Sharing my life with strangers.\n\nWith NOSTR available, I plan and hope to make friends not foes using the Internet. 🫂\n\nBuilding npub1ew4qeq576v3vz4gukeseknqghx3x4jtlld8ftys9amrca6f3xfzsrm8jpd\n\nI co-host a #PuffPuffPaint sometimes.\nFormerly Managed:\nnpub1uul8sc3yc6vyyy86rlqhzngc593cq4js0q9k8nfeegysz0xzahxqyzwevx\nnpub1d3e2rnra2psr3ph7n348ya80ue0cxaw62sc4h522vqcuayepaqssjz6a5e"], ["banner", "https://i.nostr.build/FGjCDwki5PC7SAgU.png"]]
+ }]
+[16:40:33.774] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "c309406202ea1b3f025419f8b379680f3272aad7fa0cc3c1008eafc2338deea7",
+ "pubkey": "00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f",
+ "created_at": 1765144757,
+ "kind": 0,
+ "content": "{\"nip05\":\"yolospirit@nostrplebs.com\",\"picture\":\"https://m.primal.net/LuAs.webp\",\"display_name\":\"TheYOLOSpirit\",\"about\":\"#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat\",\"name\":\"TheYOLOSpirit\",\"username\":\"YOLOSpirit\",\"displayName\":\"YOLOSpirit⚡️\",\"banner\":\"https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg\",\"pubkey\":\"00000578eaa84e1cea0d6f0be5cf3f7600bba8b3a2bcc38784fb1c932a239a7f\",\"npub\":\"npub1qqqq27824p8pe6sddu97tnelwcqth29n527v8puylvwfx23rnflsh73msj\",\"created_at\":1730838548,\"lud16\":\"⚡@TheYOLOSpirit.com\",\"pronouns\":\"Bond, James Bond\"}",
+ "sig": "cba5d1a95ed9fc18c4c68ebb54a4a926a1a8c99db6c261715b9531704e5cb19845e04c9809418dedf4ca6a6d76d67bc62fd79da373f17a556cb567a31f382c07",
+ "tags": [["alt", "User profile for TheYOLOSpirit"], ["name", "TheYOLOSpirit"], ["display_name", "TheYOLOSpirit"], ["picture", "https://m.primal.net/LuAs.webp"], ["banner", "https://storage.googleapis.com/yolorun-prod-255716.appspot.com/sheik_quotes.jpg"], ["pronouns", "Bond, James Bond"], ["about", "#Bitcoin ⚡ Software 📱 Engineer ⚙️ Freelancer 👨🏻💻 Runner 🏃 Hiker 🏕️⛰️ Raver 🍭👽 Gamer 🎮 -✌️💓🌟🚯☯️♌🏴🇨🇦⚜️🍀☕🐧🦊🏍️ 不滅のあなたへ #mine4heat"], ["nip05", "yolospirit@nostrplebs.com"], ["lud16", "⚡@TheYOLOSpirit.com"]]
+ }]
+[16:40:33.774] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "13c2e2b7920fb2e68605c17e760d4c243fb064769fc49a7cb3345b573cdc77c3",
+ "pubkey": "c30b68ad39adaf8d17f05eef63f68ef53dc77205f61ba4df405ecb8060d50f98",
+ "created_at": 1765140102,
+ "kind": 0,
+ "content": "{\"name\":\"Prevailing Butterfly\",\"display_name\":\"Prevailing Butterfly\",\"picture\":\"https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg\",\"lud16\":\"wildcarrot39@minibits.cash\",\"about\":\"Or cockroach\"}",
+ "sig": "be7bcaa33c2d6a74f6e5c2542c90fa279231d2938c31905e37edb0bcb544a65e9b3da544f50d8887fc4af16895325b28820147ef8048b2920fceb3cb174026df",
+ "tags": [["alt", "User profile for Prevailing Butterfly"], ["name", "Prevailing Butterfly"], ["display_name", "Prevailing Butterfly"], ["picture", "https://image.nostr.build/194272a7fae27a9551952a8529d12cd1cf0fa0886c343e8b8755a66019b6659a.jpg"], ["lud16", "wildcarrot39@minibits.cash"], ["about", "Or cockroach"]]
+ }]
+[16:40:33.774] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "cada8b05dedb0b46d5fad5ee04fa218d0dc87e9377ee52dab066ca3430f30f78",
+ "pubkey": "8570054af4497a2af53bc103773cd3f15be710bfbe51b0e13c02d96df6d22eb8",
+ "created_at": 1765139225,
+ "kind": 0,
+ "content": "{\"name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey\",\"gender\":\"\",\"area\":\"\",\"display_name\":\"𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️\",\"banner\":\"https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg\",\"displayName\":\"Laniakea³🌌☄️\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"picture\":\"https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg\"}",
+ "sig": "874902d7afe72fdcccd6b6a1705fe5b1c363ffe5f5ed3671d61f23d72eea9d623b3b77db8dffe36144ce9da183f6ccf7c7d4743b912436bda6cdcb695eb66153",
+ "tags": [["alt", "User profile for 𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["display_name", "𝐿𝑜𝑟𝑒𝑛𝑎³🌌☄️"], ["picture", "https://image.nostr.build/c281d4494ebfaacbecc33c543c893863056699633678e552d6318d5753c5f659.jpg"], ["banner", "https://image.nostr.build/0e4ede50d38966daa5048932edf164c8b1d0d5f76b6b81deb40a591fe077b84f.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\nᴘʀɪɴᴄɪᴘᴀʟ: nostr:npub17natddjkmse4z8frh7ysynwtzanzmvs9d76c5r53546wsnzs25gqfdeqey"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[16:40:33.774] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "14c16a34ba1ab62f5337393b07700142df7685077a0747050aa61c1c554fe032",
+ "pubkey": "f4fab6b656dc33511d23bf89024dcb17662db2056fb58a0e91a574e84c505510",
+ "created_at": 1765139210,
+ "kind": 0,
+ "content": "{\"name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"display_name\":\"𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️\",\"about\":\"✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \\n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \\n.*・。゚φ 1.6180339887498948 * ݁☆・* \\n\\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\\n\\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\\n\\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\\n\\nChat público para brasileiros ou lusófonos no geral:\\n\\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p\",\"picture\":\"https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg\",\"banner\":\"https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg\",\"nip05\":\"Lorena@NostrAddress.com\",\"lud16\":\"Lorena@BlitzWalletApp.com\",\"area\":\"\",\"displayName\":\"The Dark Meteor From Andromeda³🌌☄️\",\"gender\":\"\",\"is_deleted\":false}",
+ "sig": "d91fe2a0e7b2a2122a913e78984e5ef0147d3b1bcdc06a857ede16b3be0cbc05d3fda46751a227c12261a673834e8f356d2e23d9486e4f33d9b6846fa71cc2dc",
+ "tags": [["alt", "User profile for 𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["display_name", "𝑻𝒉𝒆 𝑫𝒂𝒓𝒌 𝑴𝒆𝒕𝒆𝒐𝒓 𝑭𝒓𝒐𝒎 𝑨𝒏𝒅𝒓𝒐𝒎𝒆𝒅𝒂³🌌☄️"], ["picture", "https://image.nostr.build/02a46b417aa8ed975d9816b4355d50fd1034b7d091eaee83f903b5d48650c70a.jpg"], ["banner", "https://image.nostr.build/27032629be9248c8c9f03cc56df0c2a2f2a4340e67a1f31b1e93f678e5e44efc.jpg"], ["about", "✧・゚: * 𝓛𝓸𝓻𝓮𝓷𝓪 ✦ 12 anos *:・.*✧ \n♡ ⋆˚˖° 로레나 • 2013.02.15*・. ݁₊☆ \n.*・。゚φ 1.6180339887498948 * ݁☆・* \n\n‧₊˚Todos são macacos, menos eu .˖᯽ ݁˖\n\n ʜᴏʟᴅᴇʀ · ꜱᴇᴛ/2023 │ ɴᴏꜱᴛʀ · ʜᴀʟᴠɪɴɢ 2024\n\nᴘᴇʀꜰɪʟ ꜱᴇᴄᴜɴᴅáʀɪᴏ: nostr:npub1s4cq2jh5f9az4afmcyphw0xn79d7wy9lhegmpcfuqtvkmakj96uqwsttqz\n\nChat público para brasileiros ou lusófonos no geral:\n\n🇧🇷BRASIL/LUSÓFONOS🇵🇹🇦🇴🇲🇿🇨🇻\nnostr:nevent1qqstfwcw27ske2lcq0pkcptwx9qdx0phvmzqhtglqy748250ldk9ktspzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtczyr604d4k2mwrx5gaywlcjqjdevtkvtdjq4hmtzswjxjhf6zv2p23qqcyqqqqq2q2u3d8p"], ["nip05", "Lorena@NostrAddress.com"], ["lud16", "Lorena@BlitzWalletApp.com"]]
+ }]
+[16:40:33.774] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "e309485602095a7719aa4c9f3f70cc33ae5b5af20ff4b5f54528e10df87f2d51",
+ "pubkey": "62369aa3c8015097b309344fd133c897807579cdada0705c06c24f373cb476af",
+ "created_at": 1765137398,
+ "kind": 0,
+ "content": "{\"picture\":\"https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg\"}",
+ "sig": "92fdaca90920998ad9808e7ffca275ca5d20d0351316ad0d92d60a48a8966c54487aa15edf1c5158d512ab5d072560f5fa4ee847a5ca16478f03cd6a3908971e",
+ "tags": [["alt", "User profile for Anonymous"], ["picture", "https://image.nostr.build/3c909f9adcb376dc40a0c7391e08c632f3915304398b9ed5dce071efc58b0f7a.jpg"]]
+ }]
+[16:40:33.774] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "68191e202b056ff5fbe69800e52ee79253e3585e85abc71282144d820f29e85d",
+ "pubkey": "ff16e04363da999a0645281d7bcc8ae23131e5708e5e3c32631b97c8767df70b",
+ "created_at": 1765135812,
+ "kind": 0,
+ "content": "{\"name\":\"kakafarm (previously New Red Tower)\",\"display_name\":\"kakafarm (previously New Red Tower)\",\"about\":\"A wannabe programmer.\\n\\n🇮🇱\\n\\n\\\"The Best Answer to Fanaticism - Liberalism\\\" - Bertrand Russell.\\n\\nhttps://kaka.farm/\\n\\nAlso on the Balkanised Activitypub Federation:\\n\\nChaos:\\n\\nhttps://shitposter.world/users/kakafarm\\n\\nLaw:\\n\\nhttps://posting.solutions/users/mu\\n\\nPrevious account:\\n\\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\\n\\nIRC:\\n\\nirc://irc.quakenet.org/israel\\nircs://irc.libera.chat/systemcrafters\\n\\n#books\\n#emacs\\n#excremeditation\\n#fantasy\\n#freesoftware\\n#fsf\\n#gnu\\n#guile\\n#guix\\n#irc\\n#israel\\n#jesters\\n#lisp\\n#meditation\\n#scheme\\n#scifi\\n#sigh\\n#stallmanwasright\\n#systemcrafters\\n#unix_surrealism\\n#unixsurrealism\\n#vipassana\\n#zionism\\n#ישראל\",\"picture\":\"https://kaka.farm/images/logo.png\",\"website\":\"https://kaka.farm/\",\"banner\":\"https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg\"}",
+ "sig": "463f4b4b99401f51804f07fde1ea70eb07cf35a05bc42f2a5a554f8720c52ca51353477835e431e08d58435b0cb8e2cdecd52726e8e74741e7bed2facc33d529",
+ "tags": [["alt", "User profile for kakafarm (previously New Red Tower)"], ["name", "kakafarm (previously New Red Tower)"], ["display_name", "kakafarm (previously New Red Tower)"], ["picture", "https://kaka.farm/images/logo.png"], ["banner", "https://kaka.farm/pub/memes/redlettermedia-red-letter-media-rlm-mike-stoklasa-star-trek-the-next-generation-st-tng-everyone-are-mike.jpg"], ["website", "https://kaka.farm/"], ["about", "A wannabe programmer.\n\n🇮🇱\n\n\"The Best Answer to Fanaticism - Liberalism\" - Bertrand Russell.\n\nhttps://kaka.farm/\n\nAlso on the Balkanised Activitypub Federation:\n\nChaos:\n\nhttps://shitposter.world/users/kakafarm\n\nLaw:\n\nhttps://posting.solutions/users/mu\n\nPrevious account:\n\nnpub1ey2ys0ug5czkwqrfl6ddmpr5y78w803sgzpxxe7waq339v0krz6sdzm7n2\n\nIRC:\n\nirc://irc.quakenet.org/israel\nircs://irc.libera.chat/systemcrafters\n\n#books\n#emacs\n#excremeditation\n#fantasy\n#freesoftware\n#fsf\n#gnu\n#guile\n#guix\n#irc\n#israel\n#jesters\n#lisp\n#meditation\n#scheme\n#scifi\n#sigh\n#stallmanwasright\n#systemcrafters\n#unix_surrealism\n#unixsurrealism\n#vipassana\n#zionism\n#ישראל"]]
+ }]
+[16:40:33.774] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "bba8c1448d25d4374793e58e36a7a7d14a14f684e8e5ffca91c5aaec1e3a6fd2",
+ "pubkey": "e9eac0e9194a570bbb31efb02fd8571e72fcdc5d65f86d4cc53f3845312ec453",
+ "created_at": 1765131891,
+ "kind": 0,
+ "content": "{\"picture\":\"https://m.primal.net/PzYs.jpg\",\"banner\":\"https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg\",\"about\":\"my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏\",\"website\":\"winterfog671@getalby.com\",\"lud16\":\"winterfog671@getalby.com\",\"nip05\":\"mbhollamby30@iris.to\",\"name\":\"Morgan\",\"display_name\":\"Morgan\"}",
+ "sig": "08afc1e394628bda584264a328ae38fc71edb2d66419cd9baed38c27ccd4a806d3ccb946288873274c3b569d6590cad57b593d5bc8cfa7facdd5b772cf22235a",
+ "tags": [["alt", "User profile for Morgan"], ["name", "Morgan"], ["display_name", "Morgan"], ["picture", "https://m.primal.net/PzYs.jpg"], ["banner", "https://image.nostr.build/29810851c349da3731a6bb04e5b05e5664c0c3730e89f3d310b6e2473490276d.jpg"], ["website", "winterfog671@getalby.com"], ["about", "my name is morgan. im 31 years old. sanit bonaventure bonnies fan. buffalo bills fan. go bills and go Buffalo sabres. alfred state football fan. I believe in freedom of speech. i believe in Jesus. im a Christian. I believe in God 🙏"], ["nip05", "mbhollamby30@iris.to"], ["lud16", "winterfog671@getalby.com"]]
+ }]
+[16:40:33.774] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "bda42a15f172ec43eeb5bf50afadaf53ceb6b90c666cc76980c7935aa10d3082",
+ "pubkey": "8230c6222dea501c168d871de40d3ced4946b5608683af486a22e55426642641",
+ "created_at": 1765112018,
+ "kind": 0,
+ "content": "{\"name\":\"Thekid.999\",\"nip05\":\"thekid44@zaps.lol\",\"about\":\"Im from the Universe we just chilling living in the firmament. 😎\\n Stop playing wit me\\n Everybody is gonna skip that part\",\"display_name\":\"Thekid.999\",\"picture\":\"https://i.nostr.build/xsHv4SFxwofXA52i.jpg\",\"banner\":\"https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg\",\"pronouns\":\"eyeslow\",\"lud16\":\"hushedsquash689@walletofsatoshi.com\"}",
+ "sig": "70db6b19e429aac148be1476a78c34dd4fe5dd9f4589f18c6899502e9093eb52c244a77ecdb8aeecd6448aeed643ab6bcbc953e1406f1899b7e5ad065147204d",
+ "tags": [["alt", "User profile for Thekid.999"], ["name", "Thekid.999"], ["display_name", "Thekid.999"], ["picture", "https://i.nostr.build/xsHv4SFxwofXA52i.jpg"], ["banner", "https://i.nostr.build/PGl3aEkFrgFyTHgz.jpg"], ["about", "Im from the Universe we just chilling living in the firmament. 😎\n Stop playing wit me\n Everybody is gonna skip that part"], ["nip05", "thekid44@zaps.lol"], ["pronouns", "eyeslow"], ["lud16", "hushedsquash689@walletofsatoshi.com"]]
+ }]
+[16:40:33.833] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "bccfaadefc1cc69ca747713197ebaff8933d33458555828ac5beb2c9fdada7fb",
+ "pubkey": "3c389c8f4d46ca81316743a3e33cedb1d0619f8778ee74d47265775e7a2eff7f",
+ "created_at": 1765110846,
+ "kind": 0,
+ "content": "{\"name\":\"Spatia Nostra\",\"about\":\"Our Spaces.\\n\\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \\n\\nwww.spatia-nostra.com\\nhttps://spatia-nostra.npub.pro\\n\\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen.\",\"picture\":\"https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png\",\"website\":\"https://spatianostra.com\",\"display_name\":\"Spatia Nostra\",\"banner\":\"https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg\",\"lud16\":\"dawn@npub.cash\",\"nip05\":\"spatianostra@habla.news\"}",
+ "sig": "8a8a62be0045dc5de83a5aa52e8c6901f4c195d3f3d92df27bb96e81d605197759381fc4d51efda82be945b6449165b25600757b523dff7ef9fcdba3ff62ee3a",
+ "tags": [["alt", "User profile for Spatia Nostra"], ["name", "Spatia Nostra"], ["display_name", "Spatia Nostra"], ["picture", "https://cdn.nostrcheck.me/002ca55741af072f37fbf4832f281a0859b819a6f9a073f8fce811bb2e9476ac.png"], ["banner", "https://cdn.satellite.earth/d0781b16487ef834c86f38d1fb24a048aa2b6a88544e84b2e09ecdcf6d45e7c5.jpg"], ["website", "https://spatianostra.com"], ["about", "Our Spaces.\n\nVisit https://jumble.social/?r=relays.land/spatianostra to explore community-curated content chosen through a simple-to-use, dynamic voting system developed by @npub180cvv07tjdrrgpa0j7j7tmnyl2yr6yr7l8j4s3evf6u64th6gkwsyjh6w6 . For more information and to check out other customizable relay software options, visit https://relays.land . \n\nwww.spatia-nostra.com\nhttps://spatia-nostra.npub.pro\n\n A Nostr educational initiative. Contact @npub1cgcwm56v5hyrrzl5ty4vq4kdud63n5u4czgycdl2r3jshzk55ufqe52ndy or this npub, if you have any feedback or suggestions... or to tell me to stop with this non-sense. I might listen."], ["lud16", "dawn@npub.cash"], ["nip05", "spatianostra@habla.news"]]
+ }]
+[16:40:33.833] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "44272fb865e318b4e741087e99e8162635ae66292623cb0c6961e5adc6c2389f",
+ "pubkey": "be334f1da78dd29a6285a854124393b5dcaada22f7e54c0acd533a983ea4d30e",
+ "created_at": 1765096259,
+ "kind": 0,
+ "content": "{\"name\":\"21_21_21\",\"about\":\"Follow me for more things like the thing you clicked which took you to this profile page in the first place\",\"display_name\":\"21_21_21\",\"displayName\":\"\",\"picture\":\"https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg\",\"lud16\":\"be334f1da78dd29a6285a854@coinos.io\"}",
+ "sig": "52dc133da56071d338c042d8004427b705d30a4f2f8c58b530ed2e9e58de99eb1b9b12cf494e41d8b0b2a82a174e66e1b626a06ac44f845b10d9b5748fcf0885",
+ "tags": [["alt", "User profile for 21_21_21"], ["name", "21_21_21"], ["display_name", "21_21_21"], ["picture", "https://npub1hce578d83hff5c594p2pysunkhw24k3z7lj5czkd2vafs04y6v8q9ayrcy.blossom.band/9e2e9dfb6fe6398d52b4d81d3489fd692cf016f81956a18654c12a3936cf5a62.jpg"], ["about", "Follow me for more things like the thing you clicked which took you to this profile page in the first place"], ["lud16", "be334f1da78dd29a6285a854@coinos.io"]]
+ }]
+[16:40:33.833] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "5ecf2e2cdbcc98bafdd57982b13bfb66b7c93fe46a8b2165a201a24982611766",
+ "pubkey": "deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68",
+ "created_at": 1765092920,
+ "kind": 0,
+ "content": "{\"name\":\"Ryan\",\"display_name\":\"Ryan\",\"picture\":\"https://i.nostr.build/TgItTPDl0pZds4FI.jpg\",\"banner\":\"https://i.nostr.build/D6kJBIYPHIflh2bc.gif\",\"about\":\"Play Flappy Nostrich @ flappy-nostrich.vercel.app/\\n😎👌\\nEst. 776032 💜🫂🤙\",\"nip05\":\"ryan@nostr.land\",\"lud16\":\"stilteddinghy70@walletofsatoshi.com\",\"pubkey\":\"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68\",\"is_deleted\":false}",
+ "sig": "edac12e9d6e2df63ef3f22009a2d34361708cf7e824c394121d39fb8cacf18f9528d227b3e6098c92e1eb6b3eae5ae46f6cf884f497dda81bd964089889c9657",
+ "tags": [["alt", "User profile for Ryan"], ["name", "Ryan"], ["display_name", "Ryan"], ["picture", "https://i.nostr.build/TgItTPDl0pZds4FI.jpg"], ["banner", "https://i.nostr.build/D6kJBIYPHIflh2bc.gif"], ["about", "Play Flappy Nostrich @ flappy-nostrich.vercel.app/\n😎👌\nEst. 776032 💜🫂🤙"], ["nip05", "ryan@nostr.land"], ["lud16", "stilteddinghy70@walletofsatoshi.com"]]
+ }]
+[16:40:33.833] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "dc780c0755425825d7f131c4e64f9e83268200a1ec4527365713934efae48b72",
+ "pubkey": "c7d141f05e3d8fcfa4c90d15993566c582361bc852fa780de0bf345557ac6001",
+ "created_at": 1765078513,
+ "kind": 0,
+ "content": "{\"name\":\"Stillwaters CC SFV\",\"display_name\":\"Stillwaters CC SFV\",\"picture\":\"https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136\",\"banner\":\"https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg\",\"about\":\"SFV junkies just outa rehab...\"}",
+ "sig": "e00a67f3be88d20dacb8f026e07d0de507f633b97959dc569f0ef1290f1c776779232df713a366f84ca674dcbc271273b2565dfd272ffc1b3f2ae2a7c88fd1de",
+ "tags": [["alt", "User profile for Stillwaters CC SFV"], ["name", "Stillwaters CC SFV"], ["display_name", "Stillwaters CC SFV"], ["picture", "https://assets.bigcartel.com/theme_images/71282145/bronze+age.jpg?auto=format&fit=max&h=800&w=2136"], ["banner", "https://c1.staticflickr.com/3/2757/4324057091_d20deef61c_b.jpg"], ["about", "SFV junkies just outa rehab..."]]
+ }]
+[16:40:33.833] RECV relay.laantungir.net:443: ["EVENT", "pool_1_1765572032", {
+ "id": "430cec9b6fe231ddffa9422fae4556da912fc5e10fa3c01ffbdb987887cc72d9",
+ "pubkey": "0aea075b010fb595d6814f5633008e870d77a2c43d4dda1544e8730e00995144",
+ "created_at": 1765067824,
+ "kind": 0,
+ "content": "{\"lnurl\":\"lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg\",\"name\":\"hoppe2\",\"display_name\":\"hoppe2\",\"picture\":\"https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg\",\"displayName\":\"hoppe2\",\"about\":\"I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well.\",\"lud16\":\"hoppe@lightning.hoppe-relay.it.com\"}",
+ "sig": "a9e9db2a1c05acda49ffc33e3601ff0b57503882d8b5eb576274d4b296d798f558167883eae81645a9eefb7a6a75da27d1c64ab930229611ff1f85395049e4c9",
+ "tags": [["alt", "User profile for hoppe2"], ["lnurl", "lnurl1dp68gurn8ghj7mrfva58gmnfdenju6r0wpcx2ttjv4kxz7fwd96zucm0d5hjuam9d3kz66mwdamkutmvde6hymrs9a5x7ursv5mgunqg"], ["name", "hoppe2"], ["display_name", "hoppe2"], ["picture", "https://image.nostr.build/6a661ee8fcd85e75542e551ac1af5d10e2724ffeac6677220fe8c2e1b0db9845.jpg"], ["displayName", "hoppe2"], ["about", "I lost the private key for nostr:npub1s9jsnqnynrh7wjgy7xr0f5y79wv8kwg38vksk2zedrpgs2vnsraqhzmew7 and it's impossible to recover it, so I created a new account. I hope you all manage your secret keys well."], ["lud16", "hoppe@lightning.hoppe-relay.it.com"]]
+ }]
+[16:40:33.833] RECV relay.laantungir.net:443: ["EOSE", "pool_1_1765572032"]
+[16:40:33.833] RECV relay.laantungir.net:443: ["OK", "7b754b9775df914fafb7a3c99cd4c0dbba92fabf3832ec985ffca19db45b8cf2", true, ""]
+[16:40:33.895] RECV relay.laantungir.net:443: ["OK", "75aa0d96fc75fbf53fe668b845fd370fffbfcdcd525f9896703a46a51828645a", true, ""]
+[16:40:33.895] RECV relay.laantungir.net:443: ["EOSE", "pool_2_1765572033"]
diff --git a/src/admin_event.c b/src/admin_event.c
index 6244aae..bef5432 100644
--- a/src/admin_event.c
+++ b/src/admin_event.c
@@ -3,6 +3,8 @@
#include
#include
#include
+#include
+#include
#include "ginxsom.h"
// Forward declarations for nostr_core_lib functions
@@ -27,6 +29,7 @@ extern char g_db_path[];
static int get_server_privkey(unsigned char* privkey_bytes);
static int get_server_pubkey(char* pubkey_hex, size_t size);
static int handle_config_query_command(cJSON* response_data);
+static int handle_query_view_command(cJSON* command_array, cJSON* response_data);
static int send_admin_response_event(const char* admin_pubkey, const char* request_id,
cJSON* response_data);
static cJSON* parse_authorization_header(void);
@@ -269,9 +272,13 @@ static int process_admin_event(cJSON* event) {
return -1;
}
content_to_parse = decrypted_content;
+ app_log(LOG_DEBUG, "ADMIN_EVENT: Decrypted content: %s", decrypted_content);
+ } else {
+ app_log(LOG_DEBUG, "ADMIN_EVENT: Using plaintext content (starts with '['): %s", encrypted_content);
}
// Parse command array (either decrypted or plaintext)
+ app_log(LOG_DEBUG, "ADMIN_EVENT: Parsing command array from: %s", content_to_parse);
cJSON* command_array = cJSON_Parse(content_to_parse);
if (!command_array || !cJSON_IsArray(command_array)) {
printf("Status: 400 Bad Request\r\n");
@@ -300,19 +307,30 @@ static int process_admin_event(cJSON* event) {
// Handle command
int result = -1;
if (strcmp(cmd, "config_query") == 0) {
+ app_log(LOG_DEBUG, "ADMIN_EVENT: Handling config_query command");
result = handle_config_query_command(response_data);
+ app_log(LOG_DEBUG, "ADMIN_EVENT: config_query result: %d", result);
+ } else if (strcmp(cmd, "query_view") == 0) {
+ app_log(LOG_DEBUG, "ADMIN_EVENT: Handling query_view command");
+ result = handle_query_view_command(command_array, response_data);
+ app_log(LOG_DEBUG, "ADMIN_EVENT: query_view result: %d", result);
} else {
+ app_log(LOG_WARN, "ADMIN_EVENT: Unknown command: %s", cmd);
cJSON_AddStringToObject(response_data, "status", "error");
cJSON_AddStringToObject(response_data, "error", "Unknown command");
+ result = -1;
}
cJSON_Delete(command_array);
if (result == 0) {
+ app_log(LOG_DEBUG, "ADMIN_EVENT: Sending Kind 23459 response");
// Send Kind 23459 response
- send_admin_response_event(admin_pubkey, request_id, response_data);
- return 0;
+ int send_result = send_admin_response_event(admin_pubkey, request_id, response_data);
+ app_log(LOG_DEBUG, "ADMIN_EVENT: Response sent with result: %d", send_result);
+ return send_result;
} else {
+ app_log(LOG_ERROR, "ADMIN_EVENT: Command processing failed");
cJSON_Delete(response_data);
printf("Status: 500 Internal Server Error\r\n");
printf("Content-Type: application/json\r\n\r\n");
@@ -415,6 +433,125 @@ static int handle_config_query_command(cJSON* response_data) {
return 0;
}
+/**
+ * Handle query_view command - returns data from a specified database view
+ * Command format: ["query_view", "view_name"]
+ */
+static int handle_query_view_command(cJSON* command_array, cJSON* response_data) {
+ app_log(LOG_DEBUG, "ADMIN_EVENT: handle_query_view_command called");
+
+ // Get view name from command array
+ cJSON* view_name_obj = cJSON_GetArrayItem(command_array, 1);
+ if (!view_name_obj || !cJSON_IsString(view_name_obj)) {
+ app_log(LOG_ERROR, "ADMIN_EVENT: View name missing or not a string");
+ cJSON_AddStringToObject(response_data, "status", "error");
+ cJSON_AddStringToObject(response_data, "error", "View name required");
+ return -1;
+ }
+
+ const char* view_name = cJSON_GetStringValue(view_name_obj);
+ app_log(LOG_DEBUG, "ADMIN_EVENT: Querying view: %s", view_name);
+
+ // Validate view name (whitelist approach for security)
+ const char* allowed_views[] = {
+ "blob_overview",
+ "blob_type_distribution",
+ "blob_time_stats",
+ "top_uploaders",
+ NULL
+ };
+
+ int view_allowed = 0;
+ for (int i = 0; allowed_views[i] != NULL; i++) {
+ if (strcmp(view_name, allowed_views[i]) == 0) {
+ view_allowed = 1;
+ break;
+ }
+ }
+
+ if (!view_allowed) {
+ cJSON_AddStringToObject(response_data, "status", "error");
+ cJSON_AddStringToObject(response_data, "error", "Invalid view name");
+ app_log(LOG_WARN, "ADMIN_EVENT: Attempted to query invalid view: %s", view_name);
+ return -1;
+ }
+
+ app_log(LOG_DEBUG, "ADMIN_EVENT: View '%s' is allowed, opening database: %s", view_name, g_db_path);
+
+ // Open database
+ sqlite3* db;
+ int rc = sqlite3_open_v2(g_db_path, &db, SQLITE_OPEN_READONLY, NULL);
+ if (rc != SQLITE_OK) {
+ app_log(LOG_ERROR, "ADMIN_EVENT: Failed to open database: %s (error: %s)", g_db_path, sqlite3_errmsg(db));
+ cJSON_AddStringToObject(response_data, "status", "error");
+ cJSON_AddStringToObject(response_data, "error", "Database error");
+ return -1;
+ }
+
+ // Build SQL query
+ char sql[256];
+ snprintf(sql, sizeof(sql), "SELECT * FROM %s", view_name);
+
+ app_log(LOG_DEBUG, "ADMIN_EVENT: Executing SQL: %s", sql);
+
+ sqlite3_stmt* stmt;
+ if (sqlite3_prepare_v2(db, sql, -1, &stmt, NULL) != SQLITE_OK) {
+ app_log(LOG_ERROR, "ADMIN_EVENT: Failed to prepare query: %s (error: %s)", sql, sqlite3_errmsg(db));
+ sqlite3_close(db);
+ cJSON_AddStringToObject(response_data, "status", "error");
+ cJSON_AddStringToObject(response_data, "error", "Failed to prepare query");
+ return -1;
+ }
+
+ // Get column count and names
+ int col_count = sqlite3_column_count(stmt);
+
+ // Create results array
+ cJSON* results = cJSON_CreateArray();
+
+ // Fetch all rows
+ while (sqlite3_step(stmt) == SQLITE_ROW) {
+ cJSON* row = cJSON_CreateObject();
+
+ for (int i = 0; i < col_count; i++) {
+ const char* col_name = sqlite3_column_name(stmt, i);
+ int col_type = sqlite3_column_type(stmt, i);
+
+ switch (col_type) {
+ case SQLITE_INTEGER:
+ cJSON_AddNumberToObject(row, col_name, (double)sqlite3_column_int64(stmt, i));
+ break;
+ case SQLITE_FLOAT:
+ cJSON_AddNumberToObject(row, col_name, sqlite3_column_double(stmt, i));
+ break;
+ case SQLITE_TEXT:
+ cJSON_AddStringToObject(row, col_name, (const char*)sqlite3_column_text(stmt, i));
+ break;
+ case SQLITE_NULL:
+ cJSON_AddNullToObject(row, col_name);
+ break;
+ default:
+ // For BLOB or unknown types, skip
+ break;
+ }
+ }
+
+ cJSON_AddItemToArray(results, row);
+ }
+
+ sqlite3_finalize(stmt);
+ sqlite3_close(db);
+
+ // Build response
+ cJSON_AddStringToObject(response_data, "status", "success");
+ cJSON_AddStringToObject(response_data, "view_name", view_name);
+ cJSON_AddItemToObject(response_data, "data", results);
+
+ app_log(LOG_DEBUG, "ADMIN_EVENT: Query view '%s' returned %d rows", view_name, cJSON_GetArraySize(results));
+
+ return 0;
+}
+
/**
* Send Kind 23459 admin response event
*/
diff --git a/src/admin_interface_embedded.h b/src/admin_interface_embedded.h
index 0f62da2..d2ba6c2 100644
--- a/src/admin_interface_embedded.h
+++ b/src/admin_interface_embedded.h
@@ -10,7 +10,7 @@
#include
-// Embedded file: index.html (16738 bytes)
+// Embedded file: index.html (16767 bytes)
static const unsigned char embedded_index_html[] = {
0x3c, 0x21, 0x44, 0x4f, 0x43, 0x54, 0x59, 0x50, 0x45, 0x20, 0x68, 0x74,
0x6d, 0x6c, 0x3e, 0x0a, 0x3c, 0x68, 0x74, 0x6d, 0x6c, 0x20, 0x6c, 0x61,
@@ -366,12 +366,12 @@ static const unsigned char embedded_index_html[] = {
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x72, 0x3e,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x50, 0x72, 0x6f,
- 0x63, 0x65, 0x73, 0x73, 0x20, 0x49, 0x44, 0x3c, 0x2f, 0x74, 0x64, 0x3e,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x54, 0x6f, 0x74,
+ 0x61, 0x6c, 0x20, 0x53, 0x69, 0x7a, 0x65, 0x3c, 0x2f, 0x74, 0x64, 0x3e,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x20, 0x69, 0x64, 0x3d,
- 0x22, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x2d, 0x69, 0x64, 0x22,
+ 0x22, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x2d, 0x73, 0x69, 0x7a, 0x65, 0x22,
0x3e, 0x2d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x72,
@@ -380,53 +380,25 @@ static const unsigned char embedded_index_html[] = {
0x20, 0x20, 0x3c, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x74, 0x64, 0x3e, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x20, 0x43, 0x6f,
- 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3c, 0x2f, 0x74,
+ 0x74, 0x64, 0x3e, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x20, 0x49,
+ 0x44, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
+ 0x74, 0x64, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x70, 0x72, 0x6f, 0x63, 0x65,
+ 0x73, 0x73, 0x2d, 0x69, 0x64, 0x22, 0x3e, 0x2d, 0x3c, 0x2f, 0x74, 0x64,
+ 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x72, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x4d, 0x65, 0x6d,
+ 0x6f, 0x72, 0x79, 0x20, 0x55, 0x73, 0x61, 0x67, 0x65, 0x3c, 0x2f, 0x74,
0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x20, 0x69,
- 0x64, 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2d, 0x73, 0x75,
- 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22,
- 0x3e, 0x2d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x72,
- 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x74, 0x64, 0x3e, 0x4d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x20, 0x55, 0x73,
- 0x61, 0x67, 0x65, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x74, 0x64, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x65, 0x6d,
- 0x6f, 0x72, 0x79, 0x2d, 0x75, 0x73, 0x61, 0x67, 0x65, 0x22, 0x3e, 0x2d,
- 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64,
- 0x3e, 0x43, 0x50, 0x55, 0x20, 0x43, 0x6f, 0x72, 0x65, 0x3c, 0x2f, 0x74,
- 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x20, 0x69,
- 0x64, 0x3d, 0x22, 0x63, 0x70, 0x75, 0x2d, 0x63, 0x6f, 0x72, 0x65, 0x22,
- 0x3e, 0x2d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x72,
- 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x74, 0x64, 0x3e, 0x43, 0x50, 0x55, 0x20, 0x55, 0x73, 0x61, 0x67, 0x65,
- 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74,
- 0x64, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x63, 0x70, 0x75, 0x2d, 0x75, 0x73,
+ 0x64, 0x3d, 0x22, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x2d, 0x75, 0x73,
0x61, 0x67, 0x65, 0x22, 0x3e, 0x2d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
@@ -435,171 +407,184 @@ static const unsigned char embedded_index_html[] = {
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x72, 0x3e, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x4f, 0x6c, 0x64, 0x65, 0x73,
- 0x74, 0x20, 0x42, 0x6c, 0x6f, 0x62, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x43, 0x50, 0x55, 0x20, 0x43,
+ 0x6f, 0x72, 0x65, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x3c, 0x74, 0x64, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x63, 0x70, 0x75,
+ 0x2d, 0x63, 0x6f, 0x72, 0x65, 0x22, 0x3e, 0x2d, 0x3c, 0x2f, 0x74, 0x64,
+ 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x72, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x43, 0x50, 0x55,
+ 0x20, 0x55, 0x73, 0x61, 0x67, 0x65, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x20, 0x69, 0x64, 0x3d, 0x22,
- 0x6f, 0x6c, 0x64, 0x65, 0x73, 0x74, 0x2d, 0x65, 0x76, 0x65, 0x6e, 0x74,
- 0x22, 0x3e, 0x2d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74,
- 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x74, 0x64, 0x3e, 0x4e, 0x65, 0x77, 0x65, 0x73, 0x74, 0x20, 0x42,
- 0x6c, 0x6f, 0x62, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x74, 0x64, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6e, 0x65, 0x77,
- 0x65, 0x73, 0x74, 0x2d, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x22, 0x3e, 0x2d,
+ 0x63, 0x70, 0x75, 0x2d, 0x75, 0x73, 0x61, 0x67, 0x65, 0x22, 0x3e, 0x2d,
0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x62,
- 0x6f, 0x64, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64,
- 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x42, 0x6c, 0x6f, 0x62, 0x20, 0x54,
- 0x79, 0x70, 0x65, 0x20, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75,
- 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x2d,
- 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69,
- 0x6e, 0x70, 0x75, 0x74, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x42, 0x6c, 0x6f, 0x62,
- 0x20, 0x54, 0x79, 0x70, 0x65, 0x20, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69,
- 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x3c, 0x2f, 0x6c, 0x61, 0x62,
- 0x65, 0x6c, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61,
- 0x73, 0x73, 0x3d, 0x22, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e,
- 0x65, 0x72, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x61,
- 0x62, 0x6c, 0x65, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x63,
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22,
- 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x61, 0x74, 0x73, 0x2d, 0x6b,
- 0x69, 0x6e, 0x64, 0x73, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68,
- 0x65, 0x61, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20,
+ 0x3c, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64,
+ 0x3e, 0x4f, 0x6c, 0x64, 0x65, 0x73, 0x74, 0x20, 0x42, 0x6c, 0x6f, 0x62,
+ 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x42, 0x6c, 0x6f, 0x62, 0x20, 0x54,
- 0x79, 0x70, 0x65, 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x3c, 0x2f,
- 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e,
- 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x3c, 0x2f,
- 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x68, 0x65, 0x61,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74,
+ 0x64, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6f, 0x6c, 0x64, 0x65, 0x73, 0x74,
+ 0x2d, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x22, 0x3e, 0x2d, 0x3c, 0x2f, 0x74,
0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x74, 0x62, 0x6f, 0x64, 0x79, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74,
- 0x61, 0x74, 0x73, 0x2d, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x2d, 0x74, 0x61,
- 0x62, 0x6c, 0x65, 0x2d, 0x62, 0x6f, 0x64, 0x79, 0x22, 0x3e, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x20,
- 0x63, 0x6f, 0x6c, 0x73, 0x70, 0x61, 0x6e, 0x3d, 0x22, 0x33, 0x22, 0x20,
- 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x74, 0x65, 0x78, 0x74, 0x2d,
- 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x3a, 0x20, 0x63, 0x65, 0x6e, 0x74, 0x65,
- 0x72, 0x3b, 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c,
- 0x65, 0x3a, 0x20, 0x69, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x3b, 0x22, 0x3e,
- 0x4e, 0x6f, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x6c, 0x6f, 0x61, 0x64,
- 0x65, 0x64, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x72,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x72,
0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
- 0x74, 0x62, 0x6f, 0x64, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x2f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69,
- 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x54, 0x69, 0x6d, 0x65,
- 0x2d, 0x62, 0x61, 0x73, 0x65, 0x64, 0x20, 0x53, 0x74, 0x61, 0x74, 0x69,
- 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x20,
- 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
- 0x69, 0x6e, 0x70, 0x75, 0x74, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22,
- 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x54, 0x69, 0x6d,
- 0x65, 0x2d, 0x62, 0x61, 0x73, 0x65, 0x64, 0x20, 0x53, 0x74, 0x61, 0x74,
- 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x3a, 0x3c, 0x2f, 0x6c, 0x61, 0x62,
- 0x65, 0x6c, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61,
- 0x73, 0x73, 0x3d, 0x22, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e,
- 0x65, 0x72, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x61,
- 0x62, 0x6c, 0x65, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x63,
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22,
- 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x61, 0x74, 0x73, 0x2d, 0x74,
- 0x69, 0x6d, 0x65, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x65,
- 0x61, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x4e, 0x65,
+ 0x77, 0x65, 0x73, 0x74, 0x20, 0x42, 0x6c, 0x6f, 0x62, 0x3c, 0x2f, 0x74,
+ 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x50, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x3c,
- 0x2f, 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68,
- 0x3e, 0x42, 0x6c, 0x6f, 0x62, 0x73, 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x20, 0x69,
+ 0x64, 0x3d, 0x22, 0x6e, 0x65, 0x77, 0x65, 0x73, 0x74, 0x2d, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x22, 0x3e, 0x2d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x68, 0x65, 0x61, 0x64, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x62, 0x6f, 0x64, 0x79, 0x3e, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x62, 0x6f, 0x64,
- 0x79, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x61, 0x74, 0x73, 0x2d,
- 0x74, 0x69, 0x6d, 0x65, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x62,
- 0x6f, 0x64, 0x79, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3e, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x72, 0x3e, 0x0a, 0x20,
+ 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20,
+ 0x42, 0x6c, 0x6f, 0x62, 0x20, 0x54, 0x79, 0x70, 0x65, 0x20, 0x44, 0x69,
+ 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x54,
+ 0x61, 0x62, 0x6c, 0x65, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c,
+ 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x2d, 0x67,
+ 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x61, 0x62, 0x65,
+ 0x6c, 0x3e, 0x42, 0x6c, 0x6f, 0x62, 0x20, 0x54, 0x79, 0x70, 0x65, 0x20,
+ 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e,
+ 0x3a, 0x3c, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64,
+ 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x63, 0x6f,
+ 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x63,
+ 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x22, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x63, 0x6c,
+ 0x61, 0x73, 0x73, 0x3d, 0x22, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2d,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73,
+ 0x74, 0x61, 0x74, 0x73, 0x2d, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x2d, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x65, 0x61, 0x64, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
+ 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e,
+ 0x42, 0x6c, 0x6f, 0x62, 0x20, 0x54, 0x79, 0x70, 0x65, 0x3c, 0x2f, 0x74,
+ 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x43,
+ 0x6f, 0x75, 0x6e, 0x74, 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x4c, 0x61, 0x73, 0x74, 0x20,
- 0x32, 0x34, 0x20, 0x48, 0x6f, 0x75, 0x72, 0x73, 0x3c, 0x2f, 0x74, 0x64,
+ 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e,
+ 0x74, 0x61, 0x67, 0x65, 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
+ 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x2f, 0x74, 0x68, 0x65, 0x61, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x62, 0x6f, 0x64, 0x79, 0x20,
+ 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x61, 0x74, 0x73, 0x2d, 0x6b, 0x69,
+ 0x6e, 0x64, 0x73, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x62, 0x6f,
+ 0x64, 0x79, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x74, 0x64, 0x20, 0x63, 0x6f, 0x6c, 0x73, 0x70, 0x61,
+ 0x6e, 0x3d, 0x22, 0x33, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d,
+ 0x22, 0x74, 0x65, 0x78, 0x74, 0x2d, 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x3a,
+ 0x20, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x3b, 0x20, 0x66, 0x6f, 0x6e,
+ 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3a, 0x20, 0x69, 0x74, 0x61,
+ 0x6c, 0x69, 0x63, 0x3b, 0x22, 0x3e, 0x4e, 0x6f, 0x20, 0x64, 0x61, 0x74,
+ 0x61, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x3c, 0x2f, 0x74, 0x64,
0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x20, 0x69, 0x64,
- 0x3d, 0x22, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x2d, 0x32, 0x34, 0x68,
- 0x22, 0x3e, 0x2d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x62, 0x6f, 0x64, 0x79, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d,
+ 0x2d, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x2d, 0x62, 0x61, 0x73, 0x65, 0x64,
+ 0x20, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x20,
+ 0x54, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63,
+ 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x2d,
+ 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x61, 0x62,
+ 0x65, 0x6c, 0x3e, 0x54, 0x69, 0x6d, 0x65, 0x2d, 0x62, 0x61, 0x73, 0x65,
+ 0x64, 0x20, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73,
+ 0x3a, 0x3c, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64,
+ 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x63, 0x6f,
+ 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x63,
+ 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x22, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x63, 0x6c,
+ 0x61, 0x73, 0x73, 0x3d, 0x22, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2d,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73,
+ 0x74, 0x61, 0x74, 0x73, 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x2d, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x74, 0x68, 0x65, 0x61, 0x64, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74,
0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x50,
+ 0x65, 0x72, 0x69, 0x6f, 0x64, 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x74, 0x64, 0x3e, 0x4c, 0x61, 0x73, 0x74, 0x20, 0x37, 0x20, 0x44,
- 0x61, 0x79, 0x73, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x42, 0x6c, 0x6f, 0x62, 0x73,
+ 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x68,
+ 0x65, 0x61, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x3c, 0x74, 0x62, 0x6f, 0x64, 0x79, 0x20, 0x69, 0x64, 0x3d, 0x22,
+ 0x73, 0x74, 0x61, 0x74, 0x73, 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x2d, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x62, 0x6f, 0x64, 0x79, 0x22, 0x3e, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x74, 0x64, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x73, 0x2d, 0x37, 0x64, 0x22, 0x3e, 0x2d, 0x3c, 0x2f, 0x74,
+ 0x3c, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64,
+ 0x3e, 0x4c, 0x61, 0x73, 0x74, 0x20, 0x32, 0x34, 0x20, 0x48, 0x6f, 0x75,
+ 0x72, 0x73, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x74, 0x64, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x73, 0x2d, 0x32, 0x34, 0x68, 0x22, 0x3e, 0x2d, 0x3c, 0x2f, 0x74,
0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20,
@@ -608,32 +593,132 @@ static const unsigned char embedded_index_html[] = {
0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x4c, 0x61,
- 0x73, 0x74, 0x20, 0x33, 0x30, 0x20, 0x44, 0x61, 0x79, 0x73, 0x3c, 0x2f,
- 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x73, 0x74, 0x20, 0x37, 0x20, 0x44, 0x61, 0x79, 0x73, 0x3c, 0x2f, 0x74,
+ 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x20,
- 0x69, 0x64, 0x3d, 0x22, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x2d, 0x33,
- 0x30, 0x64, 0x22, 0x3e, 0x2d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x20, 0x69,
+ 0x64, 0x3d, 0x22, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x2d, 0x37, 0x64,
+ 0x22, 0x3e, 0x2d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74,
+ 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x74, 0x64, 0x3e, 0x4c, 0x61, 0x73, 0x74, 0x20, 0x33, 0x30, 0x20,
+ 0x44, 0x61, 0x79, 0x73, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x74, 0x64, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x73, 0x2d, 0x33, 0x30, 0x64, 0x22, 0x3e, 0x2d, 0x3c,
+ 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x62, 0x6f,
+ 0x64, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69,
+ 0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x54, 0x6f, 0x70, 0x20, 0x50, 0x75, 0x62,
+ 0x6b, 0x65, 0x79, 0x73, 0x20, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x2d,
+ 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
+ 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69,
+ 0x6e, 0x70, 0x75, 0x74, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x3c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x54, 0x6f, 0x70, 0x20,
+ 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x20, 0x62, 0x79, 0x20, 0x45,
+ 0x76, 0x65, 0x6e, 0x74, 0x20, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x3a, 0x3c,
+ 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76,
+ 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x63, 0x6f, 0x6e, 0x66,
+ 0x69, 0x67, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x63, 0x6f, 0x6e,
+ 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x3c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x63, 0x6c, 0x61, 0x73,
+ 0x73, 0x3d, 0x22, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x61,
+ 0x74, 0x73, 0x2d, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x2d, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x65, 0x61, 0x64, 0x3e, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x2f, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x2f, 0x74, 0x62, 0x6f, 0x64, 0x79, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e,
+ 0x52, 0x61, 0x6e, 0x6b, 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3e, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x54,
- 0x6f, 0x70, 0x20, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x20, 0x54,
- 0x61, 0x62, 0x6c, 0x65, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c,
- 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x2d, 0x67,
- 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x61, 0x62, 0x65,
- 0x6c, 0x3e, 0x54, 0x6f, 0x70, 0x20, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79,
- 0x73, 0x20, 0x62, 0x79, 0x20, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x43,
- 0x6f, 0x75, 0x6e, 0x74, 0x3a, 0x3c, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74,
+ 0x68, 0x3e, 0x42, 0x6c, 0x6f, 0x62, 0x20, 0x43, 0x6f, 0x75, 0x6e, 0x74,
+ 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74,
+ 0x68, 0x3e, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x20, 0x53, 0x69, 0x7a, 0x65,
+ 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74,
+ 0x68, 0x3e, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65,
+ 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x68,
+ 0x65, 0x61, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x3c, 0x74, 0x62, 0x6f, 0x64, 0x79, 0x20, 0x69, 0x64, 0x3d, 0x22,
+ 0x73, 0x74, 0x61, 0x74, 0x73, 0x2d, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x73, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x62, 0x6f, 0x64, 0x79,
+ 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x74, 0x64, 0x20, 0x63, 0x6f, 0x6c, 0x73, 0x70, 0x61, 0x6e, 0x3d,
+ 0x22, 0x34, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x74,
+ 0x65, 0x78, 0x74, 0x2d, 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x3a, 0x20, 0x63,
+ 0x65, 0x6e, 0x74, 0x65, 0x72, 0x3b, 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x2d,
+ 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3a, 0x20, 0x69, 0x74, 0x61, 0x6c, 0x69,
+ 0x63, 0x3b, 0x22, 0x3e, 0x4e, 0x6f, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20,
+ 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x62, 0x6f, 0x64, 0x79, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x54, 0x65, 0x73,
+ 0x74, 0x69, 0x6e, 0x67, 0x20, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69,
+ 0x76, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x64, 0x69, 0x76, 0x5f, 0x63, 0x6f,
+ 0x6e, 0x66, 0x69, 0x67, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
+ 0x22, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x6c, 0x65,
+ 0x78, 0x2d, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x73,
+ 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
+ 0x79, 0x3a, 0x20, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x22, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20,
+ 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x73, 0x65, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x2d, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x22, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x42, 0x4c, 0x4f, 0x53, 0x53, 0x4f, 0x4d, 0x20, 0x43, 0x4f, 0x4e, 0x46,
+ 0x49, 0x47, 0x55, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69,
+ 0x76, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
+ 0x2d, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x22, 0x20, 0x63, 0x6c,
+ 0x61, 0x73, 0x73, 0x3d, 0x22, 0x68, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x22,
0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
0x3d, 0x22, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x74, 0x61, 0x62,
@@ -642,771 +727,689 @@ static const unsigned char embedded_index_html[] = {
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x61, 0x62, 0x6c,
0x65, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x63, 0x6f, 0x6e,
0x66, 0x69, 0x67, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x20, 0x69,
- 0x64, 0x3d, 0x22, 0x73, 0x74, 0x61, 0x74, 0x73, 0x2d, 0x70, 0x75, 0x62,
- 0x6b, 0x65, 0x79, 0x73, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68,
- 0x65, 0x61, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x64, 0x3d, 0x22, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x52, 0x61, 0x6e, 0x6b, 0x3c, 0x2f,
- 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e,
- 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x45, 0x76, 0x65, 0x6e,
- 0x74, 0x20, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x3c, 0x2f, 0x74, 0x68, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x50, 0x65, 0x72,
- 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x3c, 0x2f, 0x74, 0x68, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x68, 0x65, 0x61, 0x64, 0x3e, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x62, 0x6f,
- 0x64, 0x79, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x61, 0x74, 0x73,
- 0x2d, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x2d, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x2d, 0x62, 0x6f, 0x64, 0x79, 0x22, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x74, 0x68, 0x65, 0x61, 0x64, 0x3e, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74,
0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x20, 0x63,
- 0x6f, 0x6c, 0x73, 0x70, 0x61, 0x6e, 0x3d, 0x22, 0x34, 0x22, 0x20, 0x73,
- 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x74, 0x65, 0x78, 0x74, 0x2d, 0x61,
- 0x6c, 0x69, 0x67, 0x6e, 0x3a, 0x20, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72,
- 0x3b, 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65,
- 0x3a, 0x20, 0x69, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x3b, 0x22, 0x3e, 0x4e,
- 0x6f, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65,
- 0x64, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x50,
+ 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x3c, 0x2f, 0x74, 0x68,
+ 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x72, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74,
- 0x62, 0x6f, 0x64, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76,
- 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
- 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
- 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x21, 0x2d, 0x2d, 0x20, 0x54, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x20,
- 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x2d, 0x2d, 0x3e, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x69, 0x64, 0x3d,
- 0x22, 0x64, 0x69, 0x76, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x22,
- 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x73, 0x65, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x6c, 0x65, 0x78, 0x2d, 0x73, 0x65, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d,
- 0x22, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x6e, 0x6f,
- 0x6e, 0x65, 0x3b, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
- 0x3d, 0x22, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x68, 0x65,
- 0x61, 0x64, 0x65, 0x72, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x42, 0x4c, 0x4f, 0x53, 0x53,
- 0x4f, 0x4d, 0x20, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x55, 0x52, 0x41,
- 0x54, 0x49, 0x4f, 0x4e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x69, 0x64, 0x3d,
- 0x22, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x64, 0x69, 0x73, 0x70,
- 0x6c, 0x61, 0x79, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
- 0x68, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69,
- 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x63, 0x6f, 0x6e,
- 0x66, 0x69, 0x67, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x63, 0x6f,
- 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x22, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x56, 0x61,
+ 0x6c, 0x75, 0x65, 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x63, 0x6c, 0x61,
- 0x73, 0x73, 0x3d, 0x22, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x63, 0x6f,
- 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73,
+ 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x68,
0x65, 0x61, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x3c, 0x74, 0x62, 0x6f, 0x64, 0x79, 0x20, 0x69, 0x64, 0x3d, 0x22,
+ 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x2d, 0x62, 0x6f, 0x64, 0x79, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65,
- 0x74, 0x65, 0x72, 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x3c, 0x2f,
- 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e,
- 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3c, 0x2f, 0x74, 0x68, 0x3e,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x62, 0x6f, 0x64, 0x79, 0x3e,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x68, 0x65, 0x61, 0x64, 0x3e, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x62, 0x6f,
- 0x64, 0x79, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x63, 0x6f, 0x6e, 0x66, 0x69,
- 0x67, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x62, 0x6f, 0x64, 0x79,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64,
+ 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e,
+ 0x6c, 0x69, 0x6e, 0x65, 0x2d, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73,
0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x2f, 0x74, 0x62, 0x6f, 0x64, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x2f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3e, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64,
- 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c,
- 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x2d,
- 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73, 0x22, 0x3e, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x74, 0x79,
- 0x70, 0x65, 0x3d, 0x22, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x20,
- 0x69, 0x64, 0x3d, 0x22, 0x66, 0x65, 0x74, 0x63, 0x68, 0x2d, 0x63, 0x6f,
- 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x62, 0x74, 0x6e, 0x22, 0x3e, 0x52, 0x45,
- 0x46, 0x52, 0x45, 0x53, 0x48, 0x3c, 0x2f, 0x62, 0x75, 0x74, 0x74, 0x6f,
- 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62, 0x75, 0x74, 0x74,
+ 0x6f, 0x6e, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x62, 0x75, 0x74,
+ 0x74, 0x6f, 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x66, 0x65, 0x74,
+ 0x63, 0x68, 0x2d, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x62, 0x74,
+ 0x6e, 0x22, 0x3e, 0x52, 0x45, 0x46, 0x52, 0x45, 0x53, 0x48, 0x3c, 0x2f,
+ 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69,
- 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76,
- 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20,
- 0x41, 0x75, 0x74, 0x68, 0x20, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x20, 0x4d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x2d, 0x20,
- 0x4d, 0x6f, 0x76, 0x65, 0x64, 0x20, 0x61, 0x66, 0x74, 0x65, 0x72, 0x20,
- 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64,
- 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x73, 0x65,
- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x6c, 0x65, 0x78, 0x2d, 0x73,
- 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
- 0x61, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x53, 0x65, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d,
+ 0x76, 0x3e, 0x0a, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x41, 0x75, 0x74, 0x68, 0x20, 0x52, 0x75,
+ 0x6c, 0x65, 0x73, 0x20, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
+ 0x6e, 0x74, 0x20, 0x2d, 0x20, 0x4d, 0x6f, 0x76, 0x65, 0x64, 0x20, 0x61,
+ 0x66, 0x74, 0x65, 0x72, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75,
+ 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73,
+ 0x73, 0x3d, 0x22, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66,
+ 0x6c, 0x65, 0x78, 0x2d, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22,
+ 0x20, 0x69, 0x64, 0x3d, 0x22, 0x61, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c,
+ 0x65, 0x73, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x73,
+ 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
+ 0x79, 0x3a, 0x20, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x22, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20,
+ 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x73, 0x65, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x2d, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x22, 0x3e, 0x0a,
+ 0x41, 0x55, 0x54, 0x48, 0x20, 0x52, 0x55, 0x4c, 0x45, 0x53, 0x20, 0x4d,
+ 0x41, 0x4e, 0x41, 0x47, 0x45, 0x4d, 0x45, 0x4e, 0x54, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21,
+ 0x2d, 0x2d, 0x20, 0x41, 0x75, 0x74, 0x68, 0x20, 0x52, 0x75, 0x6c, 0x65,
+ 0x73, 0x20, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x2d, 0x2d, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76,
+ 0x20, 0x69, 0x64, 0x3d, 0x22, 0x61, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c,
+ 0x65, 0x73, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x61,
+ 0x69, 0x6e, 0x65, 0x72, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d,
0x22, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x6e, 0x6f,
0x6e, 0x65, 0x3b, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
- 0x3d, 0x22, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x68, 0x65,
- 0x61, 0x64, 0x65, 0x72, 0x22, 0x3e, 0x0a, 0x41, 0x55, 0x54, 0x48, 0x20,
- 0x52, 0x55, 0x4c, 0x45, 0x53, 0x20, 0x4d, 0x41, 0x4e, 0x41, 0x47, 0x45,
- 0x4d, 0x45, 0x4e, 0x54, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x41, 0x75,
- 0x74, 0x68, 0x20, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x20, 0x54, 0x61, 0x62,
- 0x6c, 0x65, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x69, 0x64, 0x3d, 0x22,
- 0x61, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x54, 0x61, 0x62,
- 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x22,
- 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x64, 0x69, 0x73, 0x70,
- 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x22, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x63, 0x6c, 0x61, 0x73,
- 0x73, 0x3d, 0x22, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x74, 0x61,
- 0x62, 0x6c, 0x65, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x61, 0x75, 0x74,
- 0x68, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x22,
- 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x65, 0x61, 0x64,
- 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74,
- 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x63, 0x6f, 0x6e, 0x66,
+ 0x69, 0x67, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x20, 0x69, 0x64,
+ 0x3d, 0x22, 0x61, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x54,
+ 0x61, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
+ 0x74, 0x68, 0x65, 0x61, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x52, 0x75, 0x6c, 0x65, 0x20,
- 0x54, 0x79, 0x70, 0x65, 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74,
- 0x68, 0x3e, 0x50, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x54, 0x79,
- 0x70, 0x65, 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e,
- 0x50, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x20, 0x56, 0x61, 0x6c, 0x75,
- 0x65, 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x52, 0x75, 0x6c, 0x65, 0x20, 0x54, 0x79, 0x70, 0x65, 0x3c, 0x2f, 0x74,
+ 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x53,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x50, 0x61, 0x74, 0x74, 0x65,
+ 0x72, 0x6e, 0x20, 0x54, 0x79, 0x70, 0x65, 0x3c, 0x2f, 0x74, 0x68, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x74, 0x68, 0x3e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3c, 0x2f,
+ 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x50, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e,
+ 0x20, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x74, 0x68, 0x3e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3c, 0x2f,
0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
- 0x74, 0x68, 0x65, 0x61, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x74, 0x62, 0x6f, 0x64, 0x79, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x61, 0x75,
- 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x54, 0x61, 0x62, 0x6c, 0x65,
- 0x42, 0x6f, 0x64, 0x79, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x2f, 0x74, 0x62, 0x6f, 0x64, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x61,
- 0x62, 0x6c, 0x65, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x53, 0x69,
- 0x6d, 0x70, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x64, 0x20, 0x41, 0x75, 0x74,
- 0x68, 0x20, 0x52, 0x75, 0x6c, 0x65, 0x20, 0x49, 0x6e, 0x70, 0x75, 0x74,
- 0x20, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x2d, 0x2d, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69,
- 0x76, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x61, 0x75, 0x74, 0x68, 0x52, 0x75,
- 0x6c, 0x65, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x73, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22,
- 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x62, 0x6c, 0x6f,
- 0x63, 0x6b, 0x3b, 0x22, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20,
- 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x20, 0x50, 0x75, 0x62,
- 0x6b, 0x65, 0x79, 0x20, 0x41, 0x75, 0x74, 0x68, 0x20, 0x52, 0x75, 0x6c,
- 0x65, 0x20, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x2d, 0x2d,
- 0x3e, 0x0a, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61,
- 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x2d, 0x67, 0x72,
- 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c,
- 0x61, 0x62, 0x65, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x3d, 0x22, 0x61, 0x75,
- 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79,
- 0x22, 0x3e, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x28, 0x6e, 0x73,
- 0x65, 0x63, 0x20, 0x6f, 0x72, 0x20, 0x68, 0x65, 0x78, 0x29, 0x3a, 0x3c,
- 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x68, 0x3e, 0x41, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x73, 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d,
- 0x22, 0x74, 0x65, 0x78, 0x74, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x61,
- 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65, 0x50, 0x75, 0x62, 0x6b, 0x65,
- 0x79, 0x22, 0x20, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64,
- 0x65, 0x72, 0x3d, 0x22, 0x6e, 0x73, 0x65, 0x63, 0x31, 0x2e, 0x2e, 0x2e,
- 0x20, 0x6f, 0x72, 0x20, 0x36, 0x34, 0x2d, 0x63, 0x68, 0x61, 0x72, 0x61,
- 0x63, 0x74, 0x65, 0x72, 0x20, 0x68, 0x65, 0x78, 0x20, 0x70, 0x75, 0x62,
- 0x6b, 0x65, 0x79, 0x22, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76,
- 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x77,
- 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x57, 0x61, 0x72, 0x6e,
- 0x69, 0x6e, 0x67, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
- 0x77, 0x61, 0x72, 0x6e, 0x69, 0x6e, 0x67, 0x2d, 0x62, 0x6f, 0x78, 0x22,
- 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x64, 0x69, 0x73, 0x70,
- 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x22, 0x3e,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x68, 0x65, 0x61, 0x64, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x62, 0x6f, 0x64, 0x79, 0x20, 0x69,
+ 0x64, 0x3d, 0x22, 0x61, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65, 0x73,
+ 0x54, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x22, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x62, 0x6f, 0x64, 0x79, 0x3e,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74, 0x72, 0x6f, 0x6e, 0x67,
- 0x3e, 0xe2, 0x9a, 0xa0, 0xef, 0xb8, 0x8f, 0x20, 0x57, 0x41, 0x52, 0x4e,
- 0x49, 0x4e, 0x47, 0x3a, 0x3c, 0x2f, 0x73, 0x74, 0x72, 0x6f, 0x6e, 0x67,
- 0x3e, 0x20, 0x41, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x77, 0x68, 0x69,
- 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x20, 0x72, 0x75, 0x6c, 0x65, 0x73,
- 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x20, 0x72, 0x65, 0x6c,
- 0x61, 0x79, 0x20, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x20,
- 0x74, 0x6f, 0x20, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74,
- 0x2d, 0x6f, 0x6e, 0x6c, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6d, 0x6f,
- 0x64, 0x65, 0x2e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x4f, 0x6e, 0x6c, 0x79,
- 0x20, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x64,
- 0x20, 0x75, 0x73, 0x65, 0x72, 0x73, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20,
- 0x62, 0x65, 0x20, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x69,
- 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x20, 0x77, 0x69, 0x74, 0x68,
- 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2e, 0x0a,
+ 0x20, 0x3c, 0x2f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21,
+ 0x2d, 0x2d, 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x69, 0x66, 0x69, 0x65,
+ 0x64, 0x20, 0x41, 0x75, 0x74, 0x68, 0x20, 0x52, 0x75, 0x6c, 0x65, 0x20,
+ 0x49, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x61,
+ 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x70, 0x75, 0x74,
+ 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x20, 0x73, 0x74,
+ 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
+ 0x3a, 0x20, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x3b, 0x22, 0x3e, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65,
+ 0x64, 0x20, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x41, 0x75, 0x74,
+ 0x68, 0x20, 0x52, 0x75, 0x6c, 0x65, 0x20, 0x53, 0x65, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69,
+ 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x70,
+ 0x75, 0x74, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x20, 0x66, 0x6f,
+ 0x72, 0x3d, 0x22, 0x61, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65, 0x50,
+ 0x75, 0x62, 0x6b, 0x65, 0x79, 0x22, 0x3e, 0x50, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x20, 0x28, 0x6e, 0x73, 0x65, 0x63, 0x20, 0x6f, 0x72, 0x20, 0x68,
+ 0x65, 0x78, 0x29, 0x3a, 0x3c, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20,
+ 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x74, 0x65, 0x78, 0x74, 0x22, 0x20,
+ 0x69, 0x64, 0x3d, 0x22, 0x61, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65,
+ 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x22, 0x20, 0x70, 0x6c, 0x61, 0x63,
+ 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x3d, 0x22, 0x6e, 0x73, 0x65,
+ 0x63, 0x31, 0x2e, 0x2e, 0x2e, 0x20, 0x6f, 0x72, 0x20, 0x36, 0x34, 0x2d,
+ 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x20, 0x68, 0x65,
+ 0x78, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x22, 0x3e, 0x0a, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20,
- 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x6c, 0x69, 0x6e,
- 0x65, 0x2d, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73, 0x22, 0x3e, 0x0a,
+ 0x69, 0x64, 0x3d, 0x22, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73,
+ 0x74, 0x57, 0x61, 0x72, 0x6e, 0x69, 0x6e, 0x67, 0x22, 0x20, 0x63, 0x6c,
+ 0x61, 0x73, 0x73, 0x3d, 0x22, 0x77, 0x61, 0x72, 0x6e, 0x69, 0x6e, 0x67,
+ 0x2d, 0x62, 0x6f, 0x78, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d,
+ 0x22, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x6e, 0x6f,
+ 0x6e, 0x65, 0x3b, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73,
+ 0x74, 0x72, 0x6f, 0x6e, 0x67, 0x3e, 0xe2, 0x9a, 0xa0, 0xef, 0xb8, 0x8f,
+ 0x20, 0x57, 0x41, 0x52, 0x4e, 0x49, 0x4e, 0x47, 0x3a, 0x3c, 0x2f, 0x73,
+ 0x74, 0x72, 0x6f, 0x6e, 0x67, 0x3e, 0x20, 0x41, 0x64, 0x64, 0x69, 0x6e,
+ 0x67, 0x20, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x20,
+ 0x72, 0x75, 0x6c, 0x65, 0x73, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65,
+ 0x73, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x62, 0x65, 0x68, 0x61,
+ 0x76, 0x69, 0x6f, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x77, 0x68, 0x69, 0x74,
+ 0x65, 0x6c, 0x69, 0x73, 0x74, 0x2d, 0x6f, 0x6e, 0x6c, 0x79, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20,
- 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e,
- 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x61, 0x64, 0x64, 0x57, 0x68, 0x69,
- 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x42, 0x74, 0x6e, 0x22, 0x20, 0x6f,
- 0x6e, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x3d, 0x22, 0x61, 0x64, 0x64, 0x57,
- 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x52, 0x75, 0x6c, 0x65,
- 0x28, 0x29, 0x22, 0x3e, 0x41, 0x44, 0x44, 0x20, 0x54, 0x4f, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x6d, 0x6f, 0x64, 0x65, 0x2e, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x57, 0x48, 0x49, 0x54, 0x45,
- 0x4c, 0x49, 0x53, 0x54, 0x3c, 0x2f, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e,
- 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62, 0x75, 0x74, 0x74, 0x6f,
- 0x6e, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x62, 0x75, 0x74, 0x74,
- 0x6f, 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x61, 0x64, 0x64, 0x42,
- 0x6c, 0x61, 0x63, 0x6b, 0x6c, 0x69, 0x73, 0x74, 0x42, 0x74, 0x6e, 0x22,
- 0x20, 0x6f, 0x6e, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x3d, 0x22, 0x61, 0x64,
- 0x64, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x6c, 0x69, 0x73, 0x74, 0x52, 0x75,
- 0x6c, 0x65, 0x28, 0x29, 0x22, 0x3e, 0x41, 0x44, 0x44, 0x20, 0x54, 0x4f,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x42, 0x4c, 0x41,
- 0x43, 0x4b, 0x4c, 0x49, 0x53, 0x54, 0x3c, 0x2f, 0x62, 0x75, 0x74, 0x74,
- 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62, 0x75, 0x74,
- 0x74, 0x6f, 0x6e, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x62, 0x75,
- 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x72, 0x65,
- 0x66, 0x72, 0x65, 0x73, 0x68, 0x41, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c,
- 0x65, 0x73, 0x42, 0x74, 0x6e, 0x22, 0x3e, 0x52, 0x45, 0x46, 0x52, 0x45,
- 0x53, 0x48, 0x3c, 0x2f, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x4f, 0x6e, 0x6c, 0x79, 0x20, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6c,
+ 0x69, 0x73, 0x74, 0x65, 0x64, 0x20, 0x75, 0x73, 0x65, 0x72, 0x73, 0x20,
+ 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x62, 0x65, 0x20, 0x61, 0x62, 0x6c, 0x65,
+ 0x20, 0x74, 0x6f, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74,
+ 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x2e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a,
- 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x21, 0x2d, 0x2d, 0x20, 0x42, 0x4c, 0x4f, 0x53, 0x53, 0x4f, 0x4d, 0x20,
- 0x45, 0x56, 0x45, 0x4e, 0x54, 0x53, 0x20, 0x53, 0x65, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x73,
- 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x53,
- 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c,
- 0x65, 0x3d, 0x22, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x20,
- 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61,
- 0x73, 0x73, 0x3d, 0x22, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d,
- 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x42, 0x4c, 0x4f,
- 0x53, 0x53, 0x4f, 0x4d, 0x20, 0x45, 0x56, 0x45, 0x4e, 0x54, 0x53, 0x20,
- 0x4d, 0x41, 0x4e, 0x41, 0x47, 0x45, 0x4d, 0x45, 0x4e, 0x54, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76,
- 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x21, 0x2d, 0x2d, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x30, 0x3a, 0x20,
- 0x55, 0x73, 0x65, 0x72, 0x20, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74,
- 0x61, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
- 0x3d, 0x22, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x2d, 0x67, 0x72, 0x6f, 0x75,
- 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x68, 0x33, 0x3e, 0x4b, 0x69, 0x6e, 0x64,
- 0x20, 0x30, 0x3a, 0x20, 0x55, 0x73, 0x65, 0x72, 0x20, 0x4d, 0x65, 0x74,
- 0x61, 0x64, 0x61, 0x74, 0x61, 0x3c, 0x2f, 0x68, 0x33, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
+ 0x69, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x2d, 0x62, 0x75, 0x74, 0x74, 0x6f,
+ 0x6e, 0x73, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62, 0x75,
+ 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x62,
+ 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x61,
+ 0x64, 0x64, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x42,
+ 0x74, 0x6e, 0x22, 0x20, 0x6f, 0x6e, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x3d,
+ 0x22, 0x61, 0x64, 0x64, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73,
+ 0x74, 0x52, 0x75, 0x6c, 0x65, 0x28, 0x29, 0x22, 0x3e, 0x41, 0x44, 0x44,
+ 0x20, 0x54, 0x4f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x57, 0x48, 0x49, 0x54, 0x45, 0x4c, 0x49, 0x53, 0x54, 0x3c, 0x2f, 0x62,
+ 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x66,
- 0x6f, 0x72, 0x6d, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a,
+ 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d,
+ 0x22, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d,
+ 0x22, 0x61, 0x64, 0x64, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x6c, 0x69, 0x73,
+ 0x74, 0x42, 0x74, 0x6e, 0x22, 0x20, 0x6f, 0x6e, 0x63, 0x6c, 0x69, 0x63,
+ 0x6b, 0x3d, 0x22, 0x61, 0x64, 0x64, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x6c,
+ 0x69, 0x73, 0x74, 0x52, 0x75, 0x6c, 0x65, 0x28, 0x29, 0x22, 0x3e, 0x41,
+ 0x44, 0x44, 0x20, 0x54, 0x4f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x20, 0x66,
- 0x6f, 0x72, 0x3d, 0x22, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x6e, 0x61,
- 0x6d, 0x65, 0x22, 0x3e, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x3c, 0x2f, 0x6c,
- 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x69,
- 0x6e, 0x70, 0x75, 0x74, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x74,
- 0x65, 0x78, 0x74, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6b, 0x69, 0x6e,
- 0x64, 0x30, 0x2d, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x20, 0x70, 0x6c, 0x61,
- 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x3d, 0x22, 0x42, 0x6c,
- 0x6f, 0x73, 0x73, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72,
- 0x20, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69,
- 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73,
- 0x73, 0x3d, 0x22, 0x66, 0x6f, 0x72, 0x6d, 0x2d, 0x67, 0x72, 0x6f, 0x75,
- 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x61, 0x62,
- 0x65, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x3d, 0x22, 0x6b, 0x69, 0x6e, 0x64,
- 0x30, 0x2d, 0x61, 0x62, 0x6f, 0x75, 0x74, 0x22, 0x3e, 0x41, 0x62, 0x6f,
- 0x75, 0x74, 0x3a, 0x3c, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x0a,
+ 0x20, 0x20, 0x42, 0x4c, 0x41, 0x43, 0x4b, 0x4c, 0x49, 0x53, 0x54, 0x3c,
+ 0x2f, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x65, 0x78, 0x74, 0x61, 0x72, 0x65,
- 0x61, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d,
- 0x61, 0x62, 0x6f, 0x75, 0x74, 0x22, 0x20, 0x72, 0x6f, 0x77, 0x73, 0x3d,
- 0x22, 0x33, 0x22, 0x20, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c,
- 0x64, 0x65, 0x72, 0x3d, 0x22, 0x42, 0x6c, 0x6f, 0x73, 0x73, 0x6f, 0x6d,
- 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x20, 0x44, 0x65, 0x73, 0x63,
- 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x3c, 0x2f, 0x74,
- 0x65, 0x78, 0x74, 0x61, 0x72, 0x65, 0x61, 0x3e, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64,
- 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x3c, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x74, 0x79, 0x70,
+ 0x65, 0x3d, 0x22, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x20, 0x69,
+ 0x64, 0x3d, 0x22, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x41, 0x75,
+ 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x42, 0x74, 0x6e, 0x22, 0x3e,
+ 0x52, 0x45, 0x46, 0x52, 0x45, 0x53, 0x48, 0x3c, 0x2f, 0x62, 0x75, 0x74,
+ 0x74, 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
+ 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
+ 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x42, 0x4c, 0x4f,
+ 0x53, 0x53, 0x4f, 0x4d, 0x20, 0x45, 0x56, 0x45, 0x4e, 0x54, 0x53, 0x20,
+ 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x2d, 0x2d, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61,
+ 0x73, 0x73, 0x3d, 0x22, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22,
+ 0x20, 0x69, 0x64, 0x3d, 0x22, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x45, 0x76,
+ 0x65, 0x6e, 0x74, 0x73, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22,
+ 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x64, 0x69, 0x73, 0x70,
+ 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x22, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69,
+ 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x73, 0x65, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x22,
+ 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x42, 0x4c, 0x4f, 0x53, 0x53, 0x4f, 0x4d, 0x20, 0x45, 0x56,
+ 0x45, 0x4e, 0x54, 0x53, 0x20, 0x4d, 0x41, 0x4e, 0x41, 0x47, 0x45, 0x4d,
+ 0x45, 0x4e, 0x54, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x4b, 0x69, 0x6e,
+ 0x64, 0x20, 0x30, 0x3a, 0x20, 0x55, 0x73, 0x65, 0x72, 0x20, 0x4d, 0x65,
+ 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20,
+ 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x70, 0x75, 0x74,
+ 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x68, 0x33,
+ 0x3e, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x30, 0x3a, 0x20, 0x55, 0x73, 0x65,
+ 0x72, 0x20, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x3c, 0x2f,
+ 0x68, 0x33, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61,
0x73, 0x73, 0x3d, 0x22, 0x66, 0x6f, 0x72, 0x6d, 0x2d, 0x67, 0x72, 0x6f,
0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x61,
0x62, 0x65, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x3d, 0x22, 0x6b, 0x69, 0x6e,
- 0x64, 0x30, 0x2d, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x22, 0x3e,
- 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x20, 0x55, 0x52, 0x4c, 0x3a,
- 0x3c, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x0a, 0x20, 0x20, 0x20,
+ 0x64, 0x30, 0x2d, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x3e, 0x4e, 0x61, 0x6d,
+ 0x65, 0x3a, 0x3c, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x74, 0x79, 0x70, 0x65,
- 0x3d, 0x22, 0x75, 0x72, 0x6c, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6b,
- 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
+ 0x20, 0x20, 0x20, 0x3c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x74, 0x79,
+ 0x70, 0x65, 0x3d, 0x22, 0x74, 0x65, 0x78, 0x74, 0x22, 0x20, 0x69, 0x64,
+ 0x3d, 0x22, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x6e, 0x61, 0x6d, 0x65,
0x22, 0x20, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65,
- 0x72, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x65,
- 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6c,
- 0x6f, 0x67, 0x6f, 0x2e, 0x70, 0x6e, 0x67, 0x22, 0x3e, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
- 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c,
- 0x61, 0x73, 0x73, 0x3d, 0x22, 0x66, 0x6f, 0x72, 0x6d, 0x2d, 0x67, 0x72,
- 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c,
- 0x61, 0x62, 0x65, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x3d, 0x22, 0x6b, 0x69,
- 0x6e, 0x64, 0x30, 0x2d, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x22, 0x3e,
- 0x42, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x20, 0x55, 0x52, 0x4c, 0x3a, 0x3c,
- 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d,
- 0x22, 0x75, 0x72, 0x6c, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6b, 0x69,
- 0x6e, 0x64, 0x30, 0x2d, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x22, 0x20,
- 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x3d,
- 0x22, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x65, 0x78, 0x61,
- 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x62, 0x61, 0x6e,
- 0x6e, 0x65, 0x72, 0x2e, 0x70, 0x6e, 0x67, 0x22, 0x3e, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
- 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c,
- 0x61, 0x73, 0x73, 0x3d, 0x22, 0x66, 0x6f, 0x72, 0x6d, 0x2d, 0x67, 0x72,
- 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c,
- 0x61, 0x62, 0x65, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x3d, 0x22, 0x6b, 0x69,
- 0x6e, 0x64, 0x30, 0x2d, 0x6e, 0x69, 0x70, 0x30, 0x35, 0x22, 0x3e, 0x4e,
- 0x49, 0x50, 0x2d, 0x30, 0x35, 0x3a, 0x3c, 0x2f, 0x6c, 0x61, 0x62, 0x65,
- 0x6c, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x69, 0x6e, 0x70, 0x75,
- 0x74, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x74, 0x65, 0x78, 0x74,
- 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d,
- 0x6e, 0x69, 0x70, 0x30, 0x35, 0x22, 0x20, 0x70, 0x6c, 0x61, 0x63, 0x65,
- 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x3d, 0x22, 0x62, 0x6c, 0x6f, 0x73,
- 0x73, 0x6f, 0x6d, 0x40, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e,
- 0x63, 0x6f, 0x6d, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e,
+ 0x72, 0x3d, 0x22, 0x42, 0x6c, 0x6f, 0x73, 0x73, 0x6f, 0x6d, 0x20, 0x53,
+ 0x65, 0x72, 0x76, 0x65, 0x72, 0x20, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x3e,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
- 0x22, 0x66, 0x6f, 0x72, 0x6d, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22,
- 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x61, 0x62, 0x65, 0x6c,
- 0x20, 0x66, 0x6f, 0x72, 0x3d, 0x22, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d,
- 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x22, 0x3e, 0x57, 0x65, 0x62,
- 0x73, 0x69, 0x74, 0x65, 0x3a, 0x3c, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c,
- 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x69, 0x6e, 0x70, 0x75, 0x74,
- 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x75, 0x72, 0x6c, 0x22, 0x20,
- 0x69, 0x64, 0x3d, 0x22, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x77, 0x65,
- 0x62, 0x73, 0x69, 0x74, 0x65, 0x22, 0x20, 0x70, 0x6c, 0x61, 0x63, 0x65,
- 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70,
- 0x73, 0x3a, 0x2f, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e,
- 0x63, 0x6f, 0x6d, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
- 0x22, 0x69, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x2d, 0x62, 0x75, 0x74, 0x74,
- 0x6f, 0x6e, 0x73, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62,
- 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22,
- 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
- 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x2d, 0x6b, 0x69, 0x6e, 0x64, 0x30,
- 0x2d, 0x62, 0x74, 0x6e, 0x22, 0x3e, 0x55, 0x50, 0x44, 0x41, 0x54, 0x45,
- 0x20, 0x4d, 0x45, 0x54, 0x41, 0x44, 0x41, 0x54, 0x41, 0x3c, 0x2f, 0x62,
- 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76,
- 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6b,
- 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22,
- 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x73, 0x74, 0x61, 0x74,
- 0x75, 0x73, 0x2d, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x3e,
- 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20,
- 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30, 0x35, 0x30, 0x3a, 0x20,
- 0x44, 0x4d, 0x20, 0x42, 0x6c, 0x6f, 0x73, 0x73, 0x6f, 0x6d, 0x20, 0x4c,
- 0x69, 0x73, 0x74, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61,
- 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x2d, 0x67, 0x72,
- 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x68, 0x33, 0x3e, 0x4b, 0x69,
- 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30, 0x35, 0x30, 0x3a, 0x20, 0x44, 0x4d,
- 0x20, 0x42, 0x6c, 0x6f, 0x73, 0x73, 0x6f, 0x6d, 0x20, 0x4c, 0x69, 0x73,
- 0x74, 0x3c, 0x2f, 0x68, 0x33, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20,
- 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x66, 0x6f, 0x72, 0x6d, 0x2d,
- 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76,
+ 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x66, 0x6f, 0x72, 0x6d,
+ 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x3d, 0x22,
- 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x2d, 0x72, 0x65,
- 0x6c, 0x61, 0x79, 0x73, 0x22, 0x3e, 0x42, 0x6c, 0x6f, 0x73, 0x73, 0x6f,
- 0x6d, 0x20, 0x55, 0x52, 0x4c, 0x73, 0x20, 0x28, 0x6f, 0x6e, 0x65, 0x20,
- 0x70, 0x65, 0x72, 0x20, 0x6c, 0x69, 0x6e, 0x65, 0x29, 0x3a, 0x3c, 0x2f,
- 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x74, 0x65, 0x78, 0x74, 0x61, 0x72, 0x65, 0x61, 0x20, 0x69, 0x64, 0x3d,
- 0x22, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x2d, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x73, 0x22, 0x20, 0x72, 0x6f, 0x77, 0x73, 0x3d,
- 0x22, 0x34, 0x22, 0x20, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c,
- 0x64, 0x65, 0x72, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f,
- 0x2f, 0x62, 0x6c, 0x6f, 0x73, 0x73, 0x6f, 0x6d, 0x31, 0x2e, 0x63, 0x6f,
- 0x6d, 0x26, 0x23, 0x31, 0x30, 0x3b, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a,
- 0x2f, 0x2f, 0x62, 0x6c, 0x6f, 0x73, 0x73, 0x6f, 0x6d, 0x32, 0x2e, 0x63,
- 0x6f, 0x6d, 0x22, 0x3e, 0x3c, 0x2f, 0x74, 0x65, 0x78, 0x74, 0x61, 0x72,
- 0x65, 0x61, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69,
- 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x2d, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e,
- 0x73, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62, 0x75, 0x74,
- 0x74, 0x6f, 0x6e, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x62, 0x75,
- 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x75,
- 0x62, 0x6d, 0x69, 0x74, 0x2d, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30,
- 0x35, 0x30, 0x2d, 0x62, 0x74, 0x6e, 0x22, 0x3e, 0x55, 0x50, 0x44, 0x41,
- 0x54, 0x45, 0x20, 0x44, 0x4d, 0x20, 0x42, 0x4c, 0x4f, 0x53, 0x53, 0x4f,
- 0x4d, 0x20, 0x53, 0x45, 0x52, 0x56, 0x45, 0x52, 0x53, 0x3c, 0x2f, 0x62,
- 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76,
- 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6b,
- 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x2d, 0x73, 0x74, 0x61,
- 0x74, 0x75, 0x73, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
- 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2d, 0x6d, 0x65, 0x73, 0x73, 0x61,
- 0x67, 0x65, 0x22, 0x3e, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76,
- 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x21, 0x2d, 0x2d, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30,
- 0x30, 0x32, 0x3a, 0x20, 0x42, 0x6c, 0x6f, 0x73, 0x73, 0x6f, 0x6d, 0x20,
- 0x4c, 0x69, 0x73, 0x74, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c,
- 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x2d, 0x67,
- 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x68, 0x33, 0x3e, 0x4b,
- 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30, 0x30, 0x32, 0x3a, 0x20, 0x42,
- 0x6c, 0x6f, 0x73, 0x73, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x72, 0x76, 0x65,
- 0x72, 0x20, 0x4c, 0x69, 0x73, 0x74, 0x3c, 0x2f, 0x68, 0x33, 0x3e, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x64, 0x69, 0x76, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6b, 0x69, 0x6e,
- 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x2d, 0x72, 0x65, 0x6c, 0x61, 0x79,
- 0x2d, 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x22, 0x3e, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x44, 0x79, 0x6e, 0x61,
- 0x6d, 0x69, 0x63, 0x20, 0x62, 0x6c, 0x6f, 0x73, 0x73, 0x6f, 0x6d, 0x20,
- 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x20, 0x65, 0x6e, 0x74, 0x72, 0x69,
- 0x65, 0x73, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x62, 0x65, 0x20, 0x61,
- 0x64, 0x64, 0x65, 0x64, 0x20, 0x68, 0x65, 0x72, 0x65, 0x20, 0x2d, 0x2d,
+ 0x20, 0x3c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x3d,
+ 0x22, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x61, 0x62, 0x6f, 0x75, 0x74,
+ 0x22, 0x3e, 0x41, 0x62, 0x6f, 0x75, 0x74, 0x3a, 0x3c, 0x2f, 0x6c, 0x61,
+ 0x62, 0x65, 0x6c, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x65,
+ 0x78, 0x74, 0x61, 0x72, 0x65, 0x61, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6b,
+ 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x61, 0x62, 0x6f, 0x75, 0x74, 0x22, 0x20,
+ 0x72, 0x6f, 0x77, 0x73, 0x3d, 0x22, 0x33, 0x22, 0x20, 0x70, 0x6c, 0x61,
+ 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x3d, 0x22, 0x42, 0x6c,
+ 0x6f, 0x73, 0x73, 0x6f, 0x6d, 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72,
+ 0x20, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
+ 0x22, 0x3e, 0x3c, 0x2f, 0x74, 0x65, 0x78, 0x74, 0x61, 0x72, 0x65, 0x61,
0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69,
- 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x6c,
- 0x69, 0x6e, 0x65, 0x2d, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73, 0x22,
- 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62, 0x75, 0x74, 0x74, 0x6f,
- 0x6e, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x62, 0x75, 0x74, 0x74,
- 0x6f, 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x61, 0x64, 0x64, 0x2d,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x2d,
- 0x62, 0x74, 0x6e, 0x22, 0x3e, 0x41, 0x44, 0x44, 0x20, 0x53, 0x45, 0x52,
- 0x56, 0x45, 0x52, 0x3c, 0x2f, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e,
- 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x62, 0x75, 0x74, 0x74, 0x6f,
- 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x75, 0x62, 0x6d, 0x69,
- 0x74, 0x2d, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x2d,
- 0x62, 0x74, 0x6e, 0x22, 0x3e, 0x55, 0x50, 0x44, 0x41, 0x54, 0x45, 0x20,
- 0x53, 0x45, 0x52, 0x56, 0x45, 0x52, 0x53, 0x3c, 0x2f, 0x62, 0x75, 0x74,
- 0x74, 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a,
+ 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x66, 0x6f, 0x72,
+ 0x6d, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x64, 0x69, 0x76, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6b, 0x69, 0x6e,
- 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75,
- 0x73, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x73, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x2d, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
- 0x22, 0x3e, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x53, 0x51, 0x4c,
- 0x20, 0x51, 0x55, 0x45, 0x52, 0x59, 0x20, 0x53, 0x65, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x73,
- 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
- 0x73, 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22,
- 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x6e, 0x6f, 0x6e,
- 0x65, 0x3b, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
- 0x22, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x68, 0x65, 0x61,
- 0x64, 0x65, 0x72, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x68, 0x32, 0x3e, 0x53, 0x51,
- 0x4c, 0x20, 0x51, 0x55, 0x45, 0x52, 0x59, 0x20, 0x43, 0x4f, 0x4e, 0x53,
- 0x4f, 0x4c, 0x45, 0x3c, 0x2f, 0x68, 0x32, 0x3e, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d,
- 0x2d, 0x20, 0x51, 0x75, 0x65, 0x72, 0x79, 0x20, 0x53, 0x65, 0x6c, 0x65,
- 0x63, 0x74, 0x6f, 0x72, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c,
- 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x2d, 0x67,
- 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x61, 0x62, 0x65,
- 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x3d, 0x22, 0x71, 0x75, 0x65, 0x72, 0x79,
- 0x2d, 0x64, 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e, 0x22, 0x3e, 0x51,
- 0x75, 0x69, 0x63, 0x6b, 0x20, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73,
- 0x20, 0x26, 0x20, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x3a, 0x3c,
+ 0x20, 0x20, 0x3c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x20, 0x66, 0x6f, 0x72,
+ 0x3d, 0x22, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x70, 0x69, 0x63, 0x74,
+ 0x75, 0x72, 0x65, 0x22, 0x3e, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
+ 0x20, 0x55, 0x52, 0x4c, 0x3a, 0x3c, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c,
+ 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x69, 0x6e, 0x70, 0x75, 0x74,
+ 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x75, 0x72, 0x6c, 0x22, 0x20,
+ 0x69, 0x64, 0x3d, 0x22, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x70, 0x69,
+ 0x63, 0x74, 0x75, 0x72, 0x65, 0x22, 0x20, 0x70, 0x6c, 0x61, 0x63, 0x65,
+ 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70,
+ 0x73, 0x3a, 0x2f, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e,
+ 0x63, 0x6f, 0x6d, 0x2f, 0x6c, 0x6f, 0x67, 0x6f, 0x2e, 0x70, 0x6e, 0x67,
+ 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64,
+ 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x66, 0x6f,
+ 0x72, 0x6d, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x20, 0x66, 0x6f,
+ 0x72, 0x3d, 0x22, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x62, 0x61, 0x6e,
+ 0x6e, 0x65, 0x72, 0x22, 0x3e, 0x42, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x20,
+ 0x55, 0x52, 0x4c, 0x3a, 0x3c, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20,
+ 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x75, 0x72, 0x6c, 0x22, 0x20, 0x69,
+ 0x64, 0x3d, 0x22, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x62, 0x61, 0x6e,
+ 0x6e, 0x65, 0x72, 0x22, 0x20, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f,
+ 0x6c, 0x64, 0x65, 0x72, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a,
+ 0x2f, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f,
+ 0x6d, 0x2f, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x2e, 0x70, 0x6e, 0x67,
+ 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64,
+ 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x66, 0x6f,
+ 0x72, 0x6d, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x20, 0x66, 0x6f,
+ 0x72, 0x3d, 0x22, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x6e, 0x69, 0x70,
+ 0x30, 0x35, 0x22, 0x3e, 0x4e, 0x49, 0x50, 0x2d, 0x30, 0x35, 0x3a, 0x3c,
0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x65, 0x6c,
- 0x65, 0x63, 0x74, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x71, 0x75, 0x65, 0x72,
- 0x79, 0x2d, 0x64, 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e, 0x22, 0x20,
- 0x6f, 0x6e, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x3d, 0x22, 0x6c, 0x6f,
- 0x61, 0x64, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x65, 0x64, 0x51, 0x75,
- 0x65, 0x72, 0x79, 0x28, 0x29, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x76, 0x61, 0x6c, 0x75,
- 0x65, 0x3d, 0x22, 0x22, 0x3e, 0x2d, 0x2d, 0x20, 0x53, 0x65, 0x6c, 0x65,
- 0x63, 0x74, 0x20, 0x61, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x2d,
- 0x2d, 0x3c, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x3e, 0x0a, 0x20,
+ 0x3c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d,
+ 0x22, 0x74, 0x65, 0x78, 0x74, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6b,
+ 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x6e, 0x69, 0x70, 0x30, 0x35, 0x22, 0x20,
+ 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x3d,
+ 0x22, 0x62, 0x6c, 0x6f, 0x73, 0x73, 0x6f, 0x6d, 0x40, 0x65, 0x78, 0x61,
+ 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x22, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
+ 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63,
+ 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x66, 0x6f, 0x72, 0x6d, 0x2d, 0x67,
+ 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
+ 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x3d, 0x22, 0x6b,
+ 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65,
+ 0x22, 0x3e, 0x57, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x3a, 0x3c, 0x2f,
+ 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
+ 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22,
+ 0x75, 0x72, 0x6c, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6b, 0x69, 0x6e,
+ 0x64, 0x30, 0x2d, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x22, 0x20,
+ 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x3d,
+ 0x22, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x65, 0x78, 0x61,
+ 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x22, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
+ 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63,
+ 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x6c, 0x69, 0x6e, 0x65,
+ 0x2d, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73, 0x22, 0x3e, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x70, 0x74, 0x67, 0x72, 0x6f, 0x75, 0x70,
- 0x20, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3d, 0x22, 0x43, 0x6f, 0x6d, 0x6d,
- 0x6f, 0x6e, 0x20, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3d, 0x22,
- 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74,
- 0x73, 0x22, 0x3e, 0x52, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x20, 0x45, 0x76,
- 0x65, 0x6e, 0x74, 0x73, 0x3c, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
- 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
- 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3d,
- 0x22, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73,
- 0x22, 0x3e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x53, 0x74, 0x61, 0x74,
- 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x3c, 0x2f, 0x6f, 0x70, 0x74, 0x69,
- 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x74,
+ 0x79, 0x70, 0x65, 0x3d, 0x22, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22,
+ 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x2d,
+ 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x62, 0x74, 0x6e, 0x22, 0x3e, 0x55,
+ 0x50, 0x44, 0x41, 0x54, 0x45, 0x20, 0x4d, 0x45, 0x54, 0x41, 0x44, 0x41,
+ 0x54, 0x41, 0x3c, 0x2f, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x76, 0x61, 0x6c, 0x75,
- 0x65, 0x3d, 0x22, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x3e, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65,
- 0x20, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x73, 0x3c, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x3e, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3d, 0x22, 0x74,
- 0x6f, 0x70, 0x5f, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x22, 0x3e,
- 0x54, 0x6f, 0x70, 0x20, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x3c,
- 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3d, 0x22, 0x65, 0x76, 0x65, 0x6e,
- 0x74, 0x5f, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x22, 0x3e, 0x45, 0x76, 0x65,
- 0x6e, 0x74, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x73, 0x20, 0x44, 0x69, 0x73,
- 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x3c, 0x2f, 0x6f,
- 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x3d, 0x22, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x73,
- 0x74, 0x61, 0x74, 0x73, 0x22, 0x3e, 0x54, 0x69, 0x6d, 0x65, 0x2d, 0x62,
- 0x61, 0x73, 0x65, 0x64, 0x20, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74,
- 0x69, 0x63, 0x73, 0x3c, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x70, 0x74, 0x67, 0x72,
- 0x6f, 0x75, 0x70, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x70,
- 0x74, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x20, 0x6c, 0x61, 0x62, 0x65, 0x6c,
- 0x3d, 0x22, 0x51, 0x75, 0x65, 0x72, 0x79, 0x20, 0x48, 0x69, 0x73, 0x74,
- 0x6f, 0x72, 0x79, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x68, 0x69, 0x73,
- 0x74, 0x6f, 0x72, 0x79, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d,
- 0x2d, 0x20, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x61, 0x6c, 0x6c,
- 0x79, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x20,
- 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x74,
- 0x6f, 0x72, 0x61, 0x67, 0x65, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x70, 0x74, 0x67, 0x72, 0x6f, 0x75, 0x70,
- 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x2f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x3e, 0x0a,
+ 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20,
+ 0x69, 0x64, 0x3d, 0x22, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x73, 0x74,
+ 0x61, 0x74, 0x75, 0x73, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
+ 0x22, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2d, 0x6d, 0x65, 0x73, 0x73,
+ 0x61, 0x67, 0x65, 0x22, 0x3e, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69,
0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x51, 0x75, 0x65, 0x72, 0x79, 0x20, 0x45,
- 0x64, 0x69, 0x74, 0x6f, 0x72, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63,
- 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x2d,
- 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x61, 0x62,
- 0x65, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x3d, 0x22, 0x73, 0x71, 0x6c, 0x2d,
- 0x69, 0x6e, 0x70, 0x75, 0x74, 0x22, 0x3e, 0x53, 0x51, 0x4c, 0x20, 0x51,
- 0x75, 0x65, 0x72, 0x79, 0x3a, 0x3c, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c,
- 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x74, 0x65, 0x78, 0x74, 0x61, 0x72, 0x65, 0x61, 0x20,
- 0x69, 0x64, 0x3d, 0x22, 0x73, 0x71, 0x6c, 0x2d, 0x69, 0x6e, 0x70, 0x75,
- 0x74, 0x22, 0x20, 0x72, 0x6f, 0x77, 0x73, 0x3d, 0x22, 0x35, 0x22, 0x20,
- 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x3d,
- 0x22, 0x53, 0x45, 0x4c, 0x45, 0x43, 0x54, 0x20, 0x2a, 0x20, 0x46, 0x52,
- 0x4f, 0x4d, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x4c, 0x49,
- 0x4d, 0x49, 0x54, 0x20, 0x31, 0x30, 0x22, 0x3e, 0x3c, 0x2f, 0x74, 0x65,
- 0x78, 0x74, 0x61, 0x72, 0x65, 0x61, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d,
- 0x20, 0x51, 0x75, 0x65, 0x72, 0x79, 0x20, 0x41, 0x63, 0x74, 0x69, 0x6f,
- 0x6e, 0x73, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73,
- 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x2d, 0x67, 0x72, 0x6f,
- 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c,
- 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x2d,
- 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73, 0x22, 0x3e, 0x0a, 0x20, 0x20,
+ 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30,
+ 0x30, 0x35, 0x30, 0x3a, 0x20, 0x44, 0x4d, 0x20, 0x42, 0x6c, 0x6f, 0x73,
+ 0x73, 0x6f, 0x6d, 0x20, 0x4c, 0x69, 0x73, 0x74, 0x20, 0x2d, 0x2d, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69,
+ 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x70,
+ 0x75, 0x74, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
+ 0x68, 0x33, 0x3e, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30, 0x35,
+ 0x30, 0x3a, 0x20, 0x44, 0x4d, 0x20, 0x42, 0x6c, 0x6f, 0x73, 0x73, 0x6f,
+ 0x6d, 0x20, 0x4c, 0x69, 0x73, 0x74, 0x3c, 0x2f, 0x68, 0x33, 0x3e, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x74, 0x79,
- 0x70, 0x65, 0x3d, 0x22, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x20,
- 0x69, 0x64, 0x3d, 0x22, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x2d,
- 0x73, 0x71, 0x6c, 0x2d, 0x62, 0x74, 0x6e, 0x22, 0x3e, 0x45, 0x58, 0x45,
- 0x43, 0x55, 0x54, 0x45, 0x20, 0x51, 0x55, 0x45, 0x52, 0x59, 0x3c, 0x2f,
- 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
+ 0x66, 0x6f, 0x72, 0x6d, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x20,
+ 0x66, 0x6f, 0x72, 0x3d, 0x22, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30,
+ 0x35, 0x30, 0x2d, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x22, 0x3e, 0x42,
+ 0x6c, 0x6f, 0x73, 0x73, 0x6f, 0x6d, 0x20, 0x55, 0x52, 0x4c, 0x73, 0x20,
+ 0x28, 0x6f, 0x6e, 0x65, 0x20, 0x70, 0x65, 0x72, 0x20, 0x6c, 0x69, 0x6e,
+ 0x65, 0x29, 0x3a, 0x3c, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x74, 0x79, 0x70, 0x65,
- 0x3d, 0x22, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x20, 0x69, 0x64,
- 0x3d, 0x22, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x2d, 0x73, 0x71, 0x6c, 0x2d,
- 0x62, 0x74, 0x6e, 0x22, 0x3e, 0x43, 0x4c, 0x45, 0x41, 0x52, 0x3c, 0x2f,
- 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x65, 0x78, 0x74, 0x61, 0x72, 0x65,
+ 0x61, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30,
+ 0x30, 0x35, 0x30, 0x2d, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x22, 0x20,
+ 0x72, 0x6f, 0x77, 0x73, 0x3d, 0x22, 0x34, 0x22, 0x20, 0x70, 0x6c, 0x61,
+ 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x3d, 0x22, 0x68, 0x74,
+ 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x62, 0x6c, 0x6f, 0x73, 0x73, 0x6f,
+ 0x6d, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x26, 0x23, 0x31, 0x30, 0x3b, 0x68,
+ 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x62, 0x6c, 0x6f, 0x73, 0x73,
+ 0x6f, 0x6d, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x22, 0x3e, 0x3c, 0x2f, 0x74,
+ 0x65, 0x78, 0x74, 0x61, 0x72, 0x65, 0x61, 0x3e, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64,
+ 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61,
+ 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x2d, 0x62,
+ 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x74, 0x79, 0x70, 0x65,
- 0x3d, 0x22, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x20, 0x69, 0x64,
- 0x3d, 0x22, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x2d, 0x68, 0x69, 0x73, 0x74,
- 0x6f, 0x72, 0x79, 0x2d, 0x62, 0x74, 0x6e, 0x22, 0x3e, 0x43, 0x4c, 0x45,
- 0x41, 0x52, 0x20, 0x48, 0x49, 0x53, 0x54, 0x4f, 0x52, 0x59, 0x3c, 0x2f,
- 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69,
- 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x51, 0x75, 0x65, 0x72,
- 0x79, 0x20, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x20, 0x2d, 0x2d,
+ 0x20, 0x3c, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x74, 0x79, 0x70,
+ 0x65, 0x3d, 0x22, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x20, 0x69,
+ 0x64, 0x3d, 0x22, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x2d, 0x6b, 0x69,
+ 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x2d, 0x62, 0x74, 0x6e, 0x22,
+ 0x3e, 0x55, 0x50, 0x44, 0x41, 0x54, 0x45, 0x20, 0x44, 0x4d, 0x20, 0x42,
+ 0x4c, 0x4f, 0x53, 0x53, 0x4f, 0x4d, 0x20, 0x53, 0x45, 0x52, 0x56, 0x45,
+ 0x52, 0x53, 0x3c, 0x2f, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20,
+ 0x69, 0x64, 0x3d, 0x22, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35,
+ 0x30, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x20, 0x63, 0x6c,
+ 0x61, 0x73, 0x73, 0x3d, 0x22, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2d,
+ 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x3e, 0x3c, 0x2f, 0x64,
+ 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x4b, 0x69, 0x6e,
+ 0x64, 0x20, 0x31, 0x30, 0x30, 0x30, 0x32, 0x3a, 0x20, 0x42, 0x6c, 0x6f,
+ 0x73, 0x73, 0x6f, 0x6d, 0x20, 0x4c, 0x69, 0x73, 0x74, 0x20, 0x2d, 0x2d,
0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64,
0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e,
0x70, 0x75, 0x74, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x51, 0x75, 0x65, 0x72, 0x79,
- 0x20, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x3a, 0x3c, 0x2f, 0x6c,
- 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x69,
- 0x64, 0x3d, 0x22, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2d, 0x69, 0x6e, 0x66,
- 0x6f, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e,
- 0x66, 0x6f, 0x2d, 0x62, 0x6f, 0x78, 0x22, 0x3e, 0x3c, 0x2f, 0x64, 0x69,
- 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x69, 0x64, 0x3d, 0x22,
- 0x71, 0x75, 0x65, 0x72, 0x79, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22,
- 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x63, 0x6f, 0x6e, 0x66,
- 0x69, 0x67, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x63, 0x6f, 0x6e,
- 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x22, 0x3e, 0x3c, 0x2f, 0x64, 0x69,
- 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
- 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21,
- 0x2d, 0x2d, 0x20, 0x4c, 0x6f, 0x61, 0x64, 0x20, 0x74, 0x68, 0x65, 0x20,
- 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61, 0x6c, 0x20, 0x6e, 0x6f, 0x73,
- 0x74, 0x72, 0x2d, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x20, 0x62, 0x75, 0x6e,
- 0x64, 0x6c, 0x65, 0x20, 0x66, 0x69, 0x72, 0x73, 0x74, 0x20, 0x2d, 0x2d,
- 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x3c,
- 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x20, 0x73, 0x72, 0x63, 0x3d, 0x22,
- 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x6c, 0x61, 0x61, 0x6e,
- 0x74, 0x75, 0x6e, 0x67, 0x69, 0x72, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x6e,
- 0x6f, 0x73, 0x74, 0x72, 0x2d, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x2d, 0x6c,
- 0x69, 0x74, 0x65, 0x2f, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2e, 0x62, 0x75,
- 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x6a, 0x73, 0x22, 0x3e, 0x3c, 0x2f, 0x73,
- 0x63, 0x72, 0x69, 0x70, 0x74, 0x3e, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x20, 0x73,
- 0x72, 0x63, 0x3d, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6e, 0x6f, 0x73,
+ 0x3c, 0x68, 0x33, 0x3e, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30,
+ 0x30, 0x32, 0x3a, 0x20, 0x42, 0x6c, 0x6f, 0x73, 0x73, 0x6f, 0x6d, 0x20,
+ 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x20, 0x4c, 0x69, 0x73, 0x74, 0x3c,
+ 0x2f, 0x68, 0x33, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x69, 0x64,
+ 0x3d, 0x22, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x2d,
+ 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65,
+ 0x73, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d,
+ 0x20, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x20, 0x62, 0x6c, 0x6f,
+ 0x73, 0x73, 0x6f, 0x6d, 0x20, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x20,
+ 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x20, 0x77, 0x69, 0x6c, 0x6c,
+ 0x20, 0x62, 0x65, 0x20, 0x61, 0x64, 0x64, 0x65, 0x64, 0x20, 0x68, 0x65,
+ 0x72, 0x65, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76,
+ 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
+ 0x3d, 0x22, 0x69, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x2d, 0x62, 0x75, 0x74,
+ 0x74, 0x6f, 0x6e, 0x73, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
+ 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d,
+ 0x22, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d,
+ 0x22, 0x61, 0x64, 0x64, 0x2d, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x65,
+ 0x6e, 0x74, 0x72, 0x79, 0x2d, 0x62, 0x74, 0x6e, 0x22, 0x3e, 0x41, 0x44,
+ 0x44, 0x20, 0x53, 0x45, 0x52, 0x56, 0x45, 0x52, 0x3c, 0x2f, 0x62, 0x75,
+ 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62,
+ 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22,
+ 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
+ 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x2d, 0x6b, 0x69, 0x6e, 0x64, 0x31,
+ 0x30, 0x30, 0x30, 0x32, 0x2d, 0x62, 0x74, 0x6e, 0x22, 0x3e, 0x55, 0x50,
+ 0x44, 0x41, 0x54, 0x45, 0x20, 0x53, 0x45, 0x52, 0x56, 0x45, 0x52, 0x53,
+ 0x3c, 0x2f, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
+ 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x69, 0x64,
+ 0x3d, 0x22, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x2d,
+ 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73,
+ 0x73, 0x3d, 0x22, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2d, 0x6d, 0x65,
+ 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x3e, 0x3c, 0x2f, 0x64, 0x69, 0x76,
+ 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
+ 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64,
+ 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d,
+ 0x2d, 0x20, 0x53, 0x51, 0x4c, 0x20, 0x51, 0x55, 0x45, 0x52, 0x59, 0x20,
+ 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x2d, 0x2d, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61,
+ 0x73, 0x73, 0x3d, 0x22, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22,
+ 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72,
+ 0x79, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x73, 0x74,
+ 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
+ 0x3a, 0x20, 0x6e, 0x6f, 0x6e, 0x65, 0x3b, 0x22, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63,
+ 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x2d, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x22, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
+ 0x68, 0x32, 0x3e, 0x53, 0x51, 0x4c, 0x20, 0x51, 0x55, 0x45, 0x52, 0x59,
+ 0x20, 0x43, 0x4f, 0x4e, 0x53, 0x4f, 0x4c, 0x45, 0x3c, 0x2f, 0x68, 0x32,
+ 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
+ 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x51, 0x75, 0x65, 0x72, 0x79,
+ 0x20, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x20, 0x2d, 0x2d,
+ 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64,
+ 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e,
+ 0x70, 0x75, 0x74, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x3d, 0x22,
+ 0x71, 0x75, 0x65, 0x72, 0x79, 0x2d, 0x64, 0x72, 0x6f, 0x70, 0x64, 0x6f,
+ 0x77, 0x6e, 0x22, 0x3e, 0x51, 0x75, 0x69, 0x63, 0x6b, 0x20, 0x51, 0x75,
+ 0x65, 0x72, 0x69, 0x65, 0x73, 0x20, 0x26, 0x20, 0x48, 0x69, 0x73, 0x74,
+ 0x6f, 0x72, 0x79, 0x3a, 0x3c, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x3c, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x20, 0x69, 0x64, 0x3d,
+ 0x22, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2d, 0x64, 0x72, 0x6f, 0x70, 0x64,
+ 0x6f, 0x77, 0x6e, 0x22, 0x20, 0x6f, 0x6e, 0x63, 0x68, 0x61, 0x6e, 0x67,
+ 0x65, 0x3d, 0x22, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x65, 0x6c, 0x65, 0x63,
+ 0x74, 0x65, 0x64, 0x51, 0x75, 0x65, 0x72, 0x79, 0x28, 0x29, 0x22, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
+ 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3d, 0x22, 0x22, 0x3e, 0x2d, 0x2d,
+ 0x20, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x20, 0x61, 0x20, 0x71, 0x75,
+ 0x65, 0x72, 0x79, 0x20, 0x2d, 0x2d, 0x3c, 0x2f, 0x6f, 0x70, 0x74, 0x69,
+ 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x70, 0x74,
+ 0x67, 0x72, 0x6f, 0x75, 0x70, 0x20, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3d,
+ 0x22, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x20, 0x51, 0x75, 0x65, 0x72,
+ 0x69, 0x65, 0x73, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x76, 0x61,
+ 0x6c, 0x75, 0x65, 0x3d, 0x22, 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x5f,
+ 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x22, 0x3e, 0x52, 0x65, 0x63, 0x65,
+ 0x6e, 0x74, 0x20, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x3c, 0x2f, 0x6f,
+ 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x76,
+ 0x61, 0x6c, 0x75, 0x65, 0x3d, 0x22, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f,
+ 0x73, 0x74, 0x61, 0x74, 0x73, 0x22, 0x3e, 0x45, 0x76, 0x65, 0x6e, 0x74,
+ 0x20, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x3c,
+ 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
+ 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3d, 0x22, 0x73, 0x75, 0x62, 0x73,
+ 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x3e, 0x41,
+ 0x63, 0x74, 0x69, 0x76, 0x65, 0x20, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
+ 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3c, 0x2f, 0x6f, 0x70, 0x74,
+ 0x69, 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x3c, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x76, 0x61, 0x6c,
+ 0x75, 0x65, 0x3d, 0x22, 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x75, 0x62, 0x6b,
+ 0x65, 0x79, 0x73, 0x22, 0x3e, 0x54, 0x6f, 0x70, 0x20, 0x50, 0x75, 0x62,
+ 0x6b, 0x65, 0x79, 0x73, 0x3c, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
+ 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
+ 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3d,
+ 0x22, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x6b, 0x69, 0x6e, 0x64, 0x73,
+ 0x22, 0x3e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x4b, 0x69, 0x6e, 0x64,
+ 0x73, 0x20, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69,
+ 0x6f, 0x6e, 0x3c, 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x70, 0x74,
+ 0x69, 0x6f, 0x6e, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3d, 0x22, 0x74,
+ 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73, 0x22, 0x3e, 0x54,
+ 0x69, 0x6d, 0x65, 0x2d, 0x62, 0x61, 0x73, 0x65, 0x64, 0x20, 0x53, 0x74,
+ 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x3c, 0x2f, 0x6f, 0x70,
+ 0x74, 0x69, 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
+ 0x6f, 0x70, 0x74, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x6f, 0x70, 0x74, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x20,
+ 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3d, 0x22, 0x51, 0x75, 0x65, 0x72, 0x79,
+ 0x20, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x22, 0x20, 0x69, 0x64,
+ 0x3d, 0x22, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x2d, 0x67, 0x72,
+ 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x44, 0x79, 0x6e, 0x61, 0x6d,
+ 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c,
+ 0x61, 0x74, 0x65, 0x64, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x6c, 0x6f,
+ 0x63, 0x61, 0x6c, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x20, 0x2d,
+ 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x70, 0x74,
+ 0x67, 0x72, 0x6f, 0x75, 0x70, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x73, 0x65, 0x6c,
+ 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x51, 0x75,
+ 0x65, 0x72, 0x79, 0x20, 0x45, 0x64, 0x69, 0x74, 0x6f, 0x72, 0x20, 0x2d,
+ 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
+ 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69,
+ 0x6e, 0x70, 0x75, 0x74, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x3c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x3d,
+ 0x22, 0x73, 0x71, 0x6c, 0x2d, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x22, 0x3e,
+ 0x53, 0x51, 0x4c, 0x20, 0x51, 0x75, 0x65, 0x72, 0x79, 0x3a, 0x3c, 0x2f,
+ 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x65, 0x78, 0x74,
+ 0x61, 0x72, 0x65, 0x61, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x71, 0x6c,
+ 0x2d, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x22, 0x20, 0x72, 0x6f, 0x77, 0x73,
+ 0x3d, 0x22, 0x35, 0x22, 0x20, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f,
+ 0x6c, 0x64, 0x65, 0x72, 0x3d, 0x22, 0x53, 0x45, 0x4c, 0x45, 0x43, 0x54,
+ 0x20, 0x2a, 0x20, 0x46, 0x52, 0x4f, 0x4d, 0x20, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x73, 0x20, 0x4c, 0x49, 0x4d, 0x49, 0x54, 0x20, 0x31, 0x30, 0x22,
+ 0x3e, 0x3c, 0x2f, 0x74, 0x65, 0x78, 0x74, 0x61, 0x72, 0x65, 0x61, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64,
+ 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x51, 0x75, 0x65, 0x72, 0x79, 0x20,
+ 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x2d, 0x2d, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76,
+ 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x70, 0x75,
+ 0x74, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64,
+ 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x69, 0x6e,
+ 0x6c, 0x69, 0x6e, 0x65, 0x2d, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73,
+ 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62, 0x75, 0x74, 0x74,
+ 0x6f, 0x6e, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x62, 0x75, 0x74,
+ 0x74, 0x6f, 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x65, 0x78, 0x65,
+ 0x63, 0x75, 0x74, 0x65, 0x2d, 0x73, 0x71, 0x6c, 0x2d, 0x62, 0x74, 0x6e,
+ 0x22, 0x3e, 0x45, 0x58, 0x45, 0x43, 0x55, 0x54, 0x45, 0x20, 0x51, 0x55,
+ 0x45, 0x52, 0x59, 0x3c, 0x2f, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e,
+ 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x62, 0x75, 0x74, 0x74, 0x6f,
+ 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x63, 0x6c, 0x65, 0x61, 0x72,
+ 0x2d, 0x73, 0x71, 0x6c, 0x2d, 0x62, 0x74, 0x6e, 0x22, 0x3e, 0x43, 0x4c,
+ 0x45, 0x41, 0x52, 0x3c, 0x2f, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e,
+ 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x62, 0x75, 0x74, 0x74, 0x6f,
+ 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x63, 0x6c, 0x65, 0x61, 0x72,
+ 0x2d, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x2d, 0x62, 0x74, 0x6e,
+ 0x22, 0x3e, 0x43, 0x4c, 0x45, 0x41, 0x52, 0x20, 0x48, 0x49, 0x53, 0x54,
+ 0x4f, 0x52, 0x59, 0x3c, 0x2f, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d,
+ 0x20, 0x51, 0x75, 0x65, 0x72, 0x79, 0x20, 0x52, 0x65, 0x73, 0x75, 0x6c,
+ 0x74, 0x73, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73,
+ 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x2d, 0x67, 0x72, 0x6f,
+ 0x75, 0x70, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e,
+ 0x51, 0x75, 0x65, 0x72, 0x79, 0x20, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74,
+ 0x73, 0x3a, 0x3c, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
+ 0x64, 0x69, 0x76, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x71, 0x75, 0x65, 0x72,
+ 0x79, 0x2d, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73,
+ 0x73, 0x3d, 0x22, 0x69, 0x6e, 0x66, 0x6f, 0x2d, 0x62, 0x6f, 0x78, 0x22,
+ 0x3e, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76,
+ 0x20, 0x69, 0x64, 0x3d, 0x22, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2d, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
+ 0x22, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x2d, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x22,
+ 0x3e, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x4c, 0x6f, 0x61, 0x64,
+ 0x20, 0x74, 0x68, 0x65, 0x20, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61,
+ 0x6c, 0x20, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2d, 0x74, 0x6f, 0x6f, 0x6c,
+ 0x73, 0x20, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x66, 0x69, 0x72,
+ 0x73, 0x74, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c,
+ 0x21, 0x2d, 0x2d, 0x20, 0x3c, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x20,
+ 0x73, 0x72, 0x63, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f,
+ 0x2f, 0x6c, 0x61, 0x61, 0x6e, 0x74, 0x75, 0x6e, 0x67, 0x69, 0x72, 0x2e,
+ 0x6e, 0x65, 0x74, 0x2f, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2d, 0x6c, 0x6f,
+ 0x67, 0x69, 0x6e, 0x2d, 0x6c, 0x69, 0x74, 0x65, 0x2f, 0x6e, 0x6f, 0x73,
0x74, 0x72, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x6a, 0x73,
+ 0x22, 0x3e, 0x3c, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x3e, 0x20,
+ 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x63, 0x72,
+ 0x69, 0x70, 0x74, 0x20, 0x73, 0x72, 0x63, 0x3d, 0x22, 0x2f, 0x61, 0x70,
+ 0x69, 0x2f, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2e, 0x62, 0x75, 0x6e, 0x64,
+ 0x6c, 0x65, 0x2e, 0x6a, 0x73, 0x22, 0x3e, 0x3c, 0x2f, 0x73, 0x63, 0x72,
+ 0x69, 0x70, 0x74, 0x3e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21,
+ 0x2d, 0x2d, 0x20, 0x4c, 0x6f, 0x61, 0x64, 0x20, 0x4e, 0x4f, 0x53, 0x54,
+ 0x52, 0x5f, 0x4c, 0x4f, 0x47, 0x49, 0x4e, 0x5f, 0x4c, 0x49, 0x54, 0x45,
+ 0x20, 0x6d, 0x61, 0x69, 0x6e, 0x20, 0x6c, 0x69, 0x62, 0x72, 0x61, 0x72,
+ 0x79, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21,
+ 0x2d, 0x2d, 0x20, 0x3c, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x20, 0x73,
+ 0x72, 0x63, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f,
+ 0x6c, 0x61, 0x61, 0x6e, 0x74, 0x75, 0x6e, 0x67, 0x69, 0x72, 0x2e, 0x6e,
+ 0x65, 0x74, 0x2f, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2d, 0x6c, 0x6f, 0x67,
+ 0x69, 0x6e, 0x2d, 0x6c, 0x69, 0x74, 0x65, 0x2f, 0x6e, 0x6f, 0x73, 0x74,
+ 0x72, 0x2d, 0x6c, 0x69, 0x74, 0x65, 0x2e, 0x6a, 0x73, 0x22, 0x3e, 0x3c,
+ 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x3e, 0x20, 0x2d, 0x2d, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
+ 0x20, 0x73, 0x72, 0x63, 0x3d, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6e,
+ 0x6f, 0x73, 0x74, 0x72, 0x2d, 0x6c, 0x69, 0x74, 0x65, 0x2e, 0x6a, 0x73,
0x22, 0x3e, 0x3c, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x3e, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x4c, 0x6f,
- 0x61, 0x64, 0x20, 0x4e, 0x4f, 0x53, 0x54, 0x52, 0x5f, 0x4c, 0x4f, 0x47,
- 0x49, 0x4e, 0x5f, 0x4c, 0x49, 0x54, 0x45, 0x20, 0x6d, 0x61, 0x69, 0x6e,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x4c, 0x6f, 0x61,
+ 0x64, 0x20, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68,
0x20, 0x6c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x20, 0x2d, 0x2d, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x3c, 0x73,
- 0x63, 0x72, 0x69, 0x70, 0x74, 0x20, 0x73, 0x72, 0x63, 0x3d, 0x22, 0x68,
- 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x6c, 0x61, 0x61, 0x6e, 0x74,
- 0x75, 0x6e, 0x67, 0x69, 0x72, 0x2e, 0x6e, 0x65, 0x74, 0x2f, 0x6e, 0x6f,
- 0x73, 0x74, 0x72, 0x2d, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x2d, 0x6c, 0x69,
- 0x74, 0x65, 0x2f, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2d, 0x6c, 0x69, 0x74,
- 0x65, 0x2e, 0x6a, 0x73, 0x22, 0x3e, 0x3c, 0x2f, 0x73, 0x63, 0x72, 0x69,
- 0x70, 0x74, 0x3e, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x20, 0x73, 0x72, 0x63, 0x3d,
- 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2d,
- 0x6c, 0x69, 0x74, 0x65, 0x2e, 0x6a, 0x73, 0x22, 0x3e, 0x3c, 0x2f, 0x73,
- 0x63, 0x72, 0x69, 0x70, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x21, 0x2d, 0x2d, 0x20, 0x4c, 0x6f, 0x61, 0x64, 0x20, 0x74, 0x65, 0x78,
- 0x74, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x20, 0x6c, 0x69, 0x62, 0x72,
- 0x61, 0x72, 0x79, 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x20, 0x73, 0x72, 0x63, 0x3d,
- 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x67,
- 0x72, 0x61, 0x70, 0x68, 0x2e, 0x6a, 0x73, 0x22, 0x3e, 0x3c, 0x2f, 0x73,
- 0x63, 0x72, 0x69, 0x70, 0x74, 0x3e, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x20,
- 0x73, 0x72, 0x63, 0x3d, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x69, 0x6e,
- 0x64, 0x65, 0x78, 0x2e, 0x6a, 0x73, 0x22, 0x3e, 0x3c, 0x2f, 0x73, 0x63,
- 0x72, 0x69, 0x70, 0x74, 0x3e, 0x0a, 0x3c, 0x2f, 0x62, 0x6f, 0x64, 0x79,
- 0x3e, 0x0a, 0x0a, 0x3c, 0x2f, 0x68, 0x74, 0x6d, 0x6c, 0x3e
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
+ 0x20, 0x73, 0x72, 0x63, 0x3d, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x74,
+ 0x65, 0x78, 0x74, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x2e, 0x6a, 0x73,
+ 0x22, 0x3e, 0x3c, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x3e, 0x0a,
+ 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x63,
+ 0x72, 0x69, 0x70, 0x74, 0x20, 0x73, 0x72, 0x63, 0x3d, 0x22, 0x2f, 0x61,
+ 0x70, 0x69, 0x2f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x2e, 0x6a, 0x73, 0x22,
+ 0x3e, 0x3c, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x3e, 0x0a, 0x3c,
+ 0x2f, 0x62, 0x6f, 0x64, 0x79, 0x3e, 0x0a, 0x0a, 0x3c, 0x2f, 0x68, 0x74,
+ 0x6d, 0x6c, 0x3e
};
static const size_t embedded_index_html_size = sizeof(embedded_index_html);
@@ -3708,7 +3711,7 @@ static const unsigned char embedded_index_css[] = {
};
static const size_t embedded_index_css_size = sizeof(embedded_index_css);
-// Embedded file: index.js (213177 bytes)
+// Embedded file: index.js (217032 bytes)
static const unsigned char embedded_index_js[] = {
0x2f, 0x2f, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x20,
@@ -4119,7 +4122,7 @@ static const unsigned char embedded_index_js[] = {
0x72, 0x2b, 0x6a, 0x73, 0x6f, 0x6e, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x27, 0x55, 0x73, 0x65, 0x72, 0x2d, 0x41, 0x67, 0x65, 0x6e, 0x74,
- 0x27, 0x3a, 0x20, 0x27, 0x43, 0x2d, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x2d,
+ 0x27, 0x3a, 0x20, 0x27, 0x42, 0x6c, 0x6f, 0x73, 0x73, 0x6f, 0x6d, 0x2d,
0x41, 0x64, 0x6d, 0x69, 0x6e, 0x2d, 0x41, 0x50, 0x49, 0x2f, 0x31, 0x2e,
0x30, 0x27, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x7d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
@@ -5226,540 +5229,228 @@ static const unsigned char embedded_index_js[] = {
0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x61,
0x73, 0x65, 0x20, 0x27, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
0x63, 0x73, 0x27, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x61, 0x72,
+ 0x74, 0x20, 0x48, 0x54, 0x54, 0x50, 0x20, 0x70, 0x6f, 0x6c, 0x6c, 0x69,
+ 0x6e, 0x67, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69,
+ 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x28, 0x70, 0x6f, 0x6c, 0x6c, 0x73,
+ 0x20, 0x65, 0x76, 0x65, 0x72, 0x79, 0x20, 0x31, 0x30, 0x20, 0x73, 0x65,
+ 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x61, 0x72, 0x74,
+ 0x53, 0x74, 0x61, 0x74, 0x73, 0x50, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67,
+ 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x62, 0x72, 0x65, 0x61, 0x6b, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x61, 0x73, 0x65, 0x20,
+ 0x27, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x27, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x61, 0x64,
- 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x20,
- 0x69, 0x6d, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x74, 0x65, 0x6c, 0x79, 0x20,
- 0x28, 0x6e, 0x6f, 0x20, 0x61, 0x75, 0x74, 0x6f, 0x2d, 0x72, 0x65, 0x66,
- 0x72, 0x65, 0x73, 0x68, 0x20, 0x2d, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67,
- 0x20, 0x72, 0x65, 0x61, 0x6c, 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x6d,
- 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x73, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x53, 0x74,
- 0x61, 0x74, 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x28, 0x29, 0x2e, 0x63,
- 0x61, 0x74, 0x63, 0x68, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x3d,
- 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x41, 0x75, 0x74,
- 0x6f, 0x2d, 0x66, 0x65, 0x74, 0x63, 0x68, 0x20, 0x73, 0x74, 0x61, 0x74,
- 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65,
- 0x64, 0x3a, 0x20, 0x27, 0x20, 0x2b, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x66, 0x65, 0x74, 0x63, 0x68, 0x43, 0x6f, 0x6e, 0x66,
+ 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x2e,
+ 0x63, 0x61, 0x74, 0x63, 0x68, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x20,
+ 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x41, 0x75,
+ 0x74, 0x6f, 0x2d, 0x66, 0x65, 0x74, 0x63, 0x68, 0x20, 0x63, 0x6f, 0x6e,
+ 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66,
+ 0x61, 0x69, 0x6c, 0x65, 0x64, 0x3a, 0x20, 0x27, 0x20, 0x2b, 0x20, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x62, 0x72, 0x65, 0x61, 0x6b, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x61, 0x73, 0x65, 0x20, 0x27,
- 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x27, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x61, 0x64, 0x20,
- 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x66, 0x65, 0x74, 0x63, 0x68, 0x43, 0x6f, 0x6e, 0x66, 0x69,
- 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x2e, 0x63,
- 0x61, 0x74, 0x63, 0x68, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x3d,
- 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x41, 0x75, 0x74,
- 0x6f, 0x2d, 0x66, 0x65, 0x74, 0x63, 0x68, 0x20, 0x63, 0x6f, 0x6e, 0x66,
- 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x61,
- 0x69, 0x6c, 0x65, 0x64, 0x3a, 0x20, 0x27, 0x20, 0x2b, 0x20, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x72, 0x65, 0x61, 0x6b, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x61, 0x73,
- 0x65, 0x20, 0x27, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f,
- 0x61, 0x64, 0x20, 0x61, 0x75, 0x74, 0x68, 0x20, 0x72, 0x75, 0x6c, 0x65,
- 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x41, 0x75, 0x74, 0x68, 0x52, 0x75,
- 0x6c, 0x65, 0x73, 0x28, 0x29, 0x2e, 0x63, 0x61, 0x74, 0x63, 0x68, 0x28,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x72, 0x65, 0x61, 0x6b,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x61,
+ 0x73, 0x65, 0x20, 0x27, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c,
+ 0x6f, 0x61, 0x64, 0x20, 0x61, 0x75, 0x74, 0x68, 0x20, 0x72, 0x75, 0x6c,
+ 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x41, 0x75, 0x74, 0x68, 0x52,
+ 0x75, 0x6c, 0x65, 0x73, 0x28, 0x29, 0x2e, 0x63, 0x61, 0x74, 0x63, 0x68,
+ 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
- 0x6f, 0x67, 0x28, 0x27, 0x41, 0x75, 0x74, 0x6f, 0x2d, 0x6c, 0x6f, 0x61,
- 0x64, 0x20, 0x61, 0x75, 0x74, 0x68, 0x20, 0x72, 0x75, 0x6c, 0x65, 0x73,
- 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x3a, 0x20, 0x27, 0x20, 0x2b,
- 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61,
- 0x67, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x72, 0x65,
- 0x61, 0x6b, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x20, 0x70, 0x61, 0x67,
- 0x65, 0x73, 0x20, 0x64, 0x6f, 0x6e, 0x27, 0x74, 0x20, 0x6e, 0x65, 0x65,
- 0x64, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x20, 0x64, 0x61,
- 0x74, 0x61, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x53,
- 0x68, 0x6f, 0x77, 0x20, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x20, 0x6d, 0x6f,
- 0x64, 0x61, 0x6c, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x73, 0x68, 0x6f, 0x77, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x4d, 0x6f,
- 0x64, 0x61, 0x6c, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x66, 0x20, 0x28, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x4d, 0x6f, 0x64,
- 0x61, 0x6c, 0x20, 0x26, 0x26, 0x20, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x4d,
- 0x6f, 0x64, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65,
- 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69,
- 0x7a, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6c, 0x6f, 0x67, 0x69, 0x6e,
- 0x20, 0x55, 0x49, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6d,
- 0x6f, 0x64, 0x61, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e,
- 0x4e, 0x4f, 0x53, 0x54, 0x52, 0x5f, 0x4c, 0x4f, 0x47, 0x49, 0x4e, 0x5f,
- 0x4c, 0x49, 0x54, 0x45, 0x20, 0x26, 0x26, 0x20, 0x74, 0x79, 0x70, 0x65,
- 0x6f, 0x66, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x4e, 0x4f,
- 0x53, 0x54, 0x52, 0x5f, 0x4c, 0x4f, 0x47, 0x49, 0x4e, 0x5f, 0x4c, 0x49,
- 0x54, 0x45, 0x2e, 0x65, 0x6d, 0x62, 0x65, 0x64, 0x20, 0x3d, 0x3d, 0x3d,
- 0x20, 0x27, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x4e, 0x4f,
- 0x53, 0x54, 0x52, 0x5f, 0x4c, 0x4f, 0x47, 0x49, 0x4e, 0x5f, 0x4c, 0x49,
- 0x54, 0x45, 0x2e, 0x65, 0x6d, 0x62, 0x65, 0x64, 0x28, 0x27, 0x23, 0x6c,
- 0x6f, 0x67, 0x69, 0x6e, 0x2d, 0x6d, 0x6f, 0x64, 0x61, 0x6c, 0x2d, 0x63,
- 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x27, 0x2c, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65, 0x61, 0x6d, 0x6c, 0x65, 0x73,
- 0x73, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x4d,
- 0x6f, 0x64, 0x61, 0x6c, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64,
- 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27, 0x66, 0x6c,
- 0x65, 0x78, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d,
- 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x48, 0x69, 0x64, 0x65, 0x20, 0x6c, 0x6f,
- 0x67, 0x69, 0x6e, 0x20, 0x6d, 0x6f, 0x64, 0x61, 0x6c, 0x0a, 0x66, 0x75,
- 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x68, 0x69, 0x64, 0x65, 0x4c,
- 0x6f, 0x67, 0x69, 0x6e, 0x4d, 0x6f, 0x64, 0x61, 0x6c, 0x28, 0x29, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6c, 0x6f,
- 0x67, 0x69, 0x6e, 0x4d, 0x6f, 0x64, 0x61, 0x6c, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x69,
- 0x6e, 0x4d, 0x6f, 0x64, 0x61, 0x6c, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65,
- 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27,
- 0x6e, 0x6f, 0x6e, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x53, 0x68, 0x6f, 0x77, 0x20,
- 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x69, 0x6e, 0x20, 0x68,
- 0x65, 0x61, 0x64, 0x65, 0x72, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x50, 0x72, 0x6f, 0x66, 0x69,
- 0x6c, 0x65, 0x49, 0x6e, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x28, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70,
- 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x41, 0x72, 0x65, 0x61, 0x29, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x72,
- 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x41, 0x72, 0x65, 0x61, 0x2e, 0x73, 0x74,
- 0x79, 0x6c, 0x65, 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20,
- 0x3d, 0x20, 0x27, 0x66, 0x6c, 0x65, 0x78, 0x27, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x48, 0x69,
- 0x64, 0x65, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x66,
- 0x72, 0x6f, 0x6d, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x0a, 0x66,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
+ 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x41, 0x75, 0x74, 0x6f, 0x2d, 0x6c, 0x6f,
+ 0x61, 0x64, 0x20, 0x61, 0x75, 0x74, 0x68, 0x20, 0x72, 0x75, 0x6c, 0x65,
+ 0x73, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x3a, 0x20, 0x27, 0x20,
+ 0x2b, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73,
+ 0x61, 0x67, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x72,
+ 0x65, 0x61, 0x6b, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2f, 0x2f, 0x20, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x20, 0x70, 0x61,
+ 0x67, 0x65, 0x73, 0x20, 0x64, 0x6f, 0x6e, 0x27, 0x74, 0x20, 0x6e, 0x65,
+ 0x65, 0x64, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x20, 0x64,
+ 0x61, 0x74, 0x61, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20,
+ 0x53, 0x68, 0x6f, 0x77, 0x20, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x20, 0x6d,
+ 0x6f, 0x64, 0x61, 0x6c, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x4d,
+ 0x6f, 0x64, 0x61, 0x6c, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x4d, 0x6f,
+ 0x64, 0x61, 0x6c, 0x20, 0x26, 0x26, 0x20, 0x6c, 0x6f, 0x67, 0x69, 0x6e,
+ 0x4d, 0x6f, 0x64, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e,
+ 0x65, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c,
+ 0x69, 0x7a, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6c, 0x6f, 0x67, 0x69,
+ 0x6e, 0x20, 0x55, 0x49, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20,
+ 0x6d, 0x6f, 0x64, 0x61, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77,
+ 0x2e, 0x4e, 0x4f, 0x53, 0x54, 0x52, 0x5f, 0x4c, 0x4f, 0x47, 0x49, 0x4e,
+ 0x5f, 0x4c, 0x49, 0x54, 0x45, 0x20, 0x26, 0x26, 0x20, 0x74, 0x79, 0x70,
+ 0x65, 0x6f, 0x66, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x4e,
+ 0x4f, 0x53, 0x54, 0x52, 0x5f, 0x4c, 0x4f, 0x47, 0x49, 0x4e, 0x5f, 0x4c,
+ 0x49, 0x54, 0x45, 0x2e, 0x65, 0x6d, 0x62, 0x65, 0x64, 0x20, 0x3d, 0x3d,
+ 0x3d, 0x20, 0x27, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x4e,
+ 0x4f, 0x53, 0x54, 0x52, 0x5f, 0x4c, 0x4f, 0x47, 0x49, 0x4e, 0x5f, 0x4c,
+ 0x49, 0x54, 0x45, 0x2e, 0x65, 0x6d, 0x62, 0x65, 0x64, 0x28, 0x27, 0x23,
+ 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x2d, 0x6d, 0x6f, 0x64, 0x61, 0x6c, 0x2d,
+ 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x27, 0x2c, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65, 0x61, 0x6d, 0x6c, 0x65,
+ 0x73, 0x73, 0x3a, 0x20, 0x74, 0x72, 0x75, 0x65, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x69, 0x6e,
+ 0x4d, 0x6f, 0x64, 0x61, 0x6c, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e,
+ 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27, 0x66,
+ 0x6c, 0x65, 0x78, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
+ 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x48, 0x69, 0x64, 0x65, 0x20, 0x6c,
+ 0x6f, 0x67, 0x69, 0x6e, 0x20, 0x6d, 0x6f, 0x64, 0x61, 0x6c, 0x0a, 0x66,
0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x68, 0x69, 0x64, 0x65,
- 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x48,
- 0x65, 0x61, 0x64, 0x65, 0x72, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c,
- 0x65, 0x41, 0x72, 0x65, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
- 0x41, 0x72, 0x65, 0x61, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64,
- 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27, 0x6e, 0x6f,
- 0x6e, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d,
- 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20,
- 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x2f, 0x6c, 0x6f, 0x67, 0x6f, 0x75, 0x74,
- 0x20, 0x55, 0x49, 0x20, 0x76, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69,
- 0x74, 0x79, 0x20, 0x28, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x20, 0x66,
- 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x2d, 0x20, 0x6b, 0x65,
- 0x70, 0x74, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x62, 0x61, 0x63, 0x6b, 0x77,
- 0x61, 0x72, 0x64, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62,
- 0x69, 0x6c, 0x69, 0x74, 0x79, 0x29, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x6f,
- 0x67, 0x69, 0x6e, 0x4c, 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x55, 0x49, 0x28,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x54,
- 0x68, 0x69, 0x73, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x77, 0x20, 0x68, 0x61, 0x6e, 0x64,
- 0x6c, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x50,
- 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x6e, 0x48, 0x65, 0x61, 0x64,
- 0x65, 0x72, 0x28, 0x29, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x68, 0x69, 0x64,
+ 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x4d, 0x6f, 0x64, 0x61, 0x6c, 0x28, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6c,
+ 0x6f, 0x67, 0x69, 0x6e, 0x4d, 0x6f, 0x64, 0x61, 0x6c, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67,
+ 0x69, 0x6e, 0x4d, 0x6f, 0x64, 0x61, 0x6c, 0x2e, 0x73, 0x74, 0x79, 0x6c,
+ 0x65, 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20,
+ 0x27, 0x6e, 0x6f, 0x6e, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x53, 0x68, 0x6f, 0x77,
+ 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x69, 0x6e, 0x20,
+ 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x50, 0x72, 0x6f, 0x66,
+ 0x69, 0x6c, 0x65, 0x49, 0x6e, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x28,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x41, 0x72, 0x65, 0x61, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70,
+ 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x41, 0x72, 0x65, 0x61, 0x2e, 0x73,
+ 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
+ 0x20, 0x3d, 0x20, 0x27, 0x66, 0x6c, 0x65, 0x78, 0x27, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x48,
+ 0x69, 0x64, 0x65, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20,
+ 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x0a,
+ 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x68, 0x69, 0x64,
0x65, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x46, 0x72, 0x6f, 0x6d,
- 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20,
+ 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x72, 0x6f, 0x66, 0x69,
+ 0x6c, 0x65, 0x41, 0x72, 0x65, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c,
+ 0x65, 0x41, 0x72, 0x65, 0x61, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e,
+ 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27, 0x6e,
+ 0x6f, 0x6e, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
+ 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
+ 0x20, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x2f, 0x6c, 0x6f, 0x67, 0x6f, 0x75,
+ 0x74, 0x20, 0x55, 0x49, 0x20, 0x76, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c,
+ 0x69, 0x74, 0x79, 0x20, 0x28, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x20,
+ 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x2d, 0x20, 0x6b,
+ 0x65, 0x70, 0x74, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x62, 0x61, 0x63, 0x6b,
+ 0x77, 0x61, 0x72, 0x64, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69,
+ 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x29, 0x0a, 0x66, 0x75, 0x6e, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c,
+ 0x6f, 0x67, 0x69, 0x6e, 0x4c, 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x55, 0x49,
+ 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x54, 0x68, 0x69, 0x73, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x77, 0x20, 0x68, 0x61, 0x6e,
+ 0x64, 0x6c, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x73, 0x68, 0x6f, 0x77,
+ 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x6e, 0x48, 0x65, 0x61,
+ 0x64, 0x65, 0x72, 0x28, 0x29, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x68, 0x69,
+ 0x64, 0x65, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x46, 0x72, 0x6f,
+ 0x6d, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x28, 0x29, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4b, 0x65, 0x70, 0x74, 0x20, 0x66, 0x6f,
+ 0x72, 0x20, 0x62, 0x61, 0x63, 0x6b, 0x77, 0x61, 0x72, 0x64, 0x20, 0x63,
+ 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
+ 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x61, 0x6e, 0x79, 0x20, 0x65, 0x78,
+ 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x63, 0x6f, 0x64, 0x65, 0x20,
+ 0x74, 0x68, 0x61, 0x74, 0x20, 0x6d, 0x69, 0x67, 0x68, 0x74, 0x20, 0x63,
+ 0x61, 0x6c, 0x6c, 0x20, 0x69, 0x74, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f,
+ 0x20, 0x53, 0x68, 0x6f, 0x77, 0x20, 0x6d, 0x61, 0x69, 0x6e, 0x20, 0x69,
+ 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x20, 0x61, 0x66, 0x74,
+ 0x65, 0x72, 0x20, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x20, 0x28, 0x6c, 0x65,
+ 0x67, 0x61, 0x63, 0x79, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x2d, 0x20, 0x6b, 0x65, 0x70, 0x74, 0x20, 0x66, 0x6f, 0x72,
+ 0x20, 0x62, 0x61, 0x63, 0x6b, 0x77, 0x61, 0x72, 0x64, 0x20, 0x63, 0x6f,
+ 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x29,
+ 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x68,
+ 0x6f, 0x77, 0x4d, 0x61, 0x69, 0x6e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x66,
+ 0x61, 0x63, 0x65, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x66, 0x75, 0x6e, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x77, 0x20,
+ 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x73,
+ 0x68, 0x6f, 0x77, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x6e,
+ 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x28, 0x29, 0x20, 0x61, 0x6e, 0x64,
+ 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e,
+ 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x69, 0x73, 0x69,
+ 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x2f, 0x2f, 0x20, 0x4b, 0x65, 0x70, 0x74, 0x20, 0x66, 0x6f, 0x72,
0x20, 0x62, 0x61, 0x63, 0x6b, 0x77, 0x61, 0x72, 0x64, 0x20, 0x63, 0x6f,
0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x20,
0x77, 0x69, 0x74, 0x68, 0x20, 0x61, 0x6e, 0x79, 0x20, 0x65, 0x78, 0x69,
0x73, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x63, 0x6f, 0x64, 0x65, 0x20, 0x74,
0x68, 0x61, 0x74, 0x20, 0x6d, 0x69, 0x67, 0x68, 0x74, 0x20, 0x63, 0x61,
- 0x6c, 0x6c, 0x20, 0x69, 0x74, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20,
- 0x53, 0x68, 0x6f, 0x77, 0x20, 0x6d, 0x61, 0x69, 0x6e, 0x20, 0x69, 0x6e,
- 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x20, 0x61, 0x66, 0x74, 0x65,
- 0x72, 0x20, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x20, 0x28, 0x6c, 0x65, 0x67,
- 0x61, 0x63, 0x79, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x2d, 0x20, 0x6b, 0x65, 0x70, 0x74, 0x20, 0x66, 0x6f, 0x72, 0x20,
- 0x62, 0x61, 0x63, 0x6b, 0x77, 0x61, 0x72, 0x64, 0x20, 0x63, 0x6f, 0x6d,
- 0x70, 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x29, 0x0a,
- 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x68, 0x6f,
- 0x77, 0x4d, 0x61, 0x69, 0x6e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61,
- 0x63, 0x65, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x77, 0x20, 0x68,
- 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x73, 0x68,
- 0x6f, 0x77, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x6e, 0x48,
- 0x65, 0x61, 0x64, 0x65, 0x72, 0x28, 0x29, 0x20, 0x61, 0x6e, 0x64, 0x20,
- 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x53,
- 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x69, 0x73, 0x69, 0x62,
- 0x69, 0x6c, 0x69, 0x74, 0x79, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x4b, 0x65, 0x70, 0x74, 0x20, 0x66, 0x6f, 0x72, 0x20,
- 0x62, 0x61, 0x63, 0x6b, 0x77, 0x61, 0x72, 0x64, 0x20, 0x63, 0x6f, 0x6d,
- 0x70, 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x20, 0x77,
- 0x69, 0x74, 0x68, 0x20, 0x61, 0x6e, 0x79, 0x20, 0x65, 0x78, 0x69, 0x73,
- 0x74, 0x69, 0x6e, 0x67, 0x20, 0x63, 0x6f, 0x64, 0x65, 0x20, 0x74, 0x68,
- 0x61, 0x74, 0x20, 0x6d, 0x69, 0x67, 0x68, 0x74, 0x20, 0x63, 0x61, 0x6c,
- 0x6c, 0x20, 0x69, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x53, 0x65, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69,
- 0x74, 0x79, 0x28, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20,
- 0x4c, 0x6f, 0x61, 0x64, 0x20, 0x75, 0x73, 0x65, 0x72, 0x20, 0x70, 0x72,
- 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20,
- 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2d, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x20,
- 0x70, 0x6f, 0x6f, 0x6c, 0x0a, 0x61, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x66,
- 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x6f, 0x61, 0x64,
- 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x28,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
- 0x21, 0x75, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29,
- 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
- 0x67, 0x28, 0x27, 0x4c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x75,
- 0x73, 0x65, 0x72, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x2e,
- 0x2e, 0x2e, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x68, 0x65, 0x61,
- 0x64, 0x65, 0x72, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20,
- 0x28, 0x6e, 0x65, 0x77, 0x20, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x29,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x68, 0x65, 0x61,
- 0x64, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68,
- 0x65, 0x61, 0x64, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d,
- 0x65, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
- 0x74, 0x20, 0x3d, 0x20, 0x27, 0x4c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67,
- 0x2e, 0x2e, 0x2e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x20, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x20, 0x65, 0x6c,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x69, 0x66, 0x20, 0x74, 0x68,
- 0x65, 0x79, 0x20, 0x65, 0x78, 0x69, 0x73, 0x74, 0x20, 0x28, 0x62, 0x61,
- 0x63, 0x6b, 0x77, 0x61, 0x72, 0x64, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61,
- 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x29, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73,
- 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73,
- 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43,
- 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27, 0x4c, 0x6f,
- 0x61, 0x64, 0x69, 0x6e, 0x67, 0x2e, 0x2e, 0x2e, 0x27, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55,
- 0x73, 0x65, 0x72, 0x41, 0x62, 0x6f, 0x75, 0x74, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x65, 0x72, 0x73,
- 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x41, 0x62,
- 0x6f, 0x75, 0x74, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74,
- 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27, 0x4c, 0x6f, 0x61, 0x64, 0x69,
- 0x6e, 0x67, 0x2e, 0x2e, 0x2e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x6f,
- 0x6e, 0x76, 0x65, 0x72, 0x74, 0x20, 0x68, 0x65, 0x78, 0x20, 0x70, 0x75,
- 0x62, 0x6b, 0x65, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x6e, 0x70, 0x75, 0x62,
- 0x20, 0x66, 0x6f, 0x72, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c,
- 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x6c, 0x65, 0x74, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
- 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x20, 0x75, 0x73, 0x65,
- 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x6c, 0x65, 0x74, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x4c, 0x69, 0x6e,
- 0x6b, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x75, 0x73, 0x65, 0x72, 0x50, 0x75,
- 0x62, 0x6b, 0x65, 0x79, 0x20, 0x26, 0x26, 0x20, 0x75, 0x73, 0x65, 0x72,
- 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74,
- 0x68, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x36, 0x34, 0x20, 0x26, 0x26, 0x20,
- 0x2f, 0x5e, 0x5b, 0x30, 0x2d, 0x39, 0x61, 0x2d, 0x66, 0x41, 0x2d, 0x46,
- 0x5d, 0x2b, 0x24, 0x2f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x28, 0x75, 0x73,
- 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x20,
- 0x3d, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x4e, 0x6f, 0x73,
- 0x74, 0x72, 0x54, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x6e, 0x69, 0x70, 0x31,
- 0x39, 0x2e, 0x6e, 0x70, 0x75, 0x62, 0x45, 0x6e, 0x63, 0x6f, 0x64, 0x65,
- 0x28, 0x75, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62,
- 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x6e, 0x70, 0x75, 0x62, 0x4c, 0x69, 0x6e, 0x6b, 0x20, 0x3d, 0x20, 0x60,
- 0x3c, 0x61, 0x20, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, 0x68, 0x74, 0x74,
- 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x6e, 0x6a, 0x75, 0x6d, 0x70, 0x2e, 0x6d,
- 0x65, 0x2f, 0x24, 0x7b, 0x6e, 0x70, 0x75, 0x62, 0x7d, 0x22, 0x20, 0x74,
- 0x61, 0x72, 0x67, 0x65, 0x74, 0x3d, 0x22, 0x5f, 0x62, 0x6c, 0x61, 0x6e,
- 0x6b, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x6e, 0x70,
- 0x75, 0x62, 0x2d, 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x3e, 0x24, 0x7b, 0x6e,
- 0x70, 0x75, 0x62, 0x7d, 0x3c, 0x2f, 0x61, 0x3e, 0x60, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x6c, 0x6c, 0x20, 0x69, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70,
+ 0x64, 0x61, 0x74, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x53, 0x65, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c,
+ 0x69, 0x74, 0x79, 0x28, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f,
+ 0x20, 0x4c, 0x6f, 0x61, 0x64, 0x20, 0x75, 0x73, 0x65, 0x72, 0x20, 0x70,
+ 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67,
+ 0x20, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2d, 0x74, 0x6f, 0x6f, 0x6c, 0x73,
+ 0x20, 0x70, 0x6f, 0x6f, 0x6c, 0x0a, 0x61, 0x73, 0x79, 0x6e, 0x63, 0x20,
+ 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x6f, 0x61,
+ 0x64, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
+ 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
+ 0x28, 0x21, 0x75, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
- 0x6f, 0x67, 0x28, 0x27, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74,
- 0x6f, 0x20, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x20, 0x75, 0x73, 0x65,
- 0x72, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x74, 0x6f, 0x20,
- 0x6e, 0x70, 0x75, 0x62, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69,
- 0x66, 0x20, 0x28, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e,
- 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
- 0x66, 0x20, 0x28, 0x6e, 0x70, 0x75, 0x62, 0x4c, 0x69, 0x6e, 0x6b, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e,
- 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e,
- 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20,
- 0x6e, 0x70, 0x75, 0x62, 0x4c, 0x69, 0x6e, 0x6b, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e,
- 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e,
- 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20,
- 0x3d, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62,
- 0x6b, 0x65, 0x79, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74,
- 0x65, 0x20, 0x61, 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f,
- 0x6f, 0x6c, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x20,
- 0x66, 0x6f, 0x72, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20,
- 0x6c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x72,
- 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x3d, 0x20,
- 0x6e, 0x65, 0x77, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x4e,
- 0x6f, 0x73, 0x74, 0x72, 0x54, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x53, 0x69,
- 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x28, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x20, 0x3d, 0x20, 0x5b,
- 0x27, 0x77, 0x73, 0x73, 0x3a, 0x2f, 0x2f, 0x72, 0x65, 0x6c, 0x61, 0x79,
- 0x2e, 0x64, 0x61, 0x6d, 0x75, 0x73, 0x2e, 0x69, 0x6f, 0x27, 0x2c, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x27, 0x77, 0x73, 0x73, 0x3a, 0x2f, 0x2f, 0x72, 0x65, 0x6c, 0x61, 0x79,
- 0x2e, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2e, 0x62, 0x61, 0x6e, 0x64, 0x27,
- 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x27, 0x77, 0x73, 0x73, 0x3a, 0x2f, 0x2f, 0x6e, 0x6f, 0x73,
- 0x2e, 0x6c, 0x6f, 0x6c, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x27, 0x77, 0x73, 0x73, 0x3a,
- 0x2f, 0x2f, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x69, 0x6d,
- 0x61, 0x6c, 0x2e, 0x6e, 0x65, 0x74, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x27, 0x77, 0x73,
- 0x73, 0x3a, 0x2f, 0x2f, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2e, 0x73, 0x6e,
- 0x6f, 0x72, 0x74, 0x2e, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x6c, 0x27, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x47,
- 0x65, 0x74, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x65,
- 0x76, 0x65, 0x6e, 0x74, 0x20, 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x30,
- 0x29, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x75, 0x73,
- 0x65, 0x72, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x74, 0x69, 0x6d, 0x65,
- 0x6f, 0x75, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75,
- 0x74, 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x20, 0x3d, 0x20, 0x6e,
- 0x65, 0x77, 0x20, 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x28, 0x28,
- 0x5f, 0x2c, 0x20, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x29, 0x20, 0x3d,
- 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x73, 0x65, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74,
- 0x28, 0x28, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x72, 0x65, 0x6a, 0x65, 0x63,
- 0x74, 0x28, 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28,
- 0x27, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x71, 0x75, 0x65,
- 0x72, 0x79, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x27, 0x29,
- 0x29, 0x2c, 0x20, 0x35, 0x30, 0x30, 0x30, 0x29, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79,
- 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x20, 0x3d, 0x20, 0x70, 0x72,
- 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x71, 0x75,
- 0x65, 0x72, 0x79, 0x53, 0x79, 0x6e, 0x63, 0x28, 0x72, 0x65, 0x6c, 0x61,
- 0x79, 0x73, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x3a,
- 0x20, 0x5b, 0x30, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72,
- 0x73, 0x3a, 0x20, 0x5b, 0x75, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b,
- 0x65, 0x79, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x20,
- 0x31, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29,
- 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20,
- 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x50, 0x72, 0x6f, 0x6d,
- 0x69, 0x73, 0x65, 0x2e, 0x72, 0x61, 0x63, 0x65, 0x28, 0x5b, 0x71, 0x75,
- 0x65, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x2c, 0x20,
- 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x50, 0x72, 0x6f, 0x6d, 0x69,
- 0x73, 0x65, 0x5d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74,
- 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3e, 0x20, 0x30,
+ 0x6f, 0x67, 0x28, 0x27, 0x4c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x20,
+ 0x75, 0x73, 0x65, 0x72, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
+ 0x2e, 0x2e, 0x2e, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x68, 0x65,
+ 0x61, 0x64, 0x65, 0x72, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
+ 0x20, 0x28, 0x6e, 0x65, 0x77, 0x20, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d,
+ 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x68, 0x65,
+ 0x61, 0x64, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65,
0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
- 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
- 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64,
- 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x5b, 0x30,
- 0x5d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x72,
- 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x3d, 0x20, 0x4a, 0x53, 0x4f, 0x4e,
- 0x2e, 0x70, 0x61, 0x72, 0x73, 0x65, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74,
- 0x73, 0x5b, 0x30, 0x5d, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
- 0x6f, 0x67, 0x28, 0x27, 0x50, 0x61, 0x72, 0x73, 0x65, 0x64, 0x20, 0x70,
- 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x3a, 0x27, 0x2c, 0x20, 0x70, 0x72,
- 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x69, 0x73, 0x70,
- 0x6c, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x28, 0x70,
- 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
- 0x67, 0x28, 0x27, 0x4e, 0x6f, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c,
- 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x66, 0x6f, 0x75,
- 0x6e, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65,
- 0x79, 0x3a, 0x27, 0x2c, 0x20, 0x75, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62,
- 0x6b, 0x65, 0x79, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x20,
- 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x28, 0x6e, 0x65, 0x77,
- 0x20, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x29, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x4e,
- 0x61, 0x6d, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68,
- 0x65, 0x61, 0x64, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d,
- 0x65, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
- 0x74, 0x20, 0x3d, 0x20, 0x27, 0x41, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x6f,
- 0x75, 0x73, 0x20, 0x55, 0x73, 0x65, 0x72, 0x27, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x6c,
- 0x65, 0x67, 0x61, 0x63, 0x79, 0x20, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x73, 0x20, 0x69, 0x66, 0x20, 0x74, 0x68, 0x65, 0x79, 0x20, 0x65,
- 0x78, 0x69, 0x73, 0x74, 0x20, 0x28, 0x62, 0x61, 0x63, 0x6b, 0x77, 0x61,
- 0x72, 0x64, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x69,
- 0x6c, 0x69, 0x74, 0x79, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x65,
- 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72,
- 0x4e, 0x61, 0x6d, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73,
- 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43,
- 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27, 0x41, 0x6e,
- 0x6f, 0x6e, 0x79, 0x6d, 0x6f, 0x75, 0x73, 0x20, 0x55, 0x73, 0x65, 0x72,
- 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x65, 0x72,
- 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x41,
- 0x62, 0x6f, 0x75, 0x74, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73,
- 0x65, 0x72, 0x41, 0x62, 0x6f, 0x75, 0x74, 0x2e, 0x74, 0x65, 0x78, 0x74,
- 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27, 0x4e,
- 0x6f, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x66, 0x6f,
- 0x75, 0x6e, 0x64, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4b,
- 0x65, 0x65, 0x70, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6e, 0x70, 0x75, 0x62,
- 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x50, 0x72, 0x6f, 0x70, 0x65,
- 0x72, 0x6c, 0x79, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x20, 0x74, 0x68,
- 0x65, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x70, 0x6f,
- 0x6f, 0x6c, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x69, 0x6e, 0x67, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69,
- 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x63, 0x6c, 0x6f, 0x73, 0x65,
- 0x28, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x47, 0x69, 0x76, 0x65, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x66,
- 0x6f, 0x72, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61,
- 0x77, 0x61, 0x69, 0x74, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x50, 0x72, 0x6f,
- 0x6d, 0x69, 0x73, 0x65, 0x28, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65,
- 0x20, 0x3d, 0x3e, 0x20, 0x73, 0x65, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x6f,
- 0x75, 0x74, 0x28, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x2c, 0x20,
- 0x31, 0x30, 0x30, 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28,
- 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
- 0x67, 0x28, 0x27, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x70,
- 0x6f, 0x6f, 0x6c, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x20, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x20, 0x28, 0x6e, 0x6f, 0x6e, 0x2d, 0x63, 0x72, 0x69,
- 0x74, 0x69, 0x63, 0x61, 0x6c, 0x29, 0x3a, 0x27, 0x2c, 0x20, 0x63, 0x6c,
- 0x6f, 0x73, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73,
- 0x73, 0x61, 0x67, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20,
- 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
- 0x27, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x6c, 0x6f, 0x61,
- 0x64, 0x69, 0x6e, 0x67, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x3a,
- 0x20, 0x27, 0x20, 0x2b, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d,
- 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x20, 0x64,
- 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x28, 0x6e, 0x65, 0x77, 0x20,
- 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x68, 0x65, 0x61, 0x64,
- 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x29, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72,
- 0x4e, 0x61, 0x6d, 0x65, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e,
- 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x70, 0x72,
- 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
- 0x20, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x20, 0x65, 0x6c, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x73, 0x20, 0x69, 0x66, 0x20, 0x74, 0x68, 0x65, 0x79,
- 0x20, 0x65, 0x78, 0x69, 0x73, 0x74, 0x20, 0x28, 0x62, 0x61, 0x63, 0x6b,
- 0x77, 0x61, 0x72, 0x64, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69,
- 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x65, 0x72, 0x73,
- 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61,
- 0x6d, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73,
- 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65,
- 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
- 0x20, 0x3d, 0x20, 0x27, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x6c, 0x6f,
- 0x61, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c,
- 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
+ 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61,
+ 0x6d, 0x65, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65,
+ 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27, 0x4c, 0x6f, 0x61, 0x64, 0x69, 0x6e,
+ 0x67, 0x2e, 0x2e, 0x2e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64,
+ 0x61, 0x74, 0x65, 0x20, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x20, 0x65,
+ 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x69, 0x66, 0x20, 0x74,
+ 0x68, 0x65, 0x79, 0x20, 0x65, 0x78, 0x69, 0x73, 0x74, 0x20, 0x28, 0x62,
+ 0x61, 0x63, 0x6b, 0x77, 0x61, 0x72, 0x64, 0x20, 0x63, 0x6f, 0x6d, 0x70,
+ 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x29, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x65, 0x72, 0x73, 0x69,
+ 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d,
+ 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55,
+ 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x2e, 0x74, 0x65, 0x78, 0x74,
+ 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27, 0x4c,
+ 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x2e, 0x2e, 0x2e, 0x27, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
0x20, 0x28, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74,
0x55, 0x73, 0x65, 0x72, 0x41, 0x62, 0x6f, 0x75, 0x74, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55,
- 0x73, 0x65, 0x72, 0x41, 0x62, 0x6f, 0x75, 0x74, 0x2e, 0x74, 0x65, 0x78,
- 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4b,
- 0x65, 0x65, 0x70, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6e, 0x70, 0x75, 0x62,
- 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x44, 0x69, 0x73,
- 0x70, 0x6c, 0x61, 0x79, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
- 0x20, 0x64, 0x61, 0x74, 0x61, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x50, 0x72,
- 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x28, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c,
- 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x74, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x3d, 0x20, 0x70, 0x72,
- 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x7c,
- 0x7c, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x64, 0x69,
- 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x7c,
- 0x7c, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x64, 0x69,
- 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x7c, 0x7c,
- 0x20, 0x27, 0x41, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x6f, 0x75, 0x73, 0x20,
- 0x55, 0x73, 0x65, 0x72, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x61, 0x62, 0x6f, 0x75, 0x74, 0x20, 0x3d,
- 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x61, 0x62, 0x6f,
- 0x75, 0x74, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x4e, 0x6f, 0x20, 0x64, 0x65,
- 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x70, 0x72,
- 0x6f, 0x76, 0x69, 0x64, 0x65, 0x64, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75,
- 0x72, 0x65, 0x20, 0x3d, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
- 0x2e, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x20, 0x7c, 0x7c, 0x20,
- 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x69, 0x6d, 0x61, 0x67,
- 0x65, 0x20, 0x7c, 0x7c, 0x20, 0x6e, 0x75, 0x6c, 0x6c, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x6f, 0x6e, 0x76, 0x65,
- 0x72, 0x74, 0x20, 0x68, 0x65, 0x78, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65,
- 0x79, 0x20, 0x74, 0x6f, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x20, 0x66, 0x6f,
- 0x72, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x65, 0x72,
+ 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x41,
+ 0x62, 0x6f, 0x75, 0x74, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e,
+ 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27, 0x4c, 0x6f, 0x61, 0x64,
+ 0x69, 0x6e, 0x67, 0x2e, 0x2e, 0x2e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43,
+ 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x20, 0x68, 0x65, 0x78, 0x20, 0x70,
+ 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x6e, 0x70, 0x75,
+ 0x62, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61,
+ 0x6c, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x20, 0x75, 0x73,
0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3b, 0x0a, 0x20, 0x20,
@@ -5801,1475 +5492,1539 @@ static const unsigned char embedded_index_js[] = {
0x20, 0x6e, 0x70, 0x75, 0x62, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x29, 0x3b,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x68, 0x65,
- 0x61, 0x64, 0x65, 0x72, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
- 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x55,
- 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65,
- 0x72, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x2e, 0x74, 0x65,
- 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20,
- 0x6e, 0x61, 0x6d, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x48, 0x61, 0x6e, 0x64,
- 0x6c, 0x65, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x20, 0x70, 0x72,
- 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
- 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x68, 0x65,
- 0x61, 0x64, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6d, 0x61, 0x67,
- 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
- 0x20, 0x26, 0x26, 0x20, 0x74, 0x79, 0x70, 0x65, 0x6f, 0x66, 0x20, 0x70,
- 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27,
- 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x27, 0x20, 0x26, 0x26, 0x20, 0x28,
- 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x2e, 0x73, 0x74, 0x61, 0x72,
- 0x74, 0x73, 0x57, 0x69, 0x74, 0x68, 0x28, 0x27, 0x68, 0x74, 0x74, 0x70,
- 0x27, 0x29, 0x20, 0x7c, 0x7c, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
- 0x65, 0x2e, 0x73, 0x74, 0x61, 0x72, 0x74, 0x73, 0x57, 0x69, 0x74, 0x68,
- 0x28, 0x27, 0x68, 0x74, 0x74, 0x70, 0x73, 0x27, 0x29, 0x29, 0x29, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72,
- 0x49, 0x6d, 0x61, 0x67, 0x65, 0x2e, 0x73, 0x72, 0x63, 0x20, 0x3d, 0x20,
- 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x65, 0x61,
- 0x64, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6d, 0x61, 0x67, 0x65,
- 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c,
- 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x27,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72,
- 0x49, 0x6d, 0x61, 0x67, 0x65, 0x2e, 0x6f, 0x6e, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x48, 0x69, 0x64, 0x65, 0x20, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x20, 0x6f,
- 0x6e, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x69, 0x66, 0x20, 0x28, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65,
+ 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x69, 0x66, 0x20, 0x28, 0x6e, 0x70, 0x75, 0x62, 0x4c, 0x69, 0x6e, 0x6b,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65,
+ 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d,
+ 0x20, 0x6e, 0x70, 0x75, 0x62, 0x4c, 0x69, 0x6e, 0x6b, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73,
+ 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65,
+ 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
+ 0x20, 0x3d, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x50, 0x75,
+ 0x62, 0x6b, 0x65, 0x79, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65, 0x61,
+ 0x74, 0x65, 0x20, 0x61, 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x50,
+ 0x6f, 0x6f, 0x6c, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65,
+ 0x20, 0x66, 0x6f, 0x72, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
+ 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70,
+ 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x3d,
+ 0x20, 0x6e, 0x65, 0x77, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e,
+ 0x4e, 0x6f, 0x73, 0x74, 0x72, 0x54, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x53,
+ 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x28, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x20, 0x3d, 0x20,
+ 0x5b, 0x27, 0x77, 0x73, 0x73, 0x3a, 0x2f, 0x2f, 0x72, 0x65, 0x6c, 0x61,
+ 0x79, 0x2e, 0x64, 0x61, 0x6d, 0x75, 0x73, 0x2e, 0x69, 0x6f, 0x27, 0x2c,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x27, 0x77, 0x73, 0x73, 0x3a, 0x2f, 0x2f, 0x72, 0x65, 0x6c, 0x61,
+ 0x79, 0x2e, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2e, 0x62, 0x61, 0x6e, 0x64,
+ 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x27, 0x77, 0x73, 0x73, 0x3a, 0x2f, 0x2f, 0x6e, 0x6f,
+ 0x73, 0x2e, 0x6c, 0x6f, 0x6c, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x27, 0x77, 0x73, 0x73,
+ 0x3a, 0x2f, 0x2f, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x69,
+ 0x6d, 0x61, 0x6c, 0x2e, 0x6e, 0x65, 0x74, 0x27, 0x2c, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x27, 0x77,
+ 0x73, 0x73, 0x3a, 0x2f, 0x2f, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2e, 0x73,
+ 0x6e, 0x6f, 0x72, 0x74, 0x2e, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x6c, 0x27,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x3b, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x47, 0x65, 0x74, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20,
+ 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x20,
+ 0x30, 0x29, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x75,
+ 0x73, 0x65, 0x72, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x74, 0x69, 0x6d,
+ 0x65, 0x6f, 0x75, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x6f,
+ 0x75, 0x74, 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x20, 0x3d, 0x20,
+ 0x6e, 0x65, 0x77, 0x20, 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x28,
+ 0x28, 0x5f, 0x2c, 0x20, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x29, 0x20,
+ 0x3d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x73, 0x65, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75,
+ 0x74, 0x28, 0x28, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x72, 0x65, 0x6a, 0x65,
+ 0x63, 0x74, 0x28, 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x28, 0x27, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x71, 0x75,
+ 0x65, 0x72, 0x79, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x27,
+ 0x29, 0x29, 0x2c, 0x20, 0x35, 0x30, 0x30, 0x30, 0x29, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x71, 0x75, 0x65, 0x72,
+ 0x79, 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x20, 0x3d, 0x20, 0x70,
+ 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x71,
+ 0x75, 0x65, 0x72, 0x79, 0x53, 0x79, 0x6e, 0x63, 0x28, 0x72, 0x65, 0x6c,
+ 0x61, 0x79, 0x73, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x73,
+ 0x3a, 0x20, 0x5b, 0x30, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f,
+ 0x72, 0x73, 0x3a, 0x20, 0x5b, 0x75, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62,
+ 0x6b, 0x65, 0x79, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a,
+ 0x20, 0x31, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73,
+ 0x20, 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x50, 0x72, 0x6f,
+ 0x6d, 0x69, 0x73, 0x65, 0x2e, 0x72, 0x61, 0x63, 0x65, 0x28, 0x5b, 0x71,
+ 0x75, 0x65, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x2c,
+ 0x20, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x50, 0x72, 0x6f, 0x6d,
+ 0x69, 0x73, 0x65, 0x5d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3e, 0x20,
+ 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
+ 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c,
+ 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x66, 0x6f, 0x75, 0x6e,
+ 0x64, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x5b,
+ 0x30, 0x5d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70,
+ 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x3d, 0x20, 0x4a, 0x53, 0x4f,
+ 0x4e, 0x2e, 0x70, 0x61, 0x72, 0x73, 0x65, 0x28, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x73, 0x5b, 0x30, 0x5d, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
+ 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
+ 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x50, 0x61, 0x72, 0x73, 0x65, 0x64, 0x20,
+ 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x3a, 0x27, 0x2c, 0x20, 0x70,
+ 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x69, 0x73,
+ 0x70, 0x6c, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x28,
+ 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
+ 0x6f, 0x67, 0x28, 0x27, 0x4e, 0x6f, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69,
+ 0x6c, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x66, 0x6f,
+ 0x75, 0x6e, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x70, 0x75, 0x62, 0x6b,
+ 0x65, 0x79, 0x3a, 0x27, 0x2c, 0x20, 0x75, 0x73, 0x65, 0x72, 0x50, 0x75,
+ 0x62, 0x6b, 0x65, 0x79, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55,
+ 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72,
+ 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x28, 0x6e, 0x65,
+ 0x77, 0x20, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x29, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
+ 0x20, 0x28, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72,
+ 0x4e, 0x61, 0x6d, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x74, 0x68, 0x69, 0x73, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64,
- 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27, 0x6e, 0x6f,
- 0x6e, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x50, 0x72,
- 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x20,
- 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x6c, 0x6f,
- 0x61, 0x64, 0x3a, 0x27, 0x2c, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
- 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6d,
- 0x61, 0x67, 0x65, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64, 0x69,
- 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27, 0x6e, 0x6f, 0x6e,
- 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x6c,
- 0x65, 0x67, 0x61, 0x63, 0x79, 0x20, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73,
- 0x74, 0x65, 0x6e, 0x74, 0x20, 0x75, 0x73, 0x65, 0x72, 0x20, 0x64, 0x65,
- 0x74, 0x61, 0x69, 0x6c, 0x73, 0x20, 0x28, 0x6b, 0x65, 0x70, 0x74, 0x20,
- 0x66, 0x6f, 0x72, 0x20, 0x62, 0x61, 0x63, 0x6b, 0x77, 0x61, 0x72, 0x64,
- 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69,
- 0x74, 0x79, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
- 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73,
- 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x29, 0x20, 0x70, 0x65, 0x72, 0x73,
- 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61,
+ 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61,
0x6d, 0x65, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65,
- 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x65, 0x72, 0x73, 0x69,
- 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62,
- 0x6b, 0x65, 0x79, 0x20, 0x26, 0x26, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x4c,
- 0x69, 0x6e, 0x6b, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e,
- 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e,
- 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20,
- 0x6e, 0x70, 0x75, 0x62, 0x4c, 0x69, 0x6e, 0x6b, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55,
- 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x65, 0x72,
- 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50,
- 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f,
- 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x64, 0x69, 0x73, 0x70,
- 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55,
- 0x73, 0x65, 0x72, 0x41, 0x62, 0x6f, 0x75, 0x74, 0x29, 0x20, 0x70, 0x65,
+ 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27, 0x41, 0x6e, 0x6f, 0x6e, 0x79, 0x6d,
+ 0x6f, 0x75, 0x73, 0x20, 0x55, 0x73, 0x65, 0x72, 0x27, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20,
+ 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x20, 0x65, 0x6c, 0x65, 0x6d, 0x65,
+ 0x6e, 0x74, 0x73, 0x20, 0x69, 0x66, 0x20, 0x74, 0x68, 0x65, 0x79, 0x20,
+ 0x65, 0x78, 0x69, 0x73, 0x74, 0x20, 0x28, 0x62, 0x61, 0x63, 0x6b, 0x77,
+ 0x61, 0x72, 0x64, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62,
+ 0x69, 0x6c, 0x69, 0x74, 0x79, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70,
+ 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65,
+ 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55,
+ 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x2e, 0x74, 0x65, 0x78, 0x74,
+ 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27, 0x41,
+ 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x6f, 0x75, 0x73, 0x20, 0x55, 0x73, 0x65,
+ 0x72, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x65,
0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72,
- 0x41, 0x62, 0x6f, 0x75, 0x74, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f,
- 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x61, 0x62, 0x6f, 0x75,
- 0x74, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x48,
- 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79,
- 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x70, 0x69, 0x63,
- 0x74, 0x75, 0x72, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x74, 0x20, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6d, 0x61, 0x67, 0x65,
- 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x20, 0x3d, 0x20,
- 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74,
- 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28,
- 0x27, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x2d,
- 0x75, 0x73, 0x65, 0x72, 0x2d, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x75, 0x73,
- 0x65, 0x72, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x61,
- 0x69, 0x6e, 0x65, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x69, 0x63, 0x74,
- 0x75, 0x72, 0x65, 0x20, 0x26, 0x26, 0x20, 0x74, 0x79, 0x70, 0x65, 0x6f,
- 0x66, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x20, 0x3d, 0x3d,
- 0x3d, 0x20, 0x27, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x27, 0x20, 0x26,
- 0x26, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x2e, 0x73, 0x74,
- 0x61, 0x72, 0x74, 0x73, 0x57, 0x69, 0x74, 0x68, 0x28, 0x27, 0x68, 0x74,
- 0x74, 0x70, 0x27, 0x29, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x20, 0x6f, 0x72, 0x20, 0x75, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x20, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x20, 0x65, 0x6c,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x69, 0x6d,
- 0x67, 0x20, 0x3d, 0x20, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6d, 0x61, 0x67,
- 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x2e, 0x71,
- 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72,
- 0x28, 0x27, 0x69, 0x6d, 0x67, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x21, 0x69, 0x6d, 0x67, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x41, 0x62, 0x6f, 0x75, 0x74, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x6d, 0x67, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6c,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x69, 0x6d, 0x67, 0x27, 0x29,
+ 0x20, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55,
+ 0x73, 0x65, 0x72, 0x41, 0x62, 0x6f, 0x75, 0x74, 0x2e, 0x74, 0x65, 0x78,
+ 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27,
+ 0x4e, 0x6f, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x66,
+ 0x6f, 0x75, 0x6e, 0x64, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x4b, 0x65, 0x65, 0x70, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6e, 0x70, 0x75,
+ 0x62, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x50, 0x72, 0x6f, 0x70,
+ 0x65, 0x72, 0x6c, 0x79, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x20, 0x74,
+ 0x68, 0x65, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x70,
+ 0x6f, 0x6f, 0x6c, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x69, 0x6e, 0x67, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x70, 0x72, 0x6f, 0x66,
+ 0x69, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x63, 0x6c, 0x6f, 0x73,
+ 0x65, 0x28, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
+ 0x2f, 0x20, 0x47, 0x69, 0x76, 0x65, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x20,
+ 0x66, 0x6f, 0x72, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x50, 0x72,
+ 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x28, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76,
+ 0x65, 0x20, 0x3d, 0x3e, 0x20, 0x73, 0x65, 0x74, 0x54, 0x69, 0x6d, 0x65,
+ 0x6f, 0x75, 0x74, 0x28, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x2c,
+ 0x20, 0x31, 0x30, 0x30, 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20,
+ 0x28, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
+ 0x6f, 0x67, 0x28, 0x27, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20,
+ 0x70, 0x6f, 0x6f, 0x6c, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x20, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x20, 0x28, 0x6e, 0x6f, 0x6e, 0x2d, 0x63, 0x72,
+ 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x29, 0x3a, 0x27, 0x2c, 0x20, 0x63,
+ 0x6c, 0x6f, 0x73, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65,
+ 0x73, 0x73, 0x61, 0x67, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
+ 0x28, 0x27, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x6c, 0x6f,
+ 0x61, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64,
+ 0x3a, 0x20, 0x27, 0x20, 0x2b, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
+ 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70,
+ 0x64, 0x61, 0x74, 0x65, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x20,
+ 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x28, 0x6e, 0x65, 0x77,
+ 0x20, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x29, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x68, 0x65, 0x61,
+ 0x64, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x55, 0x73, 0x65,
+ 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f,
+ 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x70,
+ 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74,
+ 0x65, 0x20, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x20, 0x65, 0x6c, 0x65,
+ 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x69, 0x66, 0x20, 0x74, 0x68, 0x65,
+ 0x79, 0x20, 0x65, 0x78, 0x69, 0x73, 0x74, 0x20, 0x28, 0x62, 0x61, 0x63,
+ 0x6b, 0x77, 0x61, 0x72, 0x64, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74,
+ 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x29, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x65, 0x72,
+ 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e,
+ 0x61, 0x6d, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x65, 0x72, 0x73, 0x69,
+ 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d,
+ 0x65, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
+ 0x74, 0x20, 0x3d, 0x20, 0x27, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x6c,
+ 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69,
+ 0x6c, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
+ 0x66, 0x20, 0x28, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e,
+ 0x74, 0x55, 0x73, 0x65, 0x72, 0x41, 0x62, 0x6f, 0x75, 0x74, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74,
+ 0x55, 0x73, 0x65, 0x72, 0x41, 0x62, 0x6f, 0x75, 0x74, 0x2e, 0x74, 0x65,
+ 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
+ 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x4b, 0x65, 0x65, 0x70, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6e, 0x70, 0x75,
+ 0x62, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x44, 0x69,
+ 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c,
+ 0x65, 0x20, 0x64, 0x61, 0x74, 0x61, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x50,
+ 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x28, 0x70, 0x72, 0x6f, 0x66, 0x69,
+ 0x6c, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x3d, 0x20, 0x70,
+ 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x6e, 0x61, 0x6d, 0x65, 0x20,
+ 0x7c, 0x7c, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x64,
+ 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x20,
+ 0x7c, 0x7c, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x64,
+ 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x7c,
+ 0x7c, 0x20, 0x27, 0x41, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x6f, 0x75, 0x73,
+ 0x20, 0x55, 0x73, 0x65, 0x72, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x61, 0x62, 0x6f, 0x75, 0x74, 0x20,
+ 0x3d, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x61, 0x62,
+ 0x6f, 0x75, 0x74, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x4e, 0x6f, 0x20, 0x64,
+ 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x70,
+ 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x64, 0x27, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x69, 0x63, 0x74,
+ 0x75, 0x72, 0x65, 0x20, 0x3d, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c,
+ 0x65, 0x2e, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x20, 0x7c, 0x7c,
+ 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x2e, 0x69, 0x6d, 0x61,
+ 0x67, 0x65, 0x20, 0x7c, 0x7c, 0x20, 0x6e, 0x75, 0x6c, 0x6c, 0x3b, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x6f, 0x6e, 0x76,
+ 0x65, 0x72, 0x74, 0x20, 0x68, 0x65, 0x78, 0x20, 0x70, 0x75, 0x62, 0x6b,
+ 0x65, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x20, 0x66,
+ 0x6f, 0x72, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c,
+ 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x20, 0x75,
+ 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x4c,
+ 0x69, 0x6e, 0x6b, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x75, 0x73, 0x65, 0x72,
+ 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x26, 0x26, 0x20, 0x75, 0x73,
+ 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x6c, 0x65, 0x6e,
+ 0x67, 0x74, 0x68, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x36, 0x34, 0x20, 0x26,
+ 0x26, 0x20, 0x2f, 0x5e, 0x5b, 0x30, 0x2d, 0x39, 0x61, 0x2d, 0x66, 0x41,
+ 0x2d, 0x46, 0x5d, 0x2b, 0x24, 0x2f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x28,
+ 0x75, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x70, 0x75,
+ 0x62, 0x20, 0x3d, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x4e,
+ 0x6f, 0x73, 0x74, 0x72, 0x54, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x6e, 0x69,
+ 0x70, 0x31, 0x39, 0x2e, 0x6e, 0x70, 0x75, 0x62, 0x45, 0x6e, 0x63, 0x6f,
+ 0x64, 0x65, 0x28, 0x75, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x50,
+ 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x20, 0x6e, 0x70, 0x75, 0x62,
0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6d, 0x67, 0x2e, 0x63, 0x6c,
- 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x3d, 0x20, 0x27, 0x75,
- 0x73, 0x65, 0x72, 0x2d, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x2d,
- 0x69, 0x6d, 0x61, 0x67, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x6d, 0x67, 0x2e, 0x61, 0x6c, 0x74, 0x20, 0x3d, 0x20, 0x60, 0x24,
- 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x7d, 0x27, 0x73, 0x20, 0x70, 0x72, 0x6f,
- 0x66, 0x69, 0x6c, 0x65, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
- 0x60, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6d, 0x67, 0x2e, 0x6f,
- 0x6e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e,
- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x48, 0x69, 0x64,
- 0x65, 0x20, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x20, 0x6f, 0x6e, 0x20, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x4c, 0x69, 0x6e, 0x6b, 0x20, 0x3d,
+ 0x20, 0x60, 0x3c, 0x61, 0x20, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, 0x68,
+ 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x6e, 0x6a, 0x75, 0x6d, 0x70,
+ 0x2e, 0x6d, 0x65, 0x2f, 0x24, 0x7b, 0x6e, 0x70, 0x75, 0x62, 0x7d, 0x22,
+ 0x20, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x3d, 0x22, 0x5f, 0x62, 0x6c,
+ 0x61, 0x6e, 0x6b, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
+ 0x6e, 0x70, 0x75, 0x62, 0x2d, 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x3e, 0x24,
+ 0x7b, 0x6e, 0x70, 0x75, 0x62, 0x7d, 0x3c, 0x2f, 0x61, 0x3e, 0x60, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
+ 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64,
+ 0x20, 0x74, 0x6f, 0x20, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x20, 0x75,
+ 0x73, 0x65, 0x72, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x74,
+ 0x6f, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x68,
+ 0x65, 0x61, 0x64, 0x65, 0x72, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c,
+ 0x65, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72,
+ 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x65, 0x61, 0x64,
+ 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x2e, 0x74,
+ 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d,
+ 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x48, 0x61, 0x6e,
+ 0x64, 0x6c, 0x65, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x20, 0x70,
+ 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75,
+ 0x72, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x68,
+ 0x65, 0x61, 0x64, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6d, 0x61,
+ 0x67, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
+ 0x65, 0x20, 0x26, 0x26, 0x20, 0x74, 0x79, 0x70, 0x65, 0x6f, 0x66, 0x20,
+ 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x20, 0x3d, 0x3d, 0x3d, 0x20,
+ 0x27, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x27, 0x20, 0x26, 0x26, 0x20,
+ 0x28, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x2e, 0x73, 0x74, 0x61,
+ 0x72, 0x74, 0x73, 0x57, 0x69, 0x74, 0x68, 0x28, 0x27, 0x68, 0x74, 0x74,
+ 0x70, 0x27, 0x29, 0x20, 0x7c, 0x7c, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75,
+ 0x72, 0x65, 0x2e, 0x73, 0x74, 0x61, 0x72, 0x74, 0x73, 0x57, 0x69, 0x74,
+ 0x68, 0x28, 0x27, 0x68, 0x74, 0x74, 0x70, 0x73, 0x27, 0x29, 0x29, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x55, 0x73, 0x65,
+ 0x72, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x2e, 0x73, 0x72, 0x63, 0x20, 0x3d,
+ 0x20, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x65,
+ 0x61, 0x64, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6d, 0x61, 0x67,
+ 0x65, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64, 0x69, 0x73, 0x70,
+ 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27, 0x62, 0x6c, 0x6f, 0x63, 0x6b,
+ 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x55, 0x73, 0x65,
+ 0x72, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x2e, 0x6f, 0x6e, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x48, 0x69, 0x64, 0x65, 0x20, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x20,
+ 0x6f, 0x6e, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e,
0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27, 0x6e,
0x6f, 0x6e, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6d, 0x61,
- 0x67, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x2e,
- 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28,
- 0x69, 0x6d, 0x67, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6d, 0x67, 0x2e,
- 0x73, 0x72, 0x63, 0x20, 0x3d, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
- 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x69, 0x6d, 0x67, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65,
- 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27,
- 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x50,
+ 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x69, 0x6d, 0x61, 0x67, 0x65,
+ 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x6c,
+ 0x6f, 0x61, 0x64, 0x3a, 0x27, 0x2c, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75,
+ 0x72, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x48, 0x69, 0x64, 0x65, 0x20, 0x69, 0x6d, 0x61,
- 0x67, 0x65, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x20, 0x76, 0x61, 0x6c,
- 0x69, 0x64, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x69, 0x6d, 0x67, 0x20, 0x3d, 0x20, 0x75,
+ 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49,
+ 0x6d, 0x61, 0x67, 0x65, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64,
+ 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27, 0x6e, 0x6f,
+ 0x6e, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20,
+ 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x20, 0x70, 0x65, 0x72, 0x73, 0x69,
+ 0x73, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x75, 0x73, 0x65, 0x72, 0x20, 0x64,
+ 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x20, 0x28, 0x6b, 0x65, 0x70, 0x74,
+ 0x20, 0x66, 0x6f, 0x72, 0x20, 0x62, 0x61, 0x63, 0x6b, 0x77, 0x61, 0x72,
+ 0x64, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c,
+ 0x69, 0x74, 0x79, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
+ 0x28, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55,
+ 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x29, 0x20, 0x70, 0x65, 0x72,
+ 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e,
+ 0x61, 0x6d, 0x65, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74,
+ 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x65, 0x72, 0x73,
+ 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x75,
+ 0x62, 0x6b, 0x65, 0x79, 0x20, 0x26, 0x26, 0x20, 0x6e, 0x70, 0x75, 0x62,
+ 0x4c, 0x69, 0x6e, 0x6b, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65,
+ 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d,
+ 0x20, 0x6e, 0x70, 0x75, 0x62, 0x4c, 0x69, 0x6e, 0x6b, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x69, 0x66,
+ 0x20, 0x28, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74,
+ 0x55, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x65,
+ 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72,
+ 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43,
+ 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x64, 0x69, 0x73,
+ 0x70, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
+ 0x20, 0x28, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74,
+ 0x55, 0x73, 0x65, 0x72, 0x41, 0x62, 0x6f, 0x75, 0x74, 0x29, 0x20, 0x70,
+ 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65,
+ 0x72, 0x41, 0x62, 0x6f, 0x75, 0x74, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43,
+ 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x61, 0x62, 0x6f,
+ 0x75, 0x74, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x6c, 0x65, 0x67, 0x61, 0x63,
+ 0x79, 0x20, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x70, 0x69,
+ 0x63, 0x74, 0x75, 0x72, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x74, 0x20, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6d, 0x61, 0x67,
+ 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x20, 0x3d,
+ 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65,
+ 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64,
+ 0x28, 0x27, 0x70, 0x65, 0x72, 0x73, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x74,
+ 0x2d, 0x75, 0x73, 0x65, 0x72, 0x2d, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x27,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x75,
0x73, 0x65, 0x72, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x6e, 0x74,
- 0x61, 0x69, 0x6e, 0x65, 0x72, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x53,
- 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x28, 0x27, 0x69, 0x6d, 0x67,
- 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x69, 0x6d, 0x67, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6d, 0x67, 0x2e, 0x73,
- 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
- 0x20, 0x3d, 0x20, 0x27, 0x6e, 0x6f, 0x6e, 0x65, 0x27, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x50,
- 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65,
- 0x64, 0x20, 0x66, 0x6f, 0x72, 0x3a, 0x20, 0x24, 0x7b, 0x6e, 0x61, 0x6d,
- 0x65, 0x7d, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x70, 0x75, 0x62, 0x6b,
- 0x65, 0x79, 0x3a, 0x20, 0x24, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x50, 0x75,
- 0x62, 0x6b, 0x65, 0x79, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a,
- 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x20, 0x66, 0x75,
- 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x61, 0x73, 0x79, 0x6e, 0x63,
- 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x6f,
- 0x67, 0x6f, 0x75, 0x74, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x4c, 0x6f, 0x67, 0x67, 0x69, 0x6e,
- 0x67, 0x20, 0x6f, 0x75, 0x74, 0x2e, 0x2e, 0x2e, 0x27, 0x2c, 0x20, 0x27,
- 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x6f, 0x70, 0x20, 0x61, 0x75,
- 0x74, 0x6f, 0x2d, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x20, 0x62,
- 0x65, 0x66, 0x6f, 0x72, 0x65, 0x20, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x6e,
- 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x6f, 0x70, 0x53, 0x74, 0x61, 0x74,
- 0x73, 0x41, 0x75, 0x74, 0x6f, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68,
- 0x28, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x20, 0x75, 0x70,
- 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x70, 0x6f, 0x6f, 0x6c, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x6c, 0x6f, 0x73, 0x69, 0x6e,
- 0x67, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x70, 0x6f, 0x6f, 0x6c,
- 0x2e, 0x2e, 0x2e, 0x27, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27,
+ 0x61, 0x69, 0x6e, 0x65, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x69, 0x63,
+ 0x74, 0x75, 0x72, 0x65, 0x20, 0x26, 0x26, 0x20, 0x74, 0x79, 0x70, 0x65,
+ 0x6f, 0x66, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x20, 0x3d,
+ 0x3d, 0x3d, 0x20, 0x27, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x27, 0x20,
+ 0x26, 0x26, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x2e, 0x73,
+ 0x74, 0x61, 0x72, 0x74, 0x73, 0x57, 0x69, 0x74, 0x68, 0x28, 0x27, 0x68,
+ 0x74, 0x74, 0x70, 0x27, 0x29, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20, 0x6f, 0x72, 0x20, 0x75, 0x70,
+ 0x64, 0x61, 0x74, 0x65, 0x20, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x20, 0x65,
+ 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x69,
+ 0x6d, 0x67, 0x20, 0x3d, 0x20, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6d, 0x61,
+ 0x67, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x2e,
+ 0x71, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f,
+ 0x72, 0x28, 0x27, 0x69, 0x6d, 0x67, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
+ 0x20, 0x28, 0x21, 0x69, 0x6d, 0x67, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x69, 0x6d, 0x67, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
+ 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45,
+ 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x69, 0x6d, 0x67, 0x27,
0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x75, 0x72, 0x6c,
- 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x43, 0x6f, 0x6e, 0x6e,
- 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x72, 0x6c, 0x2e, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6d, 0x67, 0x2e, 0x63,
+ 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x3d, 0x20, 0x27,
+ 0x75, 0x73, 0x65, 0x72, 0x2d, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
+ 0x2d, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x66, 0x20, 0x28, 0x75, 0x72, 0x6c, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x69, 0x6d, 0x67, 0x2e, 0x61, 0x6c, 0x74, 0x20, 0x3d, 0x20, 0x60,
+ 0x24, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x7d, 0x27, 0x73, 0x20, 0x70, 0x72,
+ 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
+ 0x65, 0x60, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6d, 0x67, 0x2e,
+ 0x6f, 0x6e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x3d, 0x20, 0x66, 0x75,
+ 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x48, 0x69,
+ 0x64, 0x65, 0x20, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x20, 0x6f, 0x6e, 0x20,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x63, 0x6c, 0x6f,
- 0x73, 0x65, 0x28, 0x5b, 0x75, 0x72, 0x6c, 0x5d, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28,
- 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
- 0x28, 0x27, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65,
- 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x28, 0x6e, 0x6f, 0x6e, 0x2d,
- 0x63, 0x72, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x29, 0x3a, 0x27, 0x2c,
- 0x20, 0x65, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x6c,
- 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x3d, 0x20, 0x6e, 0x75, 0x6c,
- 0x6c, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x20, 0x3d, 0x20, 0x6e, 0x75, 0x6c, 0x6c,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x52, 0x65, 0x73, 0x65, 0x74, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
- 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x6c, 0x61, 0x67, 0x73,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x73, 0x53,
- 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x64, 0x20, 0x3d, 0x20,
- 0x66, 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x69, 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
- 0x62, 0x69, 0x6e, 0x67, 0x20, 0x3d, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65,
- 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61,
- 0x77, 0x61, 0x69, 0x74, 0x20, 0x6e, 0x6c, 0x4c, 0x69, 0x74, 0x65, 0x2e,
- 0x6c, 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x28, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x73, 0x65, 0x72, 0x50,
- 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x20, 0x6e, 0x75, 0x6c, 0x6c,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x73,
- 0x4c, 0x6f, 0x67, 0x67, 0x65, 0x64, 0x49, 0x6e, 0x20, 0x3d, 0x20, 0x66,
- 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6e,
- 0x66, 0x69, 0x67, 0x20, 0x3d, 0x20, 0x6e, 0x75, 0x6c, 0x6c, 0x3b, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x52, 0x65, 0x73, 0x65, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20,
- 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73,
- 0x74, 0x61, 0x74, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x43, 0x6f, 0x6e, 0x6e,
- 0x65, 0x63, 0x74, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x66, 0x61, 0x6c, 0x73,
- 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x3d,
- 0x20, 0x6e, 0x75, 0x6c, 0x6c, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x52, 0x65, 0x73, 0x65, 0x74,
- 0x20, 0x55, 0x49, 0x20, 0x2d, 0x20, 0x68, 0x69, 0x64, 0x65, 0x20, 0x70,
- 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x73,
- 0x68, 0x6f, 0x77, 0x20, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x20, 0x6d, 0x6f,
- 0x64, 0x61, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x68, 0x69, 0x64, 0x65, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x46,
- 0x72, 0x6f, 0x6d, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x28, 0x29, 0x3b,
- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x28, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x53, 0x65, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69,
- 0x74, 0x79, 0x28, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x4c, 0x6f, 0x67, 0x67,
- 0x65, 0x64, 0x20, 0x6f, 0x75, 0x74, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65,
- 0x73, 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x27, 0x2c, 0x20, 0x27, 0x49,
- 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x4c, 0x6f, 0x67, 0x6f, 0x75, 0x74,
- 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x3a, 0x20, 0x27, 0x20, 0x2b,
- 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61,
- 0x67, 0x65, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x66,
- 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x74, 0x61, 0x74,
- 0x75, 0x73, 0x28, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6c, 0x6f, 0x61,
- 0x64, 0x65, 0x64, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x69, 0x73,
- 0x70, 0x6c, 0x61, 0x79, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69,
- 0x73, 0x74, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x28, 0x27, 0x68,
- 0x69, 0x64, 0x64, 0x65, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
- 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x2e, 0x63, 0x6c, 0x61, 0x73,
- 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x61, 0x64, 0x64, 0x28, 0x27, 0x68,
- 0x69, 0x64, 0x64, 0x65, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x47,
- 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x20, 0x72, 0x61, 0x6e, 0x64,
- 0x6f, 0x6d, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x20, 0x49, 0x44, 0x20, 0x28, 0x61, 0x76, 0x6f, 0x69,
- 0x64, 0x69, 0x6e, 0x67, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x6e, 0x73, 0x20,
- 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x61, 0x72, 0x65, 0x20, 0x72, 0x65,
- 0x6a, 0x65, 0x63, 0x74, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x72, 0x65,
- 0x6c, 0x61, 0x79, 0x29, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
- 0x6e, 0x20, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x53, 0x75,
- 0x62, 0x49, 0x64, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x55, 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20,
- 0x61, 0x6c, 0x70, 0x68, 0x61, 0x6e, 0x75, 0x6d, 0x65, 0x72, 0x69, 0x63,
- 0x20, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x73, 0x2c,
- 0x20, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x73,
- 0x2c, 0x20, 0x68, 0x79, 0x70, 0x68, 0x65, 0x6e, 0x73, 0x2c, 0x20, 0x61,
- 0x6e, 0x64, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x73, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x68, 0x61, 0x72,
- 0x73, 0x20, 0x3d, 0x20, 0x27, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,
- 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53,
- 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x61, 0x62, 0x63, 0x64, 0x65,
- 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71,
- 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x30, 0x31, 0x32,
- 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x5f, 0x2d, 0x2c, 0x27, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x72, 0x65, 0x73,
- 0x75, 0x6c, 0x74, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x28, 0x6c, 0x65, 0x74, 0x20, 0x69,
- 0x20, 0x3d, 0x20, 0x30, 0x3b, 0x20, 0x69, 0x20, 0x3c, 0x20, 0x31, 0x32,
- 0x3b, 0x20, 0x69, 0x2b, 0x2b, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x20,
- 0x2b, 0x3d, 0x20, 0x63, 0x68, 0x61, 0x72, 0x73, 0x2e, 0x63, 0x68, 0x61,
- 0x72, 0x41, 0x74, 0x28, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f,
- 0x6f, 0x72, 0x28, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x72, 0x61, 0x6e, 0x64,
- 0x6f, 0x6d, 0x28, 0x29, 0x20, 0x2a, 0x20, 0x63, 0x68, 0x61, 0x72, 0x73,
- 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x29, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74,
- 0x75, 0x72, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x3b, 0x0a,
- 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63,
- 0x6b, 0x65, 0x74, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69,
- 0x6e, 0x67, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
- 0x74, 0x6f, 0x20, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x20, 0x74, 0x6f,
- 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x20,
- 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x0a,
- 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x61, 0x74, 0x74,
- 0x61, 0x63, 0x68, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74,
- 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2c, 0x20, 0x75, 0x72,
- 0x6c, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0xf0, 0x9f,
- 0x94, 0x8d, 0x20, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x67,
- 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x6d,
- 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f,
- 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x2e,
- 0x2e, 0x2e, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c,
- 0x20, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x73, 0x20, 0x63, 0x6f, 0x6e, 0x6e,
- 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x69, 0x6e, 0x20, 0x5f,
- 0x63, 0x6f, 0x6e, 0x6e, 0x20, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x6c, 0x61,
- 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x26, 0x26, 0x20, 0x72, 0x65, 0x6c,
- 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x5f, 0x63, 0x6f, 0x6e, 0x6e,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x20, 0x77,
- 0x68, 0x65, 0x6e, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x73, 0x20, 0x61, 0x72, 0x65, 0x20, 0x63, 0x72, 0x65, 0x61,
- 0x74, 0x65, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e,
- 0x61, 0x6c, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50,
- 0x6f, 0x6f, 0x6c, 0x2e, 0x5f, 0x63, 0x6f, 0x6e, 0x6e, 0x5b, 0x75, 0x72,
- 0x6c, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x66, 0x20, 0x28, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c,
- 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f,
- 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
- 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0xf0, 0x9f, 0x93, 0xa1, 0x20, 0x46,
- 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e,
- 0x67, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x66, 0x6f, 0x72, 0x20, 0x55, 0x52, 0x4c, 0x3a, 0x27, 0x2c, 0x20,
- 0x75, 0x72, 0x6c, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x54, 0x72,
- 0x79, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x20,
- 0x74, 0x68, 0x65, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65,
- 0x74, 0x20, 0x69, 0x66, 0x20, 0x69, 0x74, 0x27, 0x73, 0x20, 0x61, 0x76,
- 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c,
- 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x5f, 0x63, 0x6f, 0x6e, 0x6e,
- 0x5b, 0x75, 0x72, 0x6c, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x63,
- 0x6f, 0x6e, 0x6e, 0x20, 0x26, 0x26, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x2e,
- 0x77, 0x73, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x74,
- 0x74, 0x61, 0x63, 0x68, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65,
- 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e,
- 0x65, 0x72, 0x73, 0x28, 0x63, 0x6f, 0x6e, 0x6e, 0x2e, 0x77, 0x73, 0x2c,
- 0x20, 0x75, 0x72, 0x6c, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4f, 0x76, 0x65, 0x72, 0x72,
- 0x69, 0x64, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6e, 0x6e,
- 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x67, 0x65, 0x74, 0x74, 0x65,
- 0x72, 0x20, 0x74, 0x6f, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72,
- 0x20, 0x6e, 0x65, 0x77, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6f, 0x72, 0x69, 0x67, 0x69,
- 0x6e, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x6e, 0x20, 0x3d, 0x20, 0x72, 0x65,
- 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x5f, 0x63, 0x6f, 0x6e,
- 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x5f, 0x63, 0x6f,
- 0x6e, 0x6e, 0x20, 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x50, 0x72, 0x6f,
- 0x78, 0x79, 0x28, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x43,
- 0x6f, 0x6e, 0x6e, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, 0x65, 0x74, 0x28, 0x74,
- 0x61, 0x72, 0x67, 0x65, 0x74, 0x2c, 0x20, 0x70, 0x72, 0x6f, 0x70, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x20, 0x3d, 0x20, 0x74, 0x61, 0x72, 0x67,
- 0x65, 0x74, 0x5b, 0x70, 0x72, 0x6f, 0x70, 0x5d, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x63, 0x6f, 0x6e, 0x6e, 0x20, 0x26,
- 0x26, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x2e, 0x77, 0x73, 0x20, 0x26, 0x26,
- 0x20, 0x21, 0x63, 0x6f, 0x6e, 0x6e, 0x2e, 0x77, 0x73, 0x2e, 0x5f, 0x6d,
- 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x65, 0x64, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0xf0, 0x9f, 0x94,
- 0x97, 0x20, 0x4e, 0x65, 0x77, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63,
- 0x6b, 0x65, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x65, 0x64, 0x20,
- 0x66, 0x6f, 0x72, 0x3a, 0x27, 0x2c, 0x20, 0x70, 0x72, 0x6f, 0x70, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x74,
- 0x74, 0x61, 0x63, 0x68, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65,
- 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e,
- 0x65, 0x72, 0x73, 0x28, 0x63, 0x6f, 0x6e, 0x6e, 0x2e, 0x77, 0x73, 0x2c,
- 0x20, 0x70, 0x72, 0x6f, 0x70, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x2e, 0x77, 0x73, 0x2e,
- 0x5f, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x65, 0x64, 0x20, 0x3d,
- 0x20, 0x74, 0x72, 0x75, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65,
+ 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27,
+ 0x6e, 0x6f, 0x6e, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6d,
+ 0x61, 0x67, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72,
+ 0x2e, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64,
+ 0x28, 0x69, 0x6d, 0x67, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6d, 0x67,
+ 0x2e, 0x73, 0x72, 0x63, 0x20, 0x3d, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75,
+ 0x72, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x69, 0x6d, 0x67, 0x2e, 0x73, 0x74, 0x79, 0x6c,
+ 0x65, 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20,
+ 0x27, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x48, 0x69, 0x64, 0x65, 0x20, 0x69, 0x6d,
+ 0x61, 0x67, 0x65, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x20, 0x76, 0x61,
+ 0x6c, 0x69, 0x64, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x69, 0x6d, 0x67, 0x20, 0x3d, 0x20,
+ 0x75, 0x73, 0x65, 0x72, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x6e,
+ 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79,
+ 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x28, 0x27, 0x69, 0x6d,
+ 0x67, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x69, 0x6d, 0x67,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6d, 0x67, 0x2e,
+ 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
+ 0x79, 0x20, 0x3d, 0x20, 0x27, 0x6e, 0x6f, 0x6e, 0x65, 0x27, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60,
+ 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x6c, 0x6f, 0x61, 0x64,
+ 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x3a, 0x20, 0x24, 0x7b, 0x6e, 0x61,
+ 0x6d, 0x65, 0x7d, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x70, 0x75, 0x62,
+ 0x6b, 0x65, 0x79, 0x3a, 0x20, 0x24, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x50,
+ 0x75, 0x62, 0x6b, 0x65, 0x79, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x7d, 0x0a,
+ 0x0a, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x20, 0x66,
+ 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x61, 0x73, 0x79, 0x6e,
+ 0x63, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c,
+ 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x4c, 0x6f, 0x67, 0x67, 0x69,
+ 0x6e, 0x67, 0x20, 0x6f, 0x75, 0x74, 0x2e, 0x2e, 0x2e, 0x27, 0x2c, 0x20,
+ 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x6f, 0x70, 0x20, 0x61,
+ 0x75, 0x74, 0x6f, 0x2d, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x20,
+ 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x20, 0x64, 0x69, 0x73, 0x63, 0x6f,
+ 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x6f, 0x70, 0x53, 0x74, 0x61,
+ 0x74, 0x73, 0x41, 0x75, 0x74, 0x6f, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73,
+ 0x68, 0x28, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x20, 0x75,
+ 0x70, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x70, 0x6f, 0x6f, 0x6c,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
+ 0x28, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x6c, 0x6f, 0x73, 0x69,
+ 0x6e, 0x67, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x70, 0x6f, 0x6f,
+ 0x6c, 0x2e, 0x2e, 0x2e, 0x27, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x75, 0x72,
+ 0x6c, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x43, 0x6f, 0x6e,
+ 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x72, 0x6c, 0x2e, 0x76,
+ 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29, 0x3b,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20,
- 0x63, 0x6f, 0x6e, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x2c, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65, 0x74,
- 0x28, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x2c, 0x20, 0x70, 0x72, 0x6f,
- 0x70, 0x2c, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x75, 0x72, 0x6c, 0x29, 0x20, 0x7b, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x76, 0x61, 0x6c, 0x75,
- 0x65, 0x20, 0x26, 0x26, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x77,
- 0x73, 0x20, 0x26, 0x26, 0x20, 0x21, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e,
- 0x77, 0x73, 0x2e, 0x5f, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x65,
- 0x64, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
- 0x28, 0x27, 0xf0, 0x9f, 0x94, 0x97, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f,
- 0x63, 0x6b, 0x65, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x20, 0x62, 0x65, 0x69, 0x6e, 0x67, 0x20, 0x73, 0x65,
- 0x74, 0x20, 0x66, 0x6f, 0x72, 0x3a, 0x27, 0x2c, 0x20, 0x70, 0x72, 0x6f,
- 0x70, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20,
+ 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x63, 0x6c,
+ 0x6f, 0x73, 0x65, 0x28, 0x5b, 0x75, 0x72, 0x6c, 0x5d, 0x29, 0x3b, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63,
- 0x6b, 0x65, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74,
- 0x65, 0x6e, 0x65, 0x72, 0x73, 0x28, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e,
- 0x77, 0x73, 0x2c, 0x20, 0x70, 0x72, 0x6f, 0x70, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20,
+ 0x28, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65,
- 0x2e, 0x77, 0x73, 0x2e, 0x5f, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72,
- 0x65, 0x64, 0x20, 0x3d, 0x20, 0x74, 0x72, 0x75, 0x65, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x72,
- 0x67, 0x65, 0x74, 0x5b, 0x70, 0x72, 0x6f, 0x70, 0x5d, 0x20, 0x3d, 0x20,
- 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72,
- 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x74, 0x72, 0x75, 0x65, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
- 0x28, 0x27, 0xe2, 0x9c, 0x85, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63,
- 0x6b, 0x65, 0x74, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69,
- 0x6e, 0x67, 0x20, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x65, 0x64, 0x27,
- 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x57, 0x65, 0x62,
- 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c,
- 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73, 0x28, 0x77, 0x73, 0x2c,
- 0x20, 0x75, 0x72, 0x6c, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
- 0x60, 0xf0, 0x9f, 0x8e, 0xaf, 0x20, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68,
- 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x6c, 0x69,
- 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x57,
- 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x66, 0x6f, 0x72,
- 0x20, 0x24, 0x7b, 0x75, 0x72, 0x6c, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x67, 0x20, 0x63,
- 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6f, 0x70,
- 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x77, 0x73, 0x2e, 0x61, 0x64,
- 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e,
- 0x65, 0x72, 0x28, 0x27, 0x6f, 0x70, 0x65, 0x6e, 0x27, 0x2c, 0x20, 0x28,
- 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
+ 0x67, 0x28, 0x27, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x63, 0x6c, 0x6f, 0x73,
+ 0x65, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x28, 0x6e, 0x6f, 0x6e,
+ 0x2d, 0x63, 0x72, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x29, 0x3a, 0x27,
+ 0x2c, 0x20, 0x65, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x3d, 0x20, 0x6e, 0x75,
+ 0x6c, 0x6c, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
+ 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x20, 0x3d, 0x20, 0x6e, 0x75, 0x6c,
+ 0x6c, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x52, 0x65, 0x73, 0x65, 0x74, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63,
+ 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x6c, 0x61, 0x67,
+ 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x73,
+ 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x64, 0x20, 0x3d,
+ 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x69, 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
+ 0x69, 0x62, 0x69, 0x6e, 0x67, 0x20, 0x3d, 0x20, 0x66, 0x61, 0x6c, 0x73,
+ 0x65, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x6e, 0x6c, 0x4c, 0x69, 0x74, 0x65,
+ 0x2e, 0x6c, 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x28, 0x29, 0x3b, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x73, 0x65, 0x72,
+ 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x20, 0x6e, 0x75, 0x6c,
+ 0x6c, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
+ 0x73, 0x4c, 0x6f, 0x67, 0x67, 0x65, 0x64, 0x49, 0x6e, 0x20, 0x3d, 0x20,
+ 0x66, 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x43, 0x6f,
+ 0x6e, 0x66, 0x69, 0x67, 0x20, 0x3d, 0x20, 0x6e, 0x75, 0x6c, 0x6c, 0x3b,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x52, 0x65, 0x73, 0x65, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79,
+ 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x69, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x43, 0x6f, 0x6e,
+ 0x6e, 0x65, 0x63, 0x74, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x66, 0x61, 0x6c,
+ 0x73, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20,
+ 0x3d, 0x20, 0x6e, 0x75, 0x6c, 0x6c, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x52, 0x65, 0x73, 0x65,
+ 0x74, 0x20, 0x55, 0x49, 0x20, 0x2d, 0x20, 0x68, 0x69, 0x64, 0x65, 0x20,
+ 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x61, 0x6e, 0x64, 0x20,
+ 0x73, 0x68, 0x6f, 0x77, 0x20, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x20, 0x6d,
+ 0x6f, 0x64, 0x61, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x68, 0x69, 0x64, 0x65, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
+ 0x46, 0x72, 0x6f, 0x6d, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x28, 0x29,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75,
+ 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53,
+ 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70,
+ 0x64, 0x61, 0x74, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x53, 0x65, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c,
+ 0x69, 0x74, 0x79, 0x28, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x4c, 0x6f, 0x67,
+ 0x67, 0x65, 0x64, 0x20, 0x6f, 0x75, 0x74, 0x20, 0x73, 0x75, 0x63, 0x63,
+ 0x65, 0x73, 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x27, 0x2c, 0x20, 0x27,
+ 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x4c, 0x6f, 0x67, 0x6f, 0x75,
+ 0x74, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x3a, 0x20, 0x27, 0x20,
+ 0x2b, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73,
+ 0x61, 0x67, 0x65, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a,
+ 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64,
+ 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x74, 0x61,
+ 0x74, 0x75, 0x73, 0x28, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6c, 0x6f,
+ 0x61, 0x64, 0x65, 0x64, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x69,
+ 0x73, 0x70, 0x6c, 0x61, 0x79, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c,
+ 0x69, 0x73, 0x74, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x28, 0x27,
+ 0x68, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69,
+ 0x67, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x2e, 0x63, 0x6c, 0x61,
+ 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x61, 0x64, 0x64, 0x28, 0x27,
+ 0x68, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x0a, 0x0a, 0x2f, 0x2f, 0x20,
+ 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x20, 0x72, 0x61, 0x6e,
+ 0x64, 0x6f, 0x6d, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x49, 0x44, 0x20, 0x28, 0x61, 0x76, 0x6f,
+ 0x69, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x6e, 0x73,
+ 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x61, 0x72, 0x65, 0x20, 0x72,
+ 0x65, 0x6a, 0x65, 0x63, 0x74, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x72,
+ 0x65, 0x6c, 0x61, 0x79, 0x29, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x20, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x53,
+ 0x75, 0x62, 0x49, 0x64, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x73, 0x65, 0x20, 0x6f, 0x6e, 0x6c, 0x79,
+ 0x20, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x6e, 0x75, 0x6d, 0x65, 0x72, 0x69,
+ 0x63, 0x20, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x73,
+ 0x2c, 0x20, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x73, 0x63, 0x6f, 0x72, 0x65,
+ 0x73, 0x2c, 0x20, 0x68, 0x79, 0x70, 0x68, 0x65, 0x6e, 0x73, 0x2c, 0x20,
+ 0x61, 0x6e, 0x64, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x73, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x68, 0x61,
+ 0x72, 0x73, 0x20, 0x3d, 0x20, 0x27, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46,
+ 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52,
+ 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x61, 0x62, 0x63, 0x64,
+ 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70,
+ 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x30, 0x31,
+ 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x5f, 0x2d, 0x2c, 0x27,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x72, 0x65,
+ 0x73, 0x75, 0x6c, 0x74, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x28, 0x6c, 0x65, 0x74, 0x20,
+ 0x69, 0x20, 0x3d, 0x20, 0x30, 0x3b, 0x20, 0x69, 0x20, 0x3c, 0x20, 0x31,
+ 0x32, 0x3b, 0x20, 0x69, 0x2b, 0x2b, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
+ 0x20, 0x2b, 0x3d, 0x20, 0x63, 0x68, 0x61, 0x72, 0x73, 0x2e, 0x63, 0x68,
+ 0x61, 0x72, 0x41, 0x74, 0x28, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c,
+ 0x6f, 0x6f, 0x72, 0x28, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x72, 0x61, 0x6e,
+ 0x64, 0x6f, 0x6d, 0x28, 0x29, 0x20, 0x2a, 0x20, 0x63, 0x68, 0x61, 0x72,
+ 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x29, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
+ 0x74, 0x75, 0x72, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x3b,
+ 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f,
+ 0x63, 0x6b, 0x65, 0x74, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72,
+ 0x69, 0x6e, 0x67, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x20, 0x74, 0x6f, 0x20, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x20, 0x74,
+ 0x6f, 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c,
+ 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73,
+ 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x61, 0x74,
+ 0x74, 0x61, 0x63, 0x68, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65,
+ 0x74, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x28,
+ 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2c, 0x20, 0x75,
+ 0x72, 0x6c, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0xf0,
+ 0x9f, 0x94, 0x8d, 0x20, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x69, 0x6e,
+ 0x67, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20,
+ 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x74,
+ 0x6f, 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c,
+ 0x2e, 0x2e, 0x2e, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f,
+ 0x6c, 0x20, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x73, 0x20, 0x63, 0x6f, 0x6e,
+ 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x69, 0x6e, 0x20,
+ 0x5f, 0x63, 0x6f, 0x6e, 0x6e, 0x20, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x6c,
+ 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x26, 0x26, 0x20, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x5f, 0x63, 0x6f, 0x6e,
+ 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2f, 0x2f, 0x20, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x20,
+ 0x77, 0x68, 0x65, 0x6e, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x61, 0x72, 0x65, 0x20, 0x63, 0x72, 0x65,
+ 0x61, 0x74, 0x65, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6f, 0x72, 0x69, 0x67, 0x69,
+ 0x6e, 0x61, 0x6c, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79,
+ 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x5f, 0x63, 0x6f, 0x6e, 0x6e, 0x5b, 0x75,
+ 0x72, 0x6c, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61,
+ 0x6c, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
+ 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0xf0, 0x9f, 0x93, 0xa1, 0x20,
+ 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69,
+ 0x6e, 0x67, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x55, 0x52, 0x4c, 0x3a, 0x27, 0x2c,
+ 0x20, 0x75, 0x72, 0x6c, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x54,
+ 0x72, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73,
+ 0x20, 0x74, 0x68, 0x65, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b,
+ 0x65, 0x74, 0x20, 0x69, 0x66, 0x20, 0x69, 0x74, 0x27, 0x73, 0x20, 0x61,
+ 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x20, 0x3d, 0x20, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x5f, 0x63, 0x6f, 0x6e,
+ 0x6e, 0x5b, 0x75, 0x72, 0x6c, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x63, 0x6f, 0x6e, 0x6e, 0x20, 0x26, 0x26, 0x20, 0x63, 0x6f, 0x6e, 0x6e,
+ 0x2e, 0x77, 0x73, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61,
+ 0x74, 0x74, 0x61, 0x63, 0x68, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b,
+ 0x65, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65,
+ 0x6e, 0x65, 0x72, 0x73, 0x28, 0x63, 0x6f, 0x6e, 0x6e, 0x2e, 0x77, 0x73,
+ 0x2c, 0x20, 0x75, 0x72, 0x6c, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4f, 0x76, 0x65, 0x72,
+ 0x72, 0x69, 0x64, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6e,
+ 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x67, 0x65, 0x74, 0x74,
+ 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f,
+ 0x72, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6f, 0x72, 0x69, 0x67,
+ 0x69, 0x6e, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x6e, 0x20, 0x3d, 0x20, 0x72,
+ 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x5f, 0x63, 0x6f,
+ 0x6e, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x5f, 0x63,
+ 0x6f, 0x6e, 0x6e, 0x20, 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x50, 0x72,
+ 0x6f, 0x78, 0x79, 0x28, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c,
+ 0x43, 0x6f, 0x6e, 0x6e, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, 0x65, 0x74, 0x28,
+ 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x2c, 0x20, 0x70, 0x72, 0x6f, 0x70,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x94,
- 0x93, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20,
- 0x4f, 0x50, 0x45, 0x4e, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x24, 0x7b, 0x75,
- 0x72, 0x6c, 0x7d, 0x3a, 0x60, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x61,
- 0x64, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x20, 0x77, 0x73, 0x2e,
- 0x72, 0x65, 0x61, 0x64, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x2c, 0x0a,
+ 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x20, 0x3d, 0x20, 0x74, 0x61, 0x72,
+ 0x67, 0x65, 0x74, 0x5b, 0x70, 0x72, 0x6f, 0x70, 0x5d, 0x3b, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x75, 0x72, 0x6c, 0x3a, 0x20, 0x77, 0x73, 0x2e, 0x75, 0x72, 0x6c, 0x2c,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x3a, 0x20, 0x77,
- 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2c, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x20,
- 0x77, 0x73, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
- 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x67, 0x20, 0x69, 0x6e,
- 0x63, 0x6f, 0x6d, 0x69, 0x6e, 0x67, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61,
- 0x67, 0x65, 0x73, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x66, 0x75, 0x6c,
- 0x6c, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x77, 0x73, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e,
- 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x6d,
- 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x27, 0x2c, 0x20, 0x28, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x3d,
- 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
- 0x28, 0x60, 0xf0, 0x9f, 0x93, 0xa8, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f,
- 0x63, 0x6b, 0x65, 0x74, 0x20, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45,
- 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x24, 0x7b, 0x75, 0x72, 0x6c, 0x7d,
- 0x3a, 0x60, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x79,
- 0x70, 0x65, 0x3a, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x74, 0x79,
- 0x70, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x61, 0x74, 0x61,
- 0x3a, 0x20, 0x64, 0x61, 0x74, 0x61, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x64, 0x61, 0x74, 0x61, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x3a, 0x20,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x2c,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
- 0x6d, 0x70, 0x3a, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x44, 0x61, 0x74, 0x65,
- 0x28, 0x29, 0x2e, 0x74, 0x6f, 0x49, 0x53, 0x4f, 0x53, 0x74, 0x72, 0x69,
- 0x6e, 0x67, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x54, 0x72, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x70, 0x61, 0x72, 0x73,
- 0x65, 0x20, 0x61, 0x73, 0x20, 0x4a, 0x53, 0x4f, 0x4e, 0x20, 0x66, 0x6f,
- 0x72, 0x20, 0x4e, 0x6f, 0x73, 0x74, 0x72, 0x20, 0x6d, 0x65, 0x73, 0x73,
- 0x61, 0x67, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x61, 0x72,
- 0x73, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x4a, 0x53, 0x4f, 0x4e, 0x2e, 0x70,
- 0x61, 0x72, 0x73, 0x65, 0x28, 0x64, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x41, 0x72, 0x72, 0x61,
- 0x79, 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x28, 0x70, 0x61,
- 0x72, 0x73, 0x65, 0x64, 0x29, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x5b,
- 0x74, 0x79, 0x70, 0x65, 0x2c, 0x20, 0x2e, 0x2e, 0x2e, 0x61, 0x72, 0x67,
- 0x73, 0x5d, 0x20, 0x3d, 0x20, 0x70, 0x61, 0x72, 0x73, 0x65, 0x64, 0x3b,
+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x63, 0x6f, 0x6e, 0x6e, 0x20,
+ 0x26, 0x26, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x2e, 0x77, 0x73, 0x20, 0x26,
+ 0x26, 0x20, 0x21, 0x63, 0x6f, 0x6e, 0x6e, 0x2e, 0x77, 0x73, 0x2e, 0x5f,
+ 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x65, 0x64, 0x29, 0x20, 0x7b,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f,
- 0x93, 0xa8, 0x20, 0x50, 0x61, 0x72, 0x73, 0x65, 0x64, 0x20, 0x4e, 0x6f,
- 0x73, 0x74, 0x72, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20,
- 0x5b, 0x24, 0x7b, 0x74, 0x79, 0x70, 0x65, 0x7d, 0x5d, 0x3a, 0x60, 0x2c,
- 0x20, 0x61, 0x72, 0x67, 0x73, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0xf0, 0x9f,
+ 0x94, 0x97, 0x20, 0x4e, 0x65, 0x77, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f,
+ 0x63, 0x6b, 0x65, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x20, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74, 0x65, 0x64,
+ 0x20, 0x66, 0x6f, 0x72, 0x3a, 0x27, 0x2c, 0x20, 0x70, 0x72, 0x6f, 0x70,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61,
+ 0x74, 0x74, 0x61, 0x63, 0x68, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b,
+ 0x65, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65,
+ 0x6e, 0x65, 0x72, 0x73, 0x28, 0x63, 0x6f, 0x6e, 0x6e, 0x2e, 0x77, 0x73,
+ 0x2c, 0x20, 0x70, 0x72, 0x6f, 0x70, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x2e, 0x77, 0x73,
+ 0x2e, 0x5f, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x65, 0x64, 0x20,
+ 0x3d, 0x20, 0x74, 0x72, 0x75, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
- 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x93, 0xa8, 0x20, 0x50,
- 0x61, 0x72, 0x73, 0x65, 0x64, 0x20, 0x4a, 0x53, 0x4f, 0x4e, 0x3a, 0x60,
- 0x2c, 0x20, 0x70, 0x61, 0x72, 0x73, 0x65, 0x64, 0x29, 0x3b, 0x0a, 0x20,
+ 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e,
+ 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x2c, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65,
+ 0x74, 0x28, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x2c, 0x20, 0x70, 0x72,
+ 0x6f, 0x70, 0x2c, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x76, 0x61, 0x6c,
+ 0x75, 0x65, 0x20, 0x26, 0x26, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e,
+ 0x77, 0x73, 0x20, 0x26, 0x26, 0x20, 0x21, 0x76, 0x61, 0x6c, 0x75, 0x65,
+ 0x2e, 0x77, 0x73, 0x2e, 0x5f, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72,
+ 0x65, 0x64, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68,
- 0x20, 0x28, 0x70, 0x61, 0x72, 0x73, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x93,
- 0xa8, 0x20, 0x52, 0x61, 0x77, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
- 0x65, 0x20, 0x28, 0x6e, 0x6f, 0x74, 0x20, 0x4a, 0x53, 0x4f, 0x4e, 0x29,
- 0x3a, 0x60, 0x2c, 0x20, 0x64, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63,
- 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x28, 0x60, 0xe2, 0x9d, 0x8c, 0x20, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x20, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x69,
- 0x6e, 0x67, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74,
- 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x66, 0x72, 0x6f,
- 0x6d, 0x20, 0x24, 0x7b, 0x75, 0x72, 0x6c, 0x7d, 0x3a, 0x60, 0x2c, 0x20,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29,
- 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f,
- 0x67, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20,
- 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x77, 0x73, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c,
- 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x6f,
- 0x73, 0x65, 0x27, 0x2c, 0x20, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29,
- 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
- 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x94, 0x92, 0x20, 0x57, 0x65, 0x62, 0x53,
- 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x43, 0x4c, 0x4f, 0x53, 0x45, 0x20,
- 0x66, 0x6f, 0x72, 0x20, 0x24, 0x7b, 0x75, 0x72, 0x6c, 0x7d, 0x3a, 0x60,
- 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x64, 0x65, 0x3a, 0x20, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x6f, 0x64, 0x65, 0x2c, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
- 0x61, 0x73, 0x6f, 0x6e, 0x3a, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e,
- 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x77, 0x61, 0x73, 0x43,
- 0x6c, 0x65, 0x61, 0x6e, 0x3a, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e,
- 0x77, 0x61, 0x73, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x2c, 0x0a, 0x20, 0x20,
+ 0x67, 0x28, 0x27, 0xf0, 0x9f, 0x94, 0x97, 0x20, 0x57, 0x65, 0x62, 0x53,
+ 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x62, 0x65, 0x69, 0x6e, 0x67, 0x20, 0x73,
+ 0x65, 0x74, 0x20, 0x66, 0x6f, 0x72, 0x3a, 0x27, 0x2c, 0x20, 0x70, 0x72,
+ 0x6f, 0x70, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x57, 0x65, 0x62, 0x53, 0x6f,
+ 0x63, 0x6b, 0x65, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73,
+ 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73, 0x28, 0x76, 0x61, 0x6c, 0x75, 0x65,
+ 0x2e, 0x77, 0x73, 0x2c, 0x20, 0x70, 0x72, 0x6f, 0x70, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x76, 0x61, 0x6c, 0x75,
+ 0x65, 0x2e, 0x77, 0x73, 0x2e, 0x5f, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f,
+ 0x72, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x74, 0x72, 0x75, 0x65, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61,
+ 0x72, 0x67, 0x65, 0x74, 0x5b, 0x70, 0x72, 0x6f, 0x70, 0x5d, 0x20, 0x3d,
+ 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x74, 0x72, 0x75, 0x65, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
+ 0x67, 0x28, 0x27, 0xe2, 0x9c, 0x85, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f,
+ 0x63, 0x6b, 0x65, 0x74, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72,
+ 0x69, 0x6e, 0x67, 0x20, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x65, 0x64,
+ 0x27, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x20, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x57, 0x65,
+ 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74,
+ 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73, 0x28, 0x77, 0x73,
+ 0x2c, 0x20, 0x75, 0x72, 0x6c, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
+ 0x28, 0x60, 0xf0, 0x9f, 0x8e, 0xaf, 0x20, 0x41, 0x74, 0x74, 0x61, 0x63,
+ 0x68, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x6c,
+ 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73, 0x20, 0x74, 0x6f, 0x20,
+ 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x66, 0x6f,
+ 0x72, 0x20, 0x24, 0x7b, 0x75, 0x72, 0x6c, 0x7d, 0x60, 0x29, 0x3b, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x67, 0x20,
+ 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6f,
+ 0x70, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x77, 0x73, 0x2e, 0x61,
+ 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65,
+ 0x6e, 0x65, 0x72, 0x28, 0x27, 0x6f, 0x70, 0x65, 0x6e, 0x27, 0x2c, 0x20,
+ 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f,
+ 0x94, 0x93, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74,
+ 0x20, 0x4f, 0x50, 0x45, 0x4e, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x24, 0x7b,
+ 0x75, 0x72, 0x6c, 0x7d, 0x3a, 0x60, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
0x61, 0x64, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x20, 0x77, 0x73,
0x2e, 0x72, 0x65, 0x61, 0x64, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x2c,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x3a, 0x20,
- 0x6e, 0x65, 0x77, 0x20, 0x44, 0x61, 0x74, 0x65, 0x28, 0x29, 0x2e, 0x74,
- 0x6f, 0x49, 0x53, 0x4f, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x29,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x67, 0x20, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x73, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x66, 0x75, 0x6c,
- 0x6c, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x77, 0x73, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e,
- 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x27, 0x2c, 0x20, 0x28, 0x65, 0x76, 0x65, 0x6e,
- 0x74, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x60, 0xe2, 0x9d, 0x8c, 0x20, 0x57,
- 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x45, 0x52, 0x52,
- 0x4f, 0x52, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x24, 0x7b, 0x75, 0x72, 0x6c,
- 0x7d, 0x3a, 0x60, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3a,
- 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x2c,
+ 0x20, 0x75, 0x72, 0x6c, 0x3a, 0x20, 0x77, 0x73, 0x2e, 0x75, 0x72, 0x6c,
+ 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x3a, 0x20,
+ 0x77, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2c,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x3a, 0x20, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x2e, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x2c, 0x0a, 0x20,
+ 0x20, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x3a,
+ 0x20, 0x77, 0x73, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x67, 0x20, 0x69,
+ 0x6e, 0x63, 0x6f, 0x6d, 0x69, 0x6e, 0x67, 0x20, 0x6d, 0x65, 0x73, 0x73,
+ 0x61, 0x67, 0x65, 0x73, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x66, 0x75,
+ 0x6c, 0x6c, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x77, 0x73, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65,
+ 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27,
+ 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x27, 0x2c, 0x20, 0x28, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20,
+ 0x3d, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x64, 0x61, 0x74, 0x61,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
+ 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x93, 0xa8, 0x20, 0x57, 0x65, 0x62, 0x53,
+ 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47,
+ 0x45, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x24, 0x7b, 0x75, 0x72, 0x6c,
+ 0x7d, 0x3a, 0x60, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74,
+ 0x79, 0x70, 0x65, 0x3a, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x74,
+ 0x79, 0x70, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x61, 0x74,
+ 0x61, 0x3a, 0x20, 0x64, 0x61, 0x74, 0x61, 0x2c, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x64, 0x61, 0x74, 0x61, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x3a,
+ 0x20, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68,
+ 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74,
+ 0x61, 0x6d, 0x70, 0x3a, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x44, 0x61, 0x74,
+ 0x65, 0x28, 0x29, 0x2e, 0x74, 0x6f, 0x49, 0x53, 0x4f, 0x53, 0x74, 0x72,
+ 0x69, 0x6e, 0x67, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
+ 0x2f, 0x20, 0x54, 0x72, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x70, 0x61, 0x72,
+ 0x73, 0x65, 0x20, 0x61, 0x73, 0x20, 0x4a, 0x53, 0x4f, 0x4e, 0x20, 0x66,
+ 0x6f, 0x72, 0x20, 0x4e, 0x6f, 0x73, 0x74, 0x72, 0x20, 0x6d, 0x65, 0x73,
+ 0x73, 0x61, 0x67, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x61,
+ 0x72, 0x73, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x4a, 0x53, 0x4f, 0x4e, 0x2e,
+ 0x70, 0x61, 0x72, 0x73, 0x65, 0x28, 0x64, 0x61, 0x74, 0x61, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x41, 0x72, 0x72,
+ 0x61, 0x79, 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x28, 0x70,
+ 0x61, 0x72, 0x73, 0x65, 0x64, 0x29, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x5b, 0x74, 0x79, 0x70, 0x65, 0x2c, 0x20, 0x2e, 0x2e, 0x2e, 0x61, 0x72,
+ 0x67, 0x73, 0x5d, 0x20, 0x3d, 0x20, 0x70, 0x61, 0x72, 0x73, 0x65, 0x64,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0,
+ 0x9f, 0x93, 0xa8, 0x20, 0x50, 0x61, 0x72, 0x73, 0x65, 0x64, 0x20, 0x4e,
+ 0x6f, 0x73, 0x74, 0x72, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
+ 0x20, 0x5b, 0x24, 0x7b, 0x74, 0x79, 0x70, 0x65, 0x7d, 0x5d, 0x3a, 0x60,
+ 0x2c, 0x20, 0x61, 0x72, 0x67, 0x73, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
+ 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x93, 0xa8, 0x20,
+ 0x50, 0x61, 0x72, 0x73, 0x65, 0x64, 0x20, 0x4a, 0x53, 0x4f, 0x4e, 0x3a,
+ 0x60, 0x2c, 0x20, 0x70, 0x61, 0x72, 0x73, 0x65, 0x64, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63,
+ 0x68, 0x20, 0x28, 0x70, 0x61, 0x72, 0x73, 0x65, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f,
+ 0x93, 0xa8, 0x20, 0x52, 0x61, 0x77, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61,
+ 0x67, 0x65, 0x20, 0x28, 0x6e, 0x6f, 0x74, 0x20, 0x4a, 0x53, 0x4f, 0x4e,
+ 0x29, 0x3a, 0x60, 0x2c, 0x20, 0x64, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20,
+ 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x60, 0xe2, 0x9d, 0x8c, 0x20, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x20, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
+ 0x69, 0x6e, 0x67, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65,
+ 0x74, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x66, 0x72,
+ 0x6f, 0x6d, 0x20, 0x24, 0x7b, 0x75, 0x72, 0x6c, 0x7d, 0x3a, 0x60, 0x2c,
+ 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c,
+ 0x6f, 0x67, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x20, 0x77, 0x69, 0x74, 0x68,
+ 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x77, 0x73, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74,
+ 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c,
+ 0x6f, 0x73, 0x65, 0x27, 0x2c, 0x20, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
+ 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x94, 0x92, 0x20, 0x57, 0x65, 0x62,
+ 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x43, 0x4c, 0x4f, 0x53, 0x45,
+ 0x20, 0x66, 0x6f, 0x72, 0x20, 0x24, 0x7b, 0x75, 0x72, 0x6c, 0x7d, 0x3a,
+ 0x60, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x64, 0x65, 0x3a, 0x20, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x6f, 0x64, 0x65, 0x2c, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72,
+ 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x3a, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x2e, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2c, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x77, 0x61, 0x73,
+ 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x3a, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x2e, 0x77, 0x61, 0x73, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x2c, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72,
0x65, 0x61, 0x64, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x20, 0x77,
0x73, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65,
0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x75, 0x72, 0x6c, 0x3a, 0x20, 0x77, 0x73, 0x2e, 0x75, 0x72,
- 0x6c, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
- 0x3a, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x44, 0x61, 0x74, 0x65, 0x28, 0x29,
- 0x2e, 0x74, 0x6f, 0x49, 0x53, 0x4f, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
- 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x67, 0x20, 0x61, 0x64, 0x64, 0x69, 0x74,
- 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63,
- 0x6b, 0x65, 0x74, 0x20, 0x73, 0x74, 0x61, 0x74, 0x65, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
- 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x60, 0xe2, 0x9d, 0x8c,
- 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x73,
- 0x74, 0x61, 0x74, 0x65, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73,
- 0x3a, 0x60, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x61, 0x64, 0x79, 0x53,
- 0x74, 0x61, 0x74, 0x65, 0x3a, 0x20, 0x77, 0x73, 0x2e, 0x72, 0x65, 0x61,
- 0x64, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x75, 0x66,
- 0x66, 0x65, 0x72, 0x65, 0x64, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x3a,
- 0x20, 0x77, 0x73, 0x2e, 0x62, 0x75, 0x66, 0x66, 0x65, 0x72, 0x65, 0x64,
- 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x63, 0x6f, 0x6c, 0x3a, 0x20, 0x77, 0x73, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x78, 0x74, 0x65, 0x6e,
- 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x20, 0x77, 0x73, 0x2e, 0x65, 0x78,
- 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2c, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x69,
- 0x6e, 0x61, 0x72, 0x79, 0x54, 0x79, 0x70, 0x65, 0x3a, 0x20, 0x77, 0x73,
- 0x2e, 0x62, 0x69, 0x6e, 0x61, 0x72, 0x79, 0x54, 0x79, 0x70, 0x65, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65,
- 0x20, 0x73, 0x65, 0x6e, 0x64, 0x20, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64,
- 0x20, 0x74, 0x6f, 0x20, 0x6c, 0x6f, 0x67, 0x20, 0x6f, 0x75, 0x74, 0x67,
- 0x6f, 0x69, 0x6e, 0x67, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
- 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
- 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x6e, 0x64,
- 0x20, 0x3d, 0x20, 0x77, 0x73, 0x2e, 0x73, 0x65, 0x6e, 0x64, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x77, 0x73, 0x2e, 0x73, 0x65, 0x6e, 0x64, 0x20,
- 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x64,
- 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
- 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x93, 0xa4, 0x20, 0x57, 0x65, 0x62,
- 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x53, 0x45, 0x4e, 0x44, 0x20,
- 0x74, 0x6f, 0x20, 0x24, 0x7b, 0x75, 0x72, 0x6c, 0x7d, 0x3a, 0x60, 0x2c,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x64, 0x61, 0x74, 0x61, 0x3a, 0x20, 0x64, 0x61, 0x74,
- 0x61, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x64, 0x61, 0x74, 0x61, 0x4c, 0x65, 0x6e, 0x67, 0x74,
- 0x68, 0x3a, 0x20, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x6c, 0x65, 0x6e, 0x67,
- 0x74, 0x68, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x61, 0x64, 0x79, 0x53, 0x74, 0x61,
- 0x74, 0x65, 0x3a, 0x20, 0x77, 0x73, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x79,
- 0x53, 0x74, 0x61, 0x74, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73,
- 0x74, 0x61, 0x6d, 0x70, 0x3a, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x44, 0x61,
- 0x74, 0x65, 0x28, 0x29, 0x2e, 0x74, 0x6f, 0x49, 0x53, 0x4f, 0x53, 0x74,
- 0x72, 0x69, 0x6e, 0x67, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x54, 0x72, 0x79, 0x20, 0x74,
- 0x6f, 0x20, 0x70, 0x61, 0x72, 0x73, 0x65, 0x20, 0x6f, 0x75, 0x74, 0x67,
- 0x6f, 0x69, 0x6e, 0x67, 0x20, 0x4e, 0x6f, 0x73, 0x74, 0x72, 0x20, 0x6d,
- 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x70, 0x61, 0x72, 0x73, 0x65, 0x64, 0x20, 0x3d,
- 0x20, 0x4a, 0x53, 0x4f, 0x4e, 0x2e, 0x70, 0x61, 0x72, 0x73, 0x65, 0x28,
- 0x64, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x41,
- 0x72, 0x72, 0x61, 0x79, 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79,
- 0x28, 0x70, 0x61, 0x72, 0x73, 0x65, 0x64, 0x29, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x3a,
+ 0x20, 0x6e, 0x65, 0x77, 0x20, 0x44, 0x61, 0x74, 0x65, 0x28, 0x29, 0x2e,
+ 0x74, 0x6f, 0x49, 0x53, 0x4f, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28,
+ 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x67, 0x20, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x66, 0x75,
+ 0x6c, 0x6c, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x77, 0x73, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65,
+ 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x27, 0x2c, 0x20, 0x28, 0x65, 0x76, 0x65,
+ 0x6e, 0x74, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
+ 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x60, 0xe2, 0x9d, 0x8c, 0x20,
+ 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x45, 0x52,
+ 0x52, 0x4f, 0x52, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x24, 0x7b, 0x75, 0x72,
+ 0x6c, 0x7d, 0x3a, 0x60, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x79, 0x70, 0x65,
+ 0x3a, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x74, 0x79, 0x70, 0x65,
+ 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x3a, 0x20, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x2e, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x2c, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x5b, 0x74,
- 0x79, 0x70, 0x65, 0x2c, 0x20, 0x2e, 0x2e, 0x2e, 0x61, 0x72, 0x67, 0x73,
- 0x5d, 0x20, 0x3d, 0x20, 0x70, 0x61, 0x72, 0x73, 0x65, 0x64, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
- 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x93, 0xa4, 0x20, 0x4f, 0x75,
- 0x74, 0x67, 0x6f, 0x69, 0x6e, 0x67, 0x20, 0x4e, 0x6f, 0x73, 0x74, 0x72,
- 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x5b, 0x24, 0x7b,
- 0x74, 0x79, 0x70, 0x65, 0x7d, 0x5d, 0x3a, 0x60, 0x2c, 0x20, 0x61, 0x72,
- 0x67, 0x73, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
- 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x93, 0xa4, 0x20,
- 0x4f, 0x75, 0x74, 0x67, 0x6f, 0x69, 0x6e, 0x67, 0x20, 0x4a, 0x53, 0x4f,
- 0x4e, 0x3a, 0x60, 0x2c, 0x20, 0x70, 0x61, 0x72, 0x73, 0x65, 0x64, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x70, 0x61, 0x72,
- 0x73, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60,
- 0xf0, 0x9f, 0x93, 0xa4, 0x20, 0x4f, 0x75, 0x74, 0x67, 0x6f, 0x69, 0x6e,
- 0x67, 0x20, 0x72, 0x61, 0x77, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
- 0x65, 0x20, 0x28, 0x6e, 0x6f, 0x74, 0x20, 0x4a, 0x53, 0x4f, 0x4e, 0x29,
- 0x3a, 0x60, 0x2c, 0x20, 0x64, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e,
+ 0x72, 0x65, 0x61, 0x64, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x20,
+ 0x77, 0x73, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x79, 0x53, 0x74, 0x61, 0x74,
+ 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x75, 0x72, 0x6c, 0x3a, 0x20, 0x77, 0x73, 0x2e, 0x75,
+ 0x72, 0x6c, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
+ 0x70, 0x3a, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x44, 0x61, 0x74, 0x65, 0x28,
+ 0x29, 0x2e, 0x74, 0x6f, 0x49, 0x53, 0x4f, 0x53, 0x74, 0x72, 0x69, 0x6e,
+ 0x67, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x67, 0x20, 0x61, 0x64, 0x64, 0x69,
+ 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f,
+ 0x63, 0x6b, 0x65, 0x74, 0x20, 0x73, 0x74, 0x61, 0x74, 0x65, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f,
+ 0x6c, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x60, 0xe2, 0x9d,
+ 0x8c, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20,
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c,
+ 0x73, 0x3a, 0x60, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x61, 0x64, 0x79,
+ 0x53, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x20, 0x77, 0x73, 0x2e, 0x72, 0x65,
+ 0x61, 0x64, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x2c, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x75,
+ 0x66, 0x66, 0x65, 0x72, 0x65, 0x64, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74,
+ 0x3a, 0x20, 0x77, 0x73, 0x2e, 0x62, 0x75, 0x66, 0x66, 0x65, 0x72, 0x65,
+ 0x64, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x2c, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x72, 0x6f,
+ 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x3a, 0x20, 0x77, 0x73, 0x2e, 0x70, 0x72,
+ 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x78, 0x74, 0x65,
+ 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x20, 0x77, 0x73, 0x2e, 0x65,
+ 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2c, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62,
+ 0x69, 0x6e, 0x61, 0x72, 0x79, 0x54, 0x79, 0x70, 0x65, 0x3a, 0x20, 0x77,
+ 0x73, 0x2e, 0x62, 0x69, 0x6e, 0x61, 0x72, 0x79, 0x54, 0x79, 0x70, 0x65,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64,
+ 0x65, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x20, 0x6d, 0x65, 0x74, 0x68, 0x6f,
+ 0x64, 0x20, 0x74, 0x6f, 0x20, 0x6c, 0x6f, 0x67, 0x20, 0x6f, 0x75, 0x74,
+ 0x67, 0x6f, 0x69, 0x6e, 0x67, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
+ 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
0x20, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x53, 0x65, 0x6e,
- 0x64, 0x2e, 0x63, 0x61, 0x6c, 0x6c, 0x28, 0x74, 0x68, 0x69, 0x73, 0x2c,
- 0x20, 0x64, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xe2, 0x9c, 0x85,
- 0x20, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x6c, 0x69, 0x73, 0x74, 0x65,
- 0x6e, 0x65, 0x72, 0x73, 0x20, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x65,
- 0x64, 0x20, 0x74, 0x6f, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b,
- 0x65, 0x74, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x24, 0x7b, 0x75, 0x72, 0x6c,
- 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x43,
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x6e, 0x6f, 0x73, 0x74,
- 0x72, 0x2d, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x20, 0x53, 0x69, 0x6d, 0x70,
- 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x0a, 0x61, 0x73, 0x79, 0x6e, 0x63,
- 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x75,
- 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x54, 0x6f, 0x43, 0x6f, 0x6e,
- 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b,
+ 0x64, 0x20, 0x3d, 0x20, 0x77, 0x73, 0x2e, 0x73, 0x65, 0x6e, 0x64, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x77, 0x73, 0x2e, 0x73, 0x65, 0x6e, 0x64,
+ 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28,
+ 0x64, 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
+ 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x93, 0xa4, 0x20, 0x57, 0x65,
+ 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x53, 0x45, 0x4e, 0x44,
+ 0x20, 0x74, 0x6f, 0x20, 0x24, 0x7b, 0x75, 0x72, 0x6c, 0x7d, 0x3a, 0x60,
+ 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x64, 0x61, 0x74, 0x61, 0x3a, 0x20, 0x64, 0x61,
+ 0x74, 0x61, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x64, 0x61, 0x74, 0x61, 0x4c, 0x65, 0x6e, 0x67,
+ 0x74, 0x68, 0x3a, 0x20, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x6c, 0x65, 0x6e,
+ 0x67, 0x74, 0x68, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x61, 0x64, 0x79, 0x53, 0x74,
+ 0x61, 0x74, 0x65, 0x3a, 0x20, 0x77, 0x73, 0x2e, 0x72, 0x65, 0x61, 0x64,
+ 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x69, 0x6d, 0x65,
+ 0x73, 0x74, 0x61, 0x6d, 0x70, 0x3a, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x44,
+ 0x61, 0x74, 0x65, 0x28, 0x29, 0x2e, 0x74, 0x6f, 0x49, 0x53, 0x4f, 0x53,
+ 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x54, 0x72, 0x79, 0x20,
+ 0x74, 0x6f, 0x20, 0x70, 0x61, 0x72, 0x73, 0x65, 0x20, 0x6f, 0x75, 0x74,
+ 0x67, 0x6f, 0x69, 0x6e, 0x67, 0x20, 0x4e, 0x6f, 0x73, 0x74, 0x72, 0x20,
+ 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x61, 0x72, 0x73, 0x65, 0x64, 0x20,
+ 0x3d, 0x20, 0x4a, 0x53, 0x4f, 0x4e, 0x2e, 0x70, 0x61, 0x72, 0x73, 0x65,
+ 0x28, 0x64, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x41, 0x72, 0x72, 0x61, 0x79, 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61,
+ 0x79, 0x28, 0x70, 0x61, 0x72, 0x73, 0x65, 0x64, 0x29, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x5b,
+ 0x74, 0x79, 0x70, 0x65, 0x2c, 0x20, 0x2e, 0x2e, 0x2e, 0x61, 0x72, 0x67,
+ 0x73, 0x5d, 0x20, 0x3d, 0x20, 0x70, 0x61, 0x72, 0x73, 0x65, 0x64, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
+ 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x93, 0xa4, 0x20, 0x4f,
+ 0x75, 0x74, 0x67, 0x6f, 0x69, 0x6e, 0x67, 0x20, 0x4e, 0x6f, 0x73, 0x74,
+ 0x72, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x5b, 0x24,
+ 0x7b, 0x74, 0x79, 0x70, 0x65, 0x7d, 0x5d, 0x3a, 0x60, 0x2c, 0x20, 0x61,
+ 0x72, 0x67, 0x73, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f,
+ 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x93, 0xa4,
+ 0x20, 0x4f, 0x75, 0x74, 0x67, 0x6f, 0x69, 0x6e, 0x67, 0x20, 0x4a, 0x53,
+ 0x4f, 0x4e, 0x3a, 0x60, 0x2c, 0x20, 0x70, 0x61, 0x72, 0x73, 0x65, 0x64,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x70, 0x61,
+ 0x72, 0x73, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
+ 0x60, 0xf0, 0x9f, 0x93, 0xa4, 0x20, 0x4f, 0x75, 0x74, 0x67, 0x6f, 0x69,
+ 0x6e, 0x67, 0x20, 0x72, 0x61, 0x77, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61,
+ 0x67, 0x65, 0x20, 0x28, 0x6e, 0x6f, 0x74, 0x20, 0x4a, 0x53, 0x4f, 0x4e,
+ 0x29, 0x3a, 0x60, 0x2c, 0x20, 0x64, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72,
+ 0x6e, 0x20, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x53, 0x65,
+ 0x6e, 0x64, 0x2e, 0x63, 0x61, 0x6c, 0x6c, 0x28, 0x74, 0x68, 0x69, 0x73,
+ 0x2c, 0x20, 0x64, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xe2, 0x9c,
+ 0x85, 0x20, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x6c, 0x69, 0x73, 0x74,
+ 0x65, 0x6e, 0x65, 0x72, 0x73, 0x20, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68,
+ 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63,
+ 0x6b, 0x65, 0x74, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x24, 0x7b, 0x75, 0x72,
+ 0x6c, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20,
+ 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
+ 0x6f, 0x6e, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x6e, 0x6f, 0x73,
+ 0x74, 0x72, 0x2d, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x20, 0x53, 0x69, 0x6d,
+ 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x0a, 0x61, 0x73, 0x79, 0x6e,
+ 0x63, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73,
+ 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x54, 0x6f, 0x43, 0x6f,
+ 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x28,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x3d,
+ 0x3d, 0x3d, 0x20, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x42, 0x45,
+ 0x20, 0x54, 0x4f, 0x20, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x55, 0x52,
+ 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x20, 0x3d, 0x3d, 0x3d, 0x27, 0x29, 0x3b,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x3d, 0x3d,
- 0x3d, 0x20, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x42, 0x45, 0x20,
- 0x54, 0x4f, 0x20, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x55, 0x52, 0x41,
- 0x54, 0x49, 0x4f, 0x4e, 0x20, 0x3d, 0x3d, 0x3d, 0x27, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x61, 0x6c,
- 0x6c, 0x20, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x3a, 0x27, 0x2c, 0x20, 0x6e,
- 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x29, 0x2e, 0x73,
- 0x74, 0x61, 0x63, 0x6b, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x49, 0x66, 0x20, 0x70, 0x6f,
- 0x6f, 0x6c, 0x20, 0x61, 0x6c, 0x72, 0x65, 0x61, 0x64, 0x79, 0x20, 0x65,
- 0x78, 0x69, 0x73, 0x74, 0x73, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x73, 0x75,
- 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x64, 0x2c, 0x20, 0x77, 0x65,
- 0x27, 0x72, 0x65, 0x20, 0x64, 0x6f, 0x6e, 0x65, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x6c,
- 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x26, 0x26, 0x20, 0x69, 0x73,
- 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x64, 0x29, 0x20,
+ 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x61,
+ 0x6c, 0x6c, 0x20, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x3a, 0x27, 0x2c, 0x20,
+ 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x29, 0x2e,
+ 0x73, 0x74, 0x61, 0x63, 0x6b, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x49, 0x66, 0x20, 0x70,
+ 0x6f, 0x6f, 0x6c, 0x20, 0x61, 0x6c, 0x72, 0x65, 0x61, 0x64, 0x79, 0x20,
+ 0x65, 0x78, 0x69, 0x73, 0x74, 0x73, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x73,
+ 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x64, 0x2c, 0x20, 0x77,
+ 0x65, 0x27, 0x72, 0x65, 0x20, 0x64, 0x6f, 0x6e, 0x65, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x26, 0x26, 0x20, 0x69,
+ 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x64, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
+ 0x6f, 0x67, 0x28, 0x27, 0xe2, 0x9c, 0x85, 0x20, 0x41, 0x6c, 0x72, 0x65,
+ 0x61, 0x64, 0x79, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62,
+ 0x65, 0x64, 0x2c, 0x20, 0x72, 0x65, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20,
+ 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x70, 0x6f, 0x6f,
+ 0x6c, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20,
+ 0x74, 0x72, 0x75, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2f, 0x2f, 0x20, 0x50, 0x72, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20,
+ 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x20, 0x73,
+ 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20,
+ 0x61, 0x74, 0x74, 0x65, 0x6d, 0x70, 0x74, 0x73, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x69, 0x73, 0x53,
+ 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x69, 0x6e, 0x67, 0x29, 0x20,
0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
- 0x67, 0x28, 0x27, 0xe2, 0x9c, 0x85, 0x20, 0x41, 0x6c, 0x72, 0x65, 0x61,
- 0x64, 0x79, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
- 0x64, 0x2c, 0x20, 0x72, 0x65, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x65,
- 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x70, 0x6f, 0x6f, 0x6c,
- 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x74,
- 0x72, 0x75, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x50, 0x72, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x63,
- 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x20, 0x73, 0x75,
+ 0x67, 0x28, 0x27, 0xe2, 0x9a, 0xa0, 0xef, 0xb8, 0x8f, 0x20, 0x53, 0x75,
0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x61,
- 0x74, 0x74, 0x65, 0x6d, 0x70, 0x74, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x69, 0x73, 0x53, 0x75,
- 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x69, 0x6e, 0x67, 0x29, 0x20, 0x7b,
+ 0x6c, 0x72, 0x65, 0x61, 0x64, 0x79, 0x20, 0x69, 0x6e, 0x20, 0x70, 0x72,
+ 0x6f, 0x67, 0x72, 0x65, 0x73, 0x73, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
+ 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x73, 0x53, 0x75, 0x62,
+ 0x73, 0x63, 0x72, 0x69, 0x62, 0x69, 0x6e, 0x67, 0x20, 0x3d, 0x20, 0x74,
+ 0x72, 0x75, 0x65, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x75, 0x72, 0x6c, 0x20,
+ 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x43, 0x6f, 0x6e, 0x6e, 0x65,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x72, 0x6c, 0x2e, 0x76, 0x61, 0x6c,
+ 0x75, 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21,
+ 0x75, 0x72, 0x6c, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f,
+ 0x6c, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x4e, 0x6f,
+ 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x55, 0x52, 0x4c, 0x20, 0x63,
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x64, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x69,
+ 0x6e, 0x67, 0x20, 0x3d, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f,
+ 0x94, 0x8c, 0x20, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6e,
+ 0x67, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x3a, 0x20,
+ 0x24, 0x7b, 0x75, 0x72, 0x6c, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72,
+ 0x65, 0x61, 0x74, 0x65, 0x20, 0x70, 0x6f, 0x6f, 0x6c, 0x20, 0x4f, 0x4e,
+ 0x4c, 0x59, 0x20, 0x69, 0x66, 0x20, 0x69, 0x74, 0x20, 0x64, 0x6f, 0x65,
+ 0x73, 0x6e, 0x27, 0x74, 0x20, 0x65, 0x78, 0x69, 0x73, 0x74, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21,
+ 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x29, 0x20, 0x7b,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
- 0x28, 0x27, 0xe2, 0x9a, 0xa0, 0xef, 0xb8, 0x8f, 0x20, 0x53, 0x75, 0x62,
- 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x61, 0x6c,
- 0x72, 0x65, 0x61, 0x64, 0x79, 0x20, 0x69, 0x6e, 0x20, 0x70, 0x72, 0x6f,
- 0x67, 0x72, 0x65, 0x73, 0x73, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74,
- 0x75, 0x72, 0x6e, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x73, 0x53, 0x75, 0x62, 0x73,
- 0x63, 0x72, 0x69, 0x62, 0x69, 0x6e, 0x67, 0x20, 0x3d, 0x20, 0x74, 0x72,
- 0x75, 0x65, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x75, 0x72, 0x6c, 0x20, 0x3d,
- 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x72, 0x6c, 0x2e, 0x76, 0x61, 0x6c, 0x75,
- 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x75,
- 0x72, 0x6c, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x28, 0x27, 0xe2, 0x9c, 0xa8, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74, 0x69,
+ 0x6e, 0x67, 0x20, 0x4e, 0x45, 0x57, 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c,
+ 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61, 0x64,
+ 0x6d, 0x69, 0x6e, 0x20, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x73, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50,
+ 0x6f, 0x6f, 0x6c, 0x20, 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x77, 0x69,
+ 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x4e, 0x6f, 0x73, 0x74, 0x72, 0x54, 0x6f,
+ 0x6f, 0x6c, 0x73, 0x2e, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f,
+ 0x6f, 0x6c, 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x41, 0x74,
+ 0x74, 0x61, 0x63, 0x68, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b,
+ 0x65, 0x74, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e,
+ 0x67, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6e, 0x65, 0x77,
+ 0x20, 0x70, 0x6f, 0x6f, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68,
+ 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x4d, 0x6f, 0x6e,
+ 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x72, 0x65, 0x6c, 0x61,
+ 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2c, 0x20, 0x75, 0x72, 0x6c, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65,
+ 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
- 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x4e, 0x6f, 0x20,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x55, 0x52, 0x4c, 0x20, 0x63, 0x6f,
- 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x64, 0x27, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x69, 0x6e,
- 0x67, 0x20, 0x3d, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72,
- 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x94,
- 0x8c, 0x20, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6e, 0x67,
- 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x24,
- 0x7b, 0x75, 0x72, 0x6c, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65,
- 0x61, 0x74, 0x65, 0x20, 0x70, 0x6f, 0x6f, 0x6c, 0x20, 0x4f, 0x4e, 0x4c,
- 0x59, 0x20, 0x69, 0x66, 0x20, 0x69, 0x74, 0x20, 0x64, 0x6f, 0x65, 0x73,
- 0x6e, 0x27, 0x74, 0x20, 0x65, 0x78, 0x69, 0x73, 0x74, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
- 0x27, 0xe2, 0x9c, 0xa8, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6e,
- 0x67, 0x20, 0x4e, 0x45, 0x57, 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65,
- 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61, 0x64, 0x6d,
- 0x69, 0x6e, 0x20, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x73, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f,
- 0x6f, 0x6c, 0x20, 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x77, 0x69, 0x6e,
- 0x64, 0x6f, 0x77, 0x2e, 0x4e, 0x6f, 0x73, 0x74, 0x72, 0x54, 0x6f, 0x6f,
- 0x6c, 0x73, 0x2e, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f,
- 0x6c, 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x41, 0x74, 0x74,
- 0x61, 0x63, 0x68, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65,
- 0x74, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67,
- 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6e, 0x65, 0x77, 0x20,
- 0x70, 0x6f, 0x6f, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x57,
- 0x65, 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x4d, 0x6f, 0x6e, 0x69,
- 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x72, 0x65, 0x6c, 0x61, 0x79,
- 0x50, 0x6f, 0x6f, 0x6c, 0x2c, 0x20, 0x75, 0x72, 0x6c, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c,
- 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0xe2, 0x99, 0xbb, 0xef, 0xb8,
+ 0x8f, 0x20, 0x52, 0x65, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x78,
+ 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c,
+ 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
+ 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x20, 0x3d, 0x20, 0x67, 0x65, 0x6e,
+ 0x65, 0x72, 0x61, 0x74, 0x65, 0x53, 0x75, 0x62, 0x49, 0x64, 0x28, 0x29,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60,
+ 0xf0, 0x9f, 0x93, 0x9d, 0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74,
+ 0x65, 0x64, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
+ 0x69, 0x6f, 0x6e, 0x20, 0x49, 0x44, 0x3a, 0x20, 0x24, 0x7b, 0x73, 0x75,
+ 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64,
+ 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
+ 0x28, 0x60, 0xf0, 0x9f, 0x91, 0xa4, 0x20, 0x55, 0x73, 0x65, 0x72, 0x20,
+ 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3a, 0x20, 0x24, 0x7b, 0x75, 0x73,
+ 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x7d, 0x60, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f,
+ 0x8e, 0xaf, 0x20, 0x41, 0x62, 0x6f, 0x75, 0x74, 0x20, 0x74, 0x6f, 0x20,
+ 0x63, 0x61, 0x6c, 0x6c, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f,
+ 0x6f, 0x6c, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
+ 0x4d, 0x61, 0x6e, 0x79, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x55, 0x52,
+ 0x4c, 0x3a, 0x20, 0x24, 0x7b, 0x75, 0x72, 0x6c, 0x7d, 0x60, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f,
+ 0x93, 0x8a, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c,
+ 0x2e, 0x5f, 0x63, 0x6f, 0x6e, 0x6e, 0x20, 0x62, 0x65, 0x66, 0x6f, 0x72,
+ 0x65, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d,
+ 0x61, 0x6e, 0x79, 0x3a, 0x60, 0x2c, 0x20, 0x4f, 0x62, 0x6a, 0x65, 0x63,
+ 0x74, 0x2e, 0x6b, 0x65, 0x79, 0x73, 0x28, 0x72, 0x65, 0x6c, 0x61, 0x79,
+ 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x5f, 0x63, 0x6f, 0x6e, 0x6e, 0x20, 0x7c,
+ 0x7c, 0x20, 0x7b, 0x7d, 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2f, 0x2f, 0x20, 0x4d, 0x61, 0x72, 0x6b, 0x20, 0x61, 0x73, 0x20,
+ 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x64, 0x20, 0x42,
+ 0x45, 0x46, 0x4f, 0x52, 0x45, 0x20, 0x63, 0x61, 0x6c, 0x6c, 0x69, 0x6e,
+ 0x67, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d,
+ 0x61, 0x6e, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x70, 0x72, 0x65, 0x76, 0x65,
+ 0x6e, 0x74, 0x20, 0x72, 0x61, 0x63, 0x65, 0x20, 0x63, 0x6f, 0x6e, 0x64,
+ 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x69, 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
+ 0x62, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x74, 0x72, 0x75, 0x65, 0x3b, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x20, 0x74, 0x6f,
+ 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x32, 0x33, 0x34, 0x35, 0x37, 0x20,
+ 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x28, 0x61, 0x64, 0x6d, 0x69,
+ 0x6e, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x73, 0x29, 0x2c, 0x20, 0x6b, 0x69, 0x6e, 0x64,
+ 0x20, 0x34, 0x20, 0x28, 0x4e, 0x49, 0x50, 0x2d, 0x30, 0x34, 0x20, 0x44,
+ 0x4d, 0x73, 0x29, 0x2c, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30,
+ 0x35, 0x39, 0x20, 0x28, 0x4e, 0x49, 0x50, 0x2d, 0x31, 0x37, 0x20, 0x47,
+ 0x69, 0x66, 0x74, 0x57, 0x72, 0x61, 0x70, 0x29, 0x2c, 0x20, 0x6b, 0x69,
+ 0x6e, 0x64, 0x20, 0x32, 0x34, 0x35, 0x36, 0x37, 0x20, 0x28, 0x65, 0x70,
+ 0x68, 0x65, 0x6d, 0x65, 0x72, 0x61, 0x6c, 0x20, 0x6d, 0x6f, 0x6e, 0x69,
+ 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x73, 0x29, 0x2c, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x72, 0x65, 0x6c, 0x61,
+ 0x79, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x28, 0x6b, 0x69,
+ 0x6e, 0x64, 0x73, 0x20, 0x30, 0x2c, 0x20, 0x31, 0x30, 0x30, 0x35, 0x30,
+ 0x2c, 0x20, 0x31, 0x30, 0x30, 0x30, 0x32, 0x29, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
- 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0xe2, 0x99, 0xbb, 0xef, 0xb8, 0x8f,
- 0x20, 0x52, 0x65, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x78, 0x69,
- 0x73, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65,
- 0x50, 0x6f, 0x6f, 0x6c, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x20, 0x3d, 0x20, 0x67, 0x65, 0x6e, 0x65,
- 0x72, 0x61, 0x74, 0x65, 0x53, 0x75, 0x62, 0x49, 0x64, 0x28, 0x29, 0x3b,
- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0,
- 0x9f, 0x93, 0x9d, 0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65,
- 0x64, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x49, 0x44, 0x3a, 0x20, 0x24, 0x7b, 0x73, 0x75, 0x62,
- 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x7d,
- 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
- 0x60, 0xf0, 0x9f, 0x91, 0xa4, 0x20, 0x55, 0x73, 0x65, 0x72, 0x20, 0x70,
- 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3a, 0x20, 0x24, 0x7b, 0x75, 0x73, 0x65,
- 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x7d, 0x60, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x8e,
- 0xaf, 0x20, 0x41, 0x62, 0x6f, 0x75, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x63,
- 0x61, 0x6c, 0x6c, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f,
- 0x6c, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d,
- 0x61, 0x6e, 0x79, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x55, 0x52, 0x4c,
- 0x3a, 0x20, 0x24, 0x7b, 0x75, 0x72, 0x6c, 0x7d, 0x60, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x93,
- 0x8a, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2e,
- 0x5f, 0x63, 0x6f, 0x6e, 0x6e, 0x20, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65,
- 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61,
- 0x6e, 0x79, 0x3a, 0x60, 0x2c, 0x20, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74,
- 0x2e, 0x6b, 0x65, 0x79, 0x73, 0x28, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50,
- 0x6f, 0x6f, 0x6c, 0x2e, 0x5f, 0x63, 0x6f, 0x6e, 0x6e, 0x20, 0x7c, 0x7c,
- 0x20, 0x7b, 0x7d, 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x4d, 0x61, 0x72, 0x6b, 0x20, 0x61, 0x73, 0x20, 0x73,
- 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x64, 0x20, 0x42, 0x45,
- 0x46, 0x4f, 0x52, 0x45, 0x20, 0x63, 0x61, 0x6c, 0x6c, 0x69, 0x6e, 0x67,
- 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61,
- 0x6e, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x70, 0x72, 0x65, 0x76, 0x65, 0x6e,
- 0x74, 0x20, 0x72, 0x61, 0x63, 0x65, 0x20, 0x63, 0x6f, 0x6e, 0x64, 0x69,
- 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x69, 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62,
- 0x65, 0x64, 0x20, 0x3d, 0x20, 0x74, 0x72, 0x75, 0x65, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53,
- 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x20, 0x74, 0x6f, 0x20,
- 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x32, 0x33, 0x34, 0x35, 0x37, 0x20, 0x65,
- 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x28, 0x61, 0x64, 0x6d, 0x69, 0x6e,
- 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x73, 0x29, 0x2c, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x20,
- 0x34, 0x20, 0x28, 0x4e, 0x49, 0x50, 0x2d, 0x30, 0x34, 0x20, 0x44, 0x4d,
- 0x73, 0x29, 0x2c, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x35,
- 0x39, 0x20, 0x28, 0x4e, 0x49, 0x50, 0x2d, 0x31, 0x37, 0x20, 0x47, 0x69,
- 0x66, 0x74, 0x57, 0x72, 0x61, 0x70, 0x29, 0x2c, 0x20, 0x6b, 0x69, 0x6e,
- 0x64, 0x20, 0x32, 0x34, 0x35, 0x36, 0x37, 0x20, 0x28, 0x65, 0x70, 0x68,
- 0x65, 0x6d, 0x65, 0x72, 0x61, 0x6c, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74,
- 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73,
- 0x29, 0x2c, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79,
- 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x28, 0x6b, 0x69, 0x6e,
- 0x64, 0x73, 0x20, 0x30, 0x2c, 0x20, 0x31, 0x30, 0x30, 0x35, 0x30, 0x2c,
- 0x20, 0x31, 0x30, 0x30, 0x30, 0x32, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
- 0x6c, 0x6f, 0x67, 0x28, 0x27, 0xf0, 0x9f, 0x94, 0x94, 0x20, 0x43, 0x61,
- 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50,
- 0x6f, 0x6f, 0x6c, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62,
- 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x61,
- 0x6c, 0x6c, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x2e, 0x2e,
- 0x2e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63,
- 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x72, 0x65,
- 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x73, 0x75, 0x62, 0x73,
- 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x28, 0x5b, 0x75,
- 0x72, 0x6c, 0x5d, 0x2c, 0x20, 0x5b, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x69, 0x6e, 0x63,
- 0x65, 0x3a, 0x20, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f,
- 0x72, 0x28, 0x44, 0x61, 0x74, 0x65, 0x2e, 0x6e, 0x6f, 0x77, 0x28, 0x29,
- 0x20, 0x2f, 0x20, 0x31, 0x30, 0x30, 0x30, 0x29, 0x20, 0x2d, 0x20, 0x35,
- 0x2c, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x6f, 0x6b, 0x20, 0x62,
- 0x61, 0x63, 0x6b, 0x20, 0x35, 0x20, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64,
- 0x73, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x76, 0x6f, 0x69, 0x64, 0x20, 0x72,
- 0x61, 0x63, 0x65, 0x20, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f,
- 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x3a, 0x20, 0x5b, 0x32, 0x33,
- 0x34, 0x35, 0x37, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72,
- 0x73, 0x3a, 0x20, 0x5b, 0x67, 0x65, 0x74, 0x52, 0x65, 0x6c, 0x61, 0x79,
- 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x28, 0x29, 0x5d, 0x2c, 0x20, 0x2f,
- 0x2f, 0x20, 0x4f, 0x6e, 0x6c, 0x79, 0x20, 0x6c, 0x69, 0x73, 0x74, 0x65,
- 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x74, 0x68, 0x65, 0x20,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0xf0, 0x9f, 0x94, 0x94, 0x20, 0x43,
+ 0x61, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79,
+ 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
+ 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20,
+ 0x61, 0x6c, 0x6c, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x2e,
+ 0x2e, 0x2e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73, 0x75, 0x62, 0x73,
+ 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x72,
+ 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x73, 0x75, 0x62,
+ 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x79, 0x28, 0x5b,
+ 0x75, 0x72, 0x6c, 0x5d, 0x2c, 0x20, 0x5b, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x69, 0x6e,
+ 0x63, 0x65, 0x3a, 0x20, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f,
+ 0x6f, 0x72, 0x28, 0x44, 0x61, 0x74, 0x65, 0x2e, 0x6e, 0x6f, 0x77, 0x28,
+ 0x29, 0x20, 0x2f, 0x20, 0x31, 0x30, 0x30, 0x30, 0x29, 0x20, 0x2d, 0x20,
+ 0x35, 0x2c, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x6f, 0x6b, 0x20,
+ 0x62, 0x61, 0x63, 0x6b, 0x20, 0x35, 0x20, 0x73, 0x65, 0x63, 0x6f, 0x6e,
+ 0x64, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x76, 0x6f, 0x69, 0x64, 0x20,
+ 0x72, 0x61, 0x63, 0x65, 0x20, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69,
+ 0x6f, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x3a, 0x20, 0x5b, 0x32,
+ 0x33, 0x34, 0x35, 0x37, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f,
+ 0x72, 0x73, 0x3a, 0x20, 0x5b, 0x67, 0x65, 0x74, 0x52, 0x65, 0x6c, 0x61,
+ 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x28, 0x29, 0x5d, 0x2c, 0x20,
+ 0x2f, 0x2f, 0x20, 0x4f, 0x6e, 0x6c, 0x79, 0x20, 0x6c, 0x69, 0x73, 0x74,
+ 0x65, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x74, 0x68, 0x65,
+ 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x23, 0x70, 0x22, 0x3a,
+ 0x20, 0x5b, 0x75, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x5d, 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x4f, 0x6e, 0x6c, 0x79, 0x20, 0x72,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x20, 0x64, 0x69, 0x72,
+ 0x65, 0x63, 0x74, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x69,
+ 0x73, 0x20, 0x75, 0x73, 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x69, 0x6d, 0x69, 0x74,
+ 0x3a, 0x20, 0x35, 0x30, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x3a,
+ 0x20, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f, 0x72, 0x28,
+ 0x44, 0x61, 0x74, 0x65, 0x2e, 0x6e, 0x6f, 0x77, 0x28, 0x29, 0x20, 0x2f,
+ 0x20, 0x31, 0x30, 0x30, 0x30, 0x29, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x69, 0x6e, 0x64,
+ 0x73, 0x3a, 0x20, 0x5b, 0x34, 0x5d, 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x4e,
+ 0x49, 0x50, 0x2d, 0x30, 0x34, 0x20, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74,
+ 0x20, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x75,
+ 0x74, 0x68, 0x6f, 0x72, 0x73, 0x3a, 0x20, 0x5b, 0x67, 0x65, 0x74, 0x52,
+ 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x28, 0x29,
+ 0x5d, 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x4f, 0x6e, 0x6c, 0x79, 0x20, 0x6c,
+ 0x69, 0x73, 0x74, 0x65, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x44, 0x4d, 0x73,
+ 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x22, 0x23, 0x70, 0x22, 0x3a, 0x20, 0x5b, 0x75,
+ 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x5d, 0x2c, 0x20,
+ 0x2f, 0x2f, 0x20, 0x4f, 0x6e, 0x6c, 0x79, 0x20, 0x44, 0x4d, 0x73, 0x20,
+ 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20,
+ 0x74, 0x68, 0x69, 0x73, 0x20, 0x75, 0x73, 0x65, 0x72, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x69,
+ 0x6d, 0x69, 0x74, 0x3a, 0x20, 0x35, 0x30, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x69, 0x6e,
+ 0x63, 0x65, 0x3a, 0x20, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f,
+ 0x6f, 0x72, 0x28, 0x44, 0x61, 0x74, 0x65, 0x2e, 0x6e, 0x6f, 0x77, 0x28,
+ 0x29, 0x20, 0x2f, 0x20, 0x31, 0x30, 0x30, 0x30, 0x29, 0x20, 0x2d, 0x20,
+ 0x28, 0x32, 0x20, 0x2a, 0x20, 0x32, 0x34, 0x20, 0x2a, 0x20, 0x36, 0x30,
+ 0x20, 0x2a, 0x20, 0x36, 0x30, 0x29, 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x4c,
+ 0x6f, 0x6f, 0x6b, 0x20, 0x62, 0x61, 0x63, 0x6b, 0x20, 0x32, 0x20, 0x64,
+ 0x61, 0x79, 0x73, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x4e, 0x49, 0x50, 0x2d,
+ 0x35, 0x39, 0x20, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x69, 0x7a, 0x65,
+ 0x64, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x73,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x3a, 0x20, 0x5b, 0x31, 0x30, 0x35,
+ 0x39, 0x5d, 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x4e, 0x49, 0x50, 0x2d, 0x31,
+ 0x37, 0x20, 0x47, 0x69, 0x66, 0x74, 0x57, 0x72, 0x61, 0x70, 0x20, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x23, 0x70, 0x22, 0x3a, 0x20,
0x5b, 0x75, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x5d,
- 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x4f, 0x6e, 0x6c, 0x79, 0x20, 0x72, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x20, 0x64, 0x69, 0x72, 0x65,
- 0x63, 0x74, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x69, 0x73,
- 0x20, 0x75, 0x73, 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a,
- 0x20, 0x35, 0x30, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x3a, 0x20,
- 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f, 0x72, 0x28, 0x44,
- 0x61, 0x74, 0x65, 0x2e, 0x6e, 0x6f, 0x77, 0x28, 0x29, 0x20, 0x2f, 0x20,
- 0x31, 0x30, 0x30, 0x30, 0x29, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x4f, 0x6e, 0x6c, 0x79, 0x20, 0x47, 0x69,
+ 0x66, 0x74, 0x57, 0x72, 0x61, 0x70, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x73, 0x20, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x20,
+ 0x74, 0x6f, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x75, 0x73, 0x65, 0x72,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x20, 0x35, 0x30, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x2c, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x73, 0x69, 0x6e, 0x63, 0x65, 0x3a, 0x20, 0x4d, 0x61, 0x74, 0x68, 0x2e,
+ 0x66, 0x6c, 0x6f, 0x6f, 0x72, 0x28, 0x44, 0x61, 0x74, 0x65, 0x2e, 0x6e,
+ 0x6f, 0x77, 0x28, 0x29, 0x20, 0x2f, 0x20, 0x31, 0x30, 0x30, 0x30, 0x29,
+ 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x61, 0x72, 0x74, 0x20, 0x66,
+ 0x72, 0x6f, 0x6d, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x20,
+ 0x74, 0x69, 0x6d, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x3a, 0x20,
+ 0x5b, 0x32, 0x34, 0x35, 0x36, 0x37, 0x5d, 0x2c, 0x20, 0x2f, 0x2f, 0x20,
+ 0x52, 0x65, 0x61, 0x6c, 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x65, 0x70,
+ 0x68, 0x65, 0x6d, 0x65, 0x72, 0x61, 0x6c, 0x20, 0x6d, 0x6f, 0x6e, 0x69,
+ 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x73, 0x3a, 0x20, 0x5b,
+ 0x67, 0x65, 0x74, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b,
+ 0x65, 0x79, 0x28, 0x29, 0x5d, 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x4f, 0x6e,
+ 0x6c, 0x79, 0x20, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x20, 0x74, 0x6f,
+ 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20,
+ 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20,
+ 0x74, 0x68, 0x65, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x23,
+ 0x64, 0x22, 0x3a, 0x20, 0x69, 0x73, 0x4c, 0x6f, 0x67, 0x67, 0x65, 0x64,
+ 0x49, 0x6e, 0x20, 0x3f, 0x20, 0x5b, 0x22, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x5f, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x22, 0x2c, 0x20, 0x22, 0x74, 0x69,
+ 0x6d, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73, 0x22, 0x2c, 0x20, 0x22,
+ 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x22,
+ 0x2c, 0x20, 0x22, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x22,
+ 0x2c, 0x20, 0x22, 0x63, 0x70, 0x75, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69,
+ 0x63, 0x73, 0x22, 0x5d, 0x20, 0x3a, 0x20, 0x5b, 0x22, 0x65, 0x76, 0x65,
+ 0x6e, 0x74, 0x5f, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x22, 0x2c, 0x20, 0x22,
+ 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73, 0x22, 0x2c,
+ 0x20, 0x22, 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x73, 0x22, 0x2c, 0x20, 0x22, 0x63, 0x70, 0x75, 0x5f, 0x6d, 0x65, 0x74,
+ 0x72, 0x69, 0x63, 0x73, 0x22, 0x5d, 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x49,
+ 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63,
+ 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x65, 0x74, 0x61,
+ 0x69, 0x6c, 0x73, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x77, 0x68, 0x65,
+ 0x6e, 0x20, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61,
+ 0x74, 0x65, 0x64, 0x2c, 0x20, 0x63, 0x70, 0x75, 0x5f, 0x6d, 0x65, 0x74,
+ 0x72, 0x69, 0x63, 0x73, 0x20, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62,
+ 0x6c, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x6c, 0x6c, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x69,
+ 0x6d, 0x69, 0x74, 0x3a, 0x20, 0x35, 0x30, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x69, 0x6e,
+ 0x63, 0x65, 0x3a, 0x20, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f,
+ 0x6f, 0x72, 0x28, 0x44, 0x61, 0x74, 0x65, 0x2e, 0x6e, 0x6f, 0x77, 0x28,
+ 0x29, 0x20, 0x2f, 0x20, 0x31, 0x30, 0x30, 0x30, 0x29, 0x20, 0x2d, 0x20,
+ 0x28, 0x32, 0x34, 0x20, 0x2a, 0x20, 0x36, 0x30, 0x20, 0x2a, 0x20, 0x36,
+ 0x30, 0x29, 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x6f, 0x6b, 0x20,
+ 0x62, 0x61, 0x63, 0x6b, 0x20, 0x32, 0x34, 0x20, 0x68, 0x6f, 0x75, 0x72,
+ 0x73, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20,
+ 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x73,
- 0x3a, 0x20, 0x5b, 0x34, 0x5d, 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x4e, 0x49,
- 0x50, 0x2d, 0x30, 0x34, 0x20, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x20,
- 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x75, 0x74,
- 0x68, 0x6f, 0x72, 0x73, 0x3a, 0x20, 0x5b, 0x67, 0x65, 0x74, 0x52, 0x65,
- 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x28, 0x29, 0x5d,
- 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x4f, 0x6e, 0x6c, 0x79, 0x20, 0x6c, 0x69,
- 0x73, 0x74, 0x65, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x44, 0x4d, 0x73, 0x20,
- 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x65, 0x6c,
- 0x61, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x22, 0x23, 0x70, 0x22, 0x3a, 0x20, 0x5b, 0x75, 0x73,
- 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x5d, 0x2c, 0x20, 0x2f,
- 0x2f, 0x20, 0x4f, 0x6e, 0x6c, 0x79, 0x20, 0x44, 0x4d, 0x73, 0x20, 0x64,
- 0x69, 0x72, 0x65, 0x63, 0x74, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x74,
- 0x68, 0x69, 0x73, 0x20, 0x75, 0x73, 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x69, 0x6d,
- 0x69, 0x74, 0x3a, 0x20, 0x35, 0x30, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x69, 0x6e, 0x63,
- 0x65, 0x3a, 0x20, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f,
- 0x72, 0x28, 0x44, 0x61, 0x74, 0x65, 0x2e, 0x6e, 0x6f, 0x77, 0x28, 0x29,
- 0x20, 0x2f, 0x20, 0x31, 0x30, 0x30, 0x30, 0x29, 0x20, 0x2d, 0x20, 0x28,
- 0x32, 0x20, 0x2a, 0x20, 0x32, 0x34, 0x20, 0x2a, 0x20, 0x36, 0x30, 0x20,
- 0x2a, 0x20, 0x36, 0x30, 0x29, 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f,
- 0x6f, 0x6b, 0x20, 0x62, 0x61, 0x63, 0x6b, 0x20, 0x32, 0x20, 0x64, 0x61,
- 0x79, 0x73, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x4e, 0x49, 0x50, 0x2d, 0x35,
- 0x39, 0x20, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x64,
- 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x73, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x3a, 0x20, 0x5b, 0x31, 0x30, 0x35, 0x39,
- 0x5d, 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x4e, 0x49, 0x50, 0x2d, 0x31, 0x37,
- 0x20, 0x47, 0x69, 0x66, 0x74, 0x57, 0x72, 0x61, 0x70, 0x20, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x23, 0x70, 0x22, 0x3a, 0x20, 0x5b,
- 0x75, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x5d, 0x2c,
- 0x20, 0x2f, 0x2f, 0x20, 0x4f, 0x6e, 0x6c, 0x79, 0x20, 0x47, 0x69, 0x66,
- 0x74, 0x57, 0x72, 0x61, 0x70, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73,
- 0x20, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x20, 0x74,
- 0x6f, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x75, 0x73, 0x65, 0x72, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x20, 0x35, 0x30, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x2c, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73,
- 0x69, 0x6e, 0x63, 0x65, 0x3a, 0x20, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66,
- 0x6c, 0x6f, 0x6f, 0x72, 0x28, 0x44, 0x61, 0x74, 0x65, 0x2e, 0x6e, 0x6f,
- 0x77, 0x28, 0x29, 0x20, 0x2f, 0x20, 0x31, 0x30, 0x30, 0x30, 0x29, 0x2c,
- 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x61, 0x72, 0x74, 0x20, 0x66, 0x72,
- 0x6f, 0x6d, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x20, 0x74,
- 0x69, 0x6d, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x3a, 0x20, 0x5b,
- 0x32, 0x34, 0x35, 0x36, 0x37, 0x5d, 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x52,
- 0x65, 0x61, 0x6c, 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x65, 0x70, 0x68,
- 0x65, 0x6d, 0x65, 0x72, 0x61, 0x6c, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74,
- 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x73, 0x3a, 0x20, 0x5b, 0x67,
- 0x65, 0x74, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65,
- 0x79, 0x28, 0x29, 0x5d, 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x4f, 0x6e, 0x6c,
- 0x79, 0x20, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x20, 0x74, 0x6f, 0x20,
- 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65,
- 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x74,
- 0x68, 0x65, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x23, 0x64,
- 0x22, 0x3a, 0x20, 0x69, 0x73, 0x4c, 0x6f, 0x67, 0x67, 0x65, 0x64, 0x49,
- 0x6e, 0x20, 0x3f, 0x20, 0x5b, 0x22, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f,
- 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x22, 0x2c, 0x20, 0x22, 0x74, 0x69, 0x6d,
- 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73, 0x22, 0x2c, 0x20, 0x22, 0x74,
- 0x6f, 0x70, 0x5f, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x22, 0x2c,
- 0x20, 0x22, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
- 0x6f, 0x6e, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x22, 0x2c,
- 0x20, 0x22, 0x63, 0x70, 0x75, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63,
- 0x73, 0x22, 0x5d, 0x20, 0x3a, 0x20, 0x5b, 0x22, 0x65, 0x76, 0x65, 0x6e,
- 0x74, 0x5f, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x22, 0x2c, 0x20, 0x22, 0x74,
- 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73, 0x22, 0x2c, 0x20,
- 0x22, 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73,
- 0x22, 0x2c, 0x20, 0x22, 0x63, 0x70, 0x75, 0x5f, 0x6d, 0x65, 0x74, 0x72,
- 0x69, 0x63, 0x73, 0x22, 0x5d, 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x49, 0x6e,
- 0x63, 0x6c, 0x75, 0x64, 0x65, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
- 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69,
- 0x6c, 0x73, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x77, 0x68, 0x65, 0x6e,
- 0x20, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74,
- 0x65, 0x64, 0x2c, 0x20, 0x63, 0x70, 0x75, 0x5f, 0x6d, 0x65, 0x74, 0x72,
- 0x69, 0x63, 0x73, 0x20, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c,
- 0x65, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x6c, 0x6c, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x69, 0x6d,
- 0x69, 0x74, 0x3a, 0x20, 0x35, 0x30, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x69, 0x6e, 0x63,
- 0x65, 0x3a, 0x20, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f,
- 0x72, 0x28, 0x44, 0x61, 0x74, 0x65, 0x2e, 0x6e, 0x6f, 0x77, 0x28, 0x29,
- 0x20, 0x2f, 0x20, 0x31, 0x30, 0x30, 0x30, 0x29, 0x20, 0x2d, 0x20, 0x28,
- 0x32, 0x34, 0x20, 0x2a, 0x20, 0x36, 0x30, 0x20, 0x2a, 0x20, 0x36, 0x30,
- 0x29, 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x6f, 0x6b, 0x20, 0x62,
- 0x61, 0x63, 0x6b, 0x20, 0x32, 0x34, 0x20, 0x68, 0x6f, 0x75, 0x72, 0x73,
- 0x20, 0x66, 0x6f, 0x72, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65,
- 0x76, 0x65, 0x6e, 0x74, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x3a,
- 0x20, 0x5b, 0x30, 0x2c, 0x20, 0x31, 0x30, 0x30, 0x35, 0x30, 0x2c, 0x20,
- 0x31, 0x30, 0x30, 0x30, 0x32, 0x5d, 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x52,
- 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x3a,
- 0x20, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x2c, 0x20, 0x44,
- 0x4d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x2c, 0x20, 0x72, 0x65,
- 0x6c, 0x61, 0x79, 0x20, 0x6c, 0x69, 0x73, 0x74, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x75, 0x74,
- 0x68, 0x6f, 0x72, 0x73, 0x3a, 0x20, 0x5b, 0x67, 0x65, 0x74, 0x52, 0x65,
- 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x28, 0x29, 0x5d,
- 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x4f, 0x6e, 0x6c, 0x79, 0x20, 0x6c, 0x69,
- 0x73, 0x74, 0x65, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65, 0x6c, 0x61,
- 0x79, 0x27, 0x73, 0x20, 0x6f, 0x77, 0x6e, 0x20, 0x65, 0x76, 0x65, 0x6e,
- 0x74, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x20, 0x31, 0x30,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x5d, 0x2c,
+ 0x3a, 0x20, 0x5b, 0x30, 0x2c, 0x20, 0x31, 0x30, 0x30, 0x35, 0x30, 0x2c,
+ 0x20, 0x31, 0x30, 0x30, 0x30, 0x32, 0x5d, 0x2c, 0x20, 0x2f, 0x2f, 0x20,
+ 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73,
+ 0x3a, 0x20, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x2c, 0x20,
+ 0x44, 0x4d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x2c, 0x20, 0x72,
+ 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6c, 0x69, 0x73, 0x74, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x75,
+ 0x74, 0x68, 0x6f, 0x72, 0x73, 0x3a, 0x20, 0x5b, 0x67, 0x65, 0x74, 0x52,
+ 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x28, 0x29,
+ 0x5d, 0x2c, 0x20, 0x2f, 0x2f, 0x20, 0x4f, 0x6e, 0x6c, 0x79, 0x20, 0x6c,
+ 0x69, 0x73, 0x74, 0x65, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65, 0x6c,
+ 0x61, 0x79, 0x27, 0x73, 0x20, 0x6f, 0x77, 0x6e, 0x20, 0x65, 0x76, 0x65,
+ 0x6e, 0x74, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x20, 0x31,
+ 0x30, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x5d,
+ 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x61, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x6f, 0x6e,
+ 0x65, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29,
0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x61, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x6f, 0x6e, 0x65,
- 0x76, 0x65, 0x6e, 0x74, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x69, 0x6d,
- 0x70, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x64, 0x20, 0x6c, 0x6f, 0x67, 0x67,
- 0x69, 0x6e, 0x67, 0x20, 0x2d, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x6c, 0x69,
- 0x6e, 0x65, 0x20, 0x70, 0x65, 0x72, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x3d, 0x3d, 0x3d, 0x20,
- 0x32, 0x34, 0x35, 0x36, 0x37, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x64,
- 0x54, 0x61, 0x67, 0x20, 0x3d, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e,
- 0x74, 0x61, 0x67, 0x73, 0x2e, 0x66, 0x69, 0x6e, 0x64, 0x28, 0x74, 0x61,
- 0x67, 0x20, 0x3d, 0x3e, 0x20, 0x74, 0x61, 0x67, 0x5b, 0x30, 0x5d, 0x20,
- 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x64, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x69,
+ 0x6d, 0x70, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x64, 0x20, 0x6c, 0x6f, 0x67,
+ 0x67, 0x69, 0x6e, 0x67, 0x20, 0x2d, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x6c,
+ 0x69, 0x6e, 0x65, 0x20, 0x70, 0x65, 0x72, 0x20, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x3d, 0x3d, 0x3d,
+ 0x20, 0x32, 0x34, 0x35, 0x36, 0x37, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
- 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x20, 0x3d, 0x20, 0x64,
- 0x54, 0x61, 0x67, 0x20, 0x3f, 0x20, 0x64, 0x54, 0x61, 0x67, 0x5b, 0x31,
- 0x5d, 0x20, 0x3a, 0x20, 0x27, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e,
- 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
- 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x93, 0x8a, 0x20, 0x4d, 0x6f, 0x6e, 0x69,
- 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74,
- 0x3a, 0x20, 0x24, 0x7b, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65,
- 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65,
- 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x64, 0x54, 0x61, 0x67, 0x20, 0x3d, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x2e, 0x74, 0x61, 0x67, 0x73, 0x2e, 0x66, 0x69, 0x6e, 0x64, 0x28, 0x74,
+ 0x61, 0x67, 0x20, 0x3d, 0x3e, 0x20, 0x74, 0x61, 0x67, 0x5b, 0x30, 0x5d,
+ 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x64, 0x27, 0x29, 0x3b, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
- 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x93, 0xa8, 0x20, 0x45, 0x76, 0x65, 0x6e,
- 0x74, 0x20, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x3a, 0x20,
- 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x24, 0x7b, 0x65, 0x76, 0x65, 0x6e, 0x74,
- 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
+ 0x20, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x20, 0x3d, 0x20,
+ 0x64, 0x54, 0x61, 0x67, 0x20, 0x3f, 0x20, 0x64, 0x54, 0x61, 0x67, 0x5b,
+ 0x31, 0x5d, 0x20, 0x3a, 0x20, 0x27, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77,
+ 0x6e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x4e, 0x49, 0x50, 0x2d, 0x30,
- 0x34, 0x20, 0x44, 0x4d, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x6b, 0x69, 0x6e, 0x64,
- 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x34, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
+ 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x93, 0x8a, 0x20, 0x4d, 0x6f, 0x6e,
+ 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x3a, 0x20, 0x24, 0x7b, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70,
+ 0x65, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20,
+ 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x44, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x20, 0x74,
- 0x68, 0x65, 0x20, 0x44, 0x4d, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
- 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x64, 0x65, 0x63, 0x72,
- 0x79, 0x70, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
- 0x20, 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x77, 0x69, 0x6e,
- 0x64, 0x6f, 0x77, 0x2e, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2e, 0x6e, 0x69,
- 0x70, 0x30, 0x34, 0x2e, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x28,
- 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
- 0x2c, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x6f, 0x6e, 0x74,
- 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x52,
- 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x20, 0x4e, 0x49, 0x50, 0x2d,
- 0x30, 0x34, 0x20, 0x44, 0x4d, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x24, 0x7b, 0x64, 0x65, 0x63, 0x72,
- 0x79, 0x70, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
- 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x30,
- 0x2c, 0x20, 0x35, 0x30, 0x29, 0x7d, 0x2e, 0x2e, 0x2e, 0x60, 0x2c, 0x20,
- 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
+ 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x93, 0xa8, 0x20, 0x45, 0x76, 0x65,
+ 0x6e, 0x74, 0x20, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x3a,
+ 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x24, 0x7b, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x41, 0x64, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x69, 0x6e, 0x62, 0x6f,
- 0x78, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x4e, 0x49, 0x50, 0x2d,
+ 0x30, 0x34, 0x20, 0x44, 0x4d, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
+ 0x66, 0x20, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x6b, 0x69, 0x6e,
+ 0x64, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x34, 0x29, 0x20, 0x7b, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x69, 0x6d, 0x65,
- 0x73, 0x74, 0x61, 0x6d, 0x70, 0x20, 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x20,
- 0x44, 0x61, 0x74, 0x65, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x20, 0x2a, 0x20,
- 0x31, 0x30, 0x30, 0x30, 0x29, 0x2e, 0x74, 0x6f, 0x4c, 0x6f, 0x63, 0x61,
- 0x6c, 0x65, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x61, 0x64, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x54, 0x6f,
- 0x49, 0x6e, 0x62, 0x6f, 0x78, 0x28, 0x27, 0x72, 0x65, 0x63, 0x65, 0x69,
- 0x76, 0x65, 0x64, 0x27, 0x2c, 0x20, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70,
- 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2c, 0x20,
- 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2c, 0x20, 0x65,
- 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29,
- 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x67, 0x20, 0x66, 0x6f,
- 0x72, 0x20, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x74, 0x79, 0x70, 0x65, 0x6f, 0x66, 0x20, 0x6c, 0x6f, 0x67,
- 0x54, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x3d,
- 0x3d, 0x20, 0x27, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x54,
- 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x52, 0x45,
- 0x43, 0x56, 0x27, 0x2c, 0x20, 0x60, 0x4e, 0x49, 0x50, 0x2d, 0x30, 0x34,
- 0x20, 0x44, 0x4d, 0x3a, 0x20, 0x24, 0x7b, 0x64, 0x65, 0x63, 0x72, 0x79,
- 0x70, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x7d,
- 0x60, 0x2c, 0x20, 0x27, 0x44, 0x4d, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61,
- 0x74, 0x63, 0x68, 0x20, 0x28, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67,
- 0x28, 0x60, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20,
- 0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x20, 0x4e, 0x49, 0x50, 0x2d,
- 0x30, 0x34, 0x20, 0x44, 0x4d, 0x3a, 0x20, 0x24, 0x7b, 0x64, 0x65, 0x63,
- 0x72, 0x79, 0x70, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65,
- 0x73, 0x73, 0x61, 0x67, 0x65, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x45, 0x52,
- 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x74,
- 0x79, 0x70, 0x65, 0x6f, 0x66, 0x20, 0x6c, 0x6f, 0x67, 0x54, 0x65, 0x73,
- 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27,
- 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x29, 0x20, 0x7b,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x54, 0x65, 0x73, 0x74,
- 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52,
- 0x27, 0x2c, 0x20, 0x60, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74,
- 0x6f, 0x20, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x20, 0x44, 0x4d,
- 0x3a, 0x20, 0x24, 0x7b, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
+ 0x20, 0x2f, 0x2f, 0x20, 0x44, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x20,
+ 0x74, 0x68, 0x65, 0x20, 0x44, 0x4d, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65,
+ 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x64, 0x65, 0x63,
+ 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
+ 0x74, 0x20, 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x77, 0x69,
+ 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2e, 0x6e,
+ 0x69, 0x70, 0x30, 0x34, 0x2e, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74,
+ 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x2c, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x6f, 0x6e,
+ 0x74, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60,
+ 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x20, 0x4e, 0x49, 0x50,
+ 0x2d, 0x30, 0x34, 0x20, 0x44, 0x4d, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20,
+ 0x72, 0x65, 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x24, 0x7b, 0x64, 0x65, 0x63,
+ 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
+ 0x74, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28,
+ 0x30, 0x2c, 0x20, 0x35, 0x30, 0x29, 0x7d, 0x2e, 0x2e, 0x2e, 0x60, 0x2c,
+ 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
+ 0x2f, 0x20, 0x41, 0x64, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x69, 0x6e, 0x62,
+ 0x6f, 0x78, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x69, 0x6d,
+ 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x20, 0x3d, 0x20, 0x6e, 0x65, 0x77,
+ 0x20, 0x44, 0x61, 0x74, 0x65, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e,
+ 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x20, 0x2a,
+ 0x20, 0x31, 0x30, 0x30, 0x30, 0x29, 0x2e, 0x74, 0x6f, 0x4c, 0x6f, 0x63,
+ 0x61, 0x6c, 0x65, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x61, 0x64, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x54,
+ 0x6f, 0x49, 0x6e, 0x62, 0x6f, 0x78, 0x28, 0x27, 0x72, 0x65, 0x63, 0x65,
+ 0x69, 0x76, 0x65, 0x64, 0x27, 0x2c, 0x20, 0x64, 0x65, 0x63, 0x72, 0x79,
+ 0x70, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2c,
+ 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2c, 0x20,
+ 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x67, 0x20, 0x66,
+ 0x6f, 0x72, 0x20, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
+ 0x66, 0x20, 0x28, 0x74, 0x79, 0x70, 0x65, 0x6f, 0x66, 0x20, 0x6c, 0x6f,
+ 0x67, 0x54, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x3d,
+ 0x3d, 0x3d, 0x20, 0x27, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x27, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67,
+ 0x54, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x52,
+ 0x45, 0x43, 0x56, 0x27, 0x2c, 0x20, 0x60, 0x4e, 0x49, 0x50, 0x2d, 0x30,
+ 0x34, 0x20, 0x44, 0x4d, 0x3a, 0x20, 0x24, 0x7b, 0x64, 0x65, 0x63, 0x72,
+ 0x79, 0x70, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
0x7d, 0x60, 0x2c, 0x20, 0x27, 0x44, 0x4d, 0x27, 0x29, 0x3b, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63,
+ 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70,
+ 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72,
- 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20,
- 0x4e, 0x49, 0x50, 0x2d, 0x31, 0x37, 0x20, 0x47, 0x69, 0x66, 0x74, 0x57,
- 0x72, 0x61, 0x70, 0x20, 0x44, 0x4d, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x66, 0x20, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x6b, 0x69,
- 0x6e, 0x64, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x31, 0x30, 0x35, 0x39, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60,
- 0xf0, 0x9f, 0x93, 0xa8, 0x20, 0x52, 0x45, 0x43, 0x45, 0x49, 0x56, 0x45,
- 0x44, 0x20, 0x4b, 0x49, 0x4e, 0x44, 0x20, 0x31, 0x30, 0x35, 0x39, 0x20,
- 0x45, 0x56, 0x45, 0x4e, 0x54, 0x3a, 0x60, 0x2c, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
- 0x64, 0x3a, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x69, 0x64, 0x2c,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3a, 0x20, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2c, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x3a, 0x20, 0x65,
- 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64,
- 0x5f, 0x61, 0x74, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
- 0x3a, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x6f, 0x6e, 0x74,
- 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e,
- 0x67, 0x28, 0x30, 0x2c, 0x20, 0x31, 0x30, 0x30, 0x29, 0x20, 0x2b, 0x20,
- 0x27, 0x2e, 0x2e, 0x2e, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x67, 0x73, 0x3a,
- 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x74, 0x61, 0x67, 0x73, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x65, 0x70, 0x20, 0x31,
- 0x3a, 0x20, 0x55, 0x6e, 0x77, 0x72, 0x61, 0x70, 0x20, 0x67, 0x69, 0x66,
- 0x74, 0x20, 0x77, 0x72, 0x61, 0x70, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x65,
- 0x74, 0x20, 0x73, 0x65, 0x61, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x73, 0x65, 0x61, 0x6c, 0x4a, 0x73, 0x6f, 0x6e, 0x20, 0x3d, 0x20,
- 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77,
- 0x2e, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2e, 0x6e, 0x69, 0x70, 0x34, 0x34,
- 0x2e, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x28, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2c, 0x20, 0x65,
- 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
- 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x94, 0x93, 0x20, 0x53, 0x54, 0x45,
- 0x50, 0x20, 0x31, 0x20, 0x2d, 0x20, 0x55, 0x6e, 0x77, 0x72, 0x61, 0x70,
- 0x70, 0x65, 0x64, 0x20, 0x67, 0x69, 0x66, 0x74, 0x20, 0x77, 0x72, 0x61,
- 0x70, 0x3a, 0x60, 0x2c, 0x20, 0x73, 0x65, 0x61, 0x6c, 0x4a, 0x73, 0x6f,
- 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28,
- 0x30, 0x2c, 0x20, 0x31, 0x30, 0x30, 0x29, 0x20, 0x2b, 0x20, 0x27, 0x2e,
- 0x2e, 0x2e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
- 0x73, 0x65, 0x61, 0x6c, 0x20, 0x3d, 0x20, 0x73, 0x61, 0x66, 0x65, 0x4a,
- 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x73, 0x65, 0x28, 0x73, 0x65, 0x61,
- 0x6c, 0x4a, 0x73, 0x6f, 0x6e, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f,
+ 0x67, 0x28, 0x60, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f,
+ 0x20, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x20, 0x4e, 0x49, 0x50,
+ 0x2d, 0x30, 0x34, 0x20, 0x44, 0x4d, 0x3a, 0x20, 0x24, 0x7b, 0x64, 0x65,
+ 0x63, 0x72, 0x79, 0x70, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d,
+ 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x45,
+ 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
- 0x21, 0x73, 0x65, 0x61, 0x6c, 0x20, 0x7c, 0x7c, 0x20, 0x73, 0x65, 0x61,
- 0x6c, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x31,
- 0x33, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72,
- 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x28, 0x27, 0x55, 0x6e, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x64, 0x20,
- 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x69, 0x73, 0x20, 0x6e,
- 0x6f, 0x74, 0x20, 0x61, 0x20, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x20, 0x73,
- 0x65, 0x61, 0x6c, 0x20, 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x33,
- 0x29, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f,
- 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xe2, 0x9c, 0x85, 0x20,
- 0x53, 0x65, 0x61, 0x6c, 0x20, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74,
- 0x65, 0x64, 0x3a, 0x60, 0x2c, 0x20, 0x7b, 0x20, 0x6b, 0x69, 0x6e, 0x64,
- 0x3a, 0x20, 0x73, 0x65, 0x61, 0x6c, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x2c,
- 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3a, 0x20, 0x73, 0x65, 0x61,
- 0x6c, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x73, 0x75, 0x62,
- 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x30, 0x2c, 0x20, 0x31, 0x36,
- 0x29, 0x20, 0x2b, 0x20, 0x27, 0x2e, 0x2e, 0x2e, 0x27, 0x20, 0x7d, 0x29,
- 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x65, 0x70, 0x20, 0x32,
- 0x3a, 0x20, 0x55, 0x6e, 0x73, 0x65, 0x61, 0x6c, 0x20, 0x74, 0x6f, 0x20,
- 0x67, 0x65, 0x74, 0x20, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x4a, 0x73, 0x6f,
- 0x6e, 0x20, 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x77, 0x69,
- 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2e, 0x6e,
- 0x69, 0x70, 0x34, 0x34, 0x2e, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74,
- 0x28, 0x73, 0x65, 0x61, 0x6c, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
- 0x2c, 0x20, 0x73, 0x65, 0x61, 0x6c, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65,
- 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
- 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x94, 0x93, 0x20, 0x53,
- 0x54, 0x45, 0x50, 0x20, 0x32, 0x20, 0x2d, 0x20, 0x55, 0x6e, 0x73, 0x65,
- 0x61, 0x6c, 0x65, 0x64, 0x20, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x3a, 0x60,
- 0x2c, 0x20, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x4a, 0x73, 0x6f, 0x6e, 0x2e,
- 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x30, 0x2c,
- 0x20, 0x31, 0x30, 0x30, 0x29, 0x20, 0x2b, 0x20, 0x27, 0x2e, 0x2e, 0x2e,
- 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x75,
- 0x6d, 0x6f, 0x72, 0x20, 0x3d, 0x20, 0x73, 0x61, 0x66, 0x65, 0x4a, 0x73,
- 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x73, 0x65, 0x28, 0x72, 0x75, 0x6d, 0x6f,
- 0x72, 0x4a, 0x73, 0x6f, 0x6e, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
- 0x21, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x20, 0x7c, 0x7c, 0x20, 0x72, 0x75,
- 0x6d, 0x6f, 0x72, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x21, 0x3d, 0x3d,
- 0x20, 0x31, 0x34, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74,
- 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x28, 0x27, 0x55, 0x6e, 0x73, 0x65, 0x61, 0x6c, 0x65, 0x64,
- 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x69, 0x73, 0x20,
- 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x20, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x20,
- 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x20, 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x20,
- 0x31, 0x34, 0x29, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xe2, 0x9c,
- 0x85, 0x20, 0x52, 0x75, 0x6d, 0x6f, 0x72, 0x20, 0x76, 0x61, 0x6c, 0x69,
- 0x64, 0x61, 0x74, 0x65, 0x64, 0x3a, 0x60, 0x2c, 0x20, 0x7b, 0x20, 0x6b,
- 0x69, 0x6e, 0x64, 0x3a, 0x20, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x2e, 0x6b,
- 0x69, 0x6e, 0x64, 0x2c, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3a,
- 0x20, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65,
- 0x79, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28,
- 0x30, 0x2c, 0x20, 0x31, 0x36, 0x29, 0x20, 0x2b, 0x20, 0x27, 0x2e, 0x2e,
- 0x2e, 0x27, 0x2c, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x3a,
- 0x20, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65,
- 0x6e, 0x74, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
- 0x28, 0x30, 0x2c, 0x20, 0x35, 0x30, 0x29, 0x20, 0x2b, 0x20, 0x27, 0x2e,
- 0x2e, 0x2e, 0x27, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67,
- 0x28, 0x60, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x20, 0x4e,
- 0x49, 0x50, 0x2d, 0x31, 0x37, 0x20, 0x44, 0x4d, 0x20, 0x66, 0x72, 0x6f,
- 0x6d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x24, 0x7b, 0x72,
- 0x75, 0x6d, 0x6f, 0x72, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
- 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x30,
- 0x2c, 0x20, 0x35, 0x30, 0x29, 0x7d, 0x2e, 0x2e, 0x2e, 0x60, 0x2c, 0x20,
- 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x41, 0x64, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x69, 0x6e, 0x62, 0x6f,
- 0x78, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x69, 0x6d, 0x65,
- 0x73, 0x74, 0x61, 0x6d, 0x70, 0x20, 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x20,
- 0x44, 0x61, 0x74, 0x65, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x20, 0x2a, 0x20,
- 0x31, 0x30, 0x30, 0x30, 0x29, 0x2e, 0x74, 0x6f, 0x4c, 0x6f, 0x63, 0x61,
- 0x6c, 0x65, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x61, 0x64, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x54, 0x6f,
- 0x49, 0x6e, 0x62, 0x6f, 0x78, 0x28, 0x27, 0x72, 0x65, 0x63, 0x65, 0x69,
- 0x76, 0x65, 0x64, 0x27, 0x2c, 0x20, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x2e,
- 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2c, 0x20, 0x74, 0x69, 0x6d,
- 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2c, 0x20, 0x72, 0x75, 0x6d, 0x6f,
- 0x72, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x67, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74,
- 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x74,
- 0x79, 0x70, 0x65, 0x6f, 0x66, 0x20, 0x6c, 0x6f, 0x67, 0x54, 0x65, 0x73,
- 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27,
- 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x54, 0x65, 0x73, 0x74,
- 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x52, 0x45, 0x43, 0x56, 0x27,
- 0x2c, 0x20, 0x60, 0x4e, 0x49, 0x50, 0x2d, 0x31, 0x37, 0x20, 0x44, 0x4d,
- 0x3a, 0x20, 0x24, 0x7b, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x2e, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x44, 0x4d,
- 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x75,
- 0x6e, 0x77, 0x72, 0x61, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20,
+ 0x74, 0x79, 0x70, 0x65, 0x6f, 0x66, 0x20, 0x6c, 0x6f, 0x67, 0x54, 0x65,
+ 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x3d, 0x3d, 0x20,
+ 0x27, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x29, 0x20,
0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x28, 0x60, 0xe2, 0x9d, 0x8c, 0x20, 0x4e, 0x49, 0x50,
- 0x2d, 0x31, 0x37, 0x20, 0x44, 0x4d, 0x20, 0x55, 0x4e, 0x57, 0x52, 0x41,
- 0x50, 0x20, 0x46, 0x41, 0x49, 0x4c, 0x45, 0x44, 0x3a, 0x60, 0x2c, 0x20,
- 0x75, 0x6e, 0x77, 0x72, 0x61, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x46, 0x61, 0x69, 0x6c, 0x65,
- 0x64, 0x20, 0x74, 0x6f, 0x20, 0x75, 0x6e, 0x77, 0x72, 0x61, 0x70, 0x20,
- 0x4e, 0x49, 0x50, 0x2d, 0x31, 0x37, 0x20, 0x44, 0x4d, 0x3a, 0x20, 0x24,
- 0x7b, 0x75, 0x6e, 0x77, 0x72, 0x61, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x7d, 0x60, 0x2c, 0x20,
- 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x74, 0x79, 0x70, 0x65, 0x6f, 0x66, 0x20, 0x6c, 0x6f, 0x67,
- 0x54, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x3d,
- 0x3d, 0x20, 0x27, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x54,
- 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x45, 0x52,
- 0x52, 0x4f, 0x52, 0x27, 0x2c, 0x20, 0x60, 0x46, 0x61, 0x69, 0x6c, 0x65,
- 0x64, 0x20, 0x74, 0x6f, 0x20, 0x75, 0x6e, 0x77, 0x72, 0x61, 0x70, 0x20,
- 0x44, 0x4d, 0x3a, 0x20, 0x24, 0x7b, 0x75, 0x6e, 0x77, 0x72, 0x61, 0x70,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x54, 0x65, 0x73,
+ 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x45, 0x52, 0x52, 0x4f,
+ 0x52, 0x27, 0x2c, 0x20, 0x60, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20,
+ 0x74, 0x6f, 0x20, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x20, 0x44,
+ 0x4d, 0x3a, 0x20, 0x24, 0x7b, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
0x65, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x44, 0x4d, 0x27, 0x29, 0x3b, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
@@ -7282,525 +7037,762 @@ static const unsigned char embedded_index_js[] = {
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65,
- 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x28,
- 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x32, 0x33, 0x34, 0x35, 0x37, 0x29, 0x0a,
+ 0x20, 0x4e, 0x49, 0x50, 0x2d, 0x31, 0x37, 0x20, 0x47, 0x69, 0x66, 0x74,
+ 0x57, 0x72, 0x61, 0x70, 0x20, 0x44, 0x4d, 0x73, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x65, 0x76, 0x65, 0x6e,
- 0x74, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x32,
- 0x33, 0x34, 0x35, 0x37, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x67, 0x20, 0x61,
- 0x6c, 0x6c, 0x20, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x20,
- 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x20, 0x66, 0x6f, 0x72,
- 0x20, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x79, 0x70,
- 0x65, 0x6f, 0x66, 0x20, 0x6c, 0x6f, 0x67, 0x54, 0x65, 0x73, 0x74, 0x45,
- 0x76, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x66, 0x75,
- 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c,
- 0x6f, 0x67, 0x54, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28,
- 0x27, 0x52, 0x45, 0x43, 0x56, 0x27, 0x2c, 0x20, 0x60, 0x41, 0x64, 0x6d,
- 0x69, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20,
- 0x65, 0x76, 0x65, 0x6e, 0x74, 0x3a, 0x20, 0x24, 0x7b, 0x4a, 0x53, 0x4f,
- 0x4e, 0x2e, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x69, 0x66, 0x79, 0x28,
- 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x45,
- 0x56, 0x45, 0x4e, 0x54, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73,
- 0x73, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x72, 0x6f, 0x63, 0x65,
- 0x73, 0x73, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x6d, 0x6f, 0x6e,
- 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e,
- 0x74, 0x73, 0x20, 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x32, 0x34, 0x35,
- 0x36, 0x37, 0x20, 0x2d, 0x20, 0x65, 0x70, 0x68, 0x65, 0x6d, 0x65, 0x72,
- 0x61, 0x6c, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
- 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x3d,
- 0x3d, 0x3d, 0x20, 0x32, 0x34, 0x35, 0x36, 0x37, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x50,
- 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74,
- 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20,
- 0x28, 0x6c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x20, 0x64, 0x6f, 0x6e,
- 0x65, 0x20, 0x61, 0x62, 0x6f, 0x76, 0x65, 0x29, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
- 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x76,
- 0x65, 0x6e, 0x74, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x72, 0x65, 0x6c,
- 0x61, 0x79, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x28, 0x6b,
- 0x69, 0x6e, 0x64, 0x73, 0x20, 0x30, 0x2c, 0x20, 0x31, 0x30, 0x30, 0x35,
- 0x30, 0x2c, 0x20, 0x31, 0x30, 0x30, 0x30, 0x32, 0x29, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x5b, 0x30, 0x2c, 0x20, 0x31, 0x30,
- 0x30, 0x35, 0x30, 0x2c, 0x20, 0x31, 0x30, 0x30, 0x30, 0x32, 0x5d, 0x2e,
- 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x73, 0x28, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x29, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x61, 0x6e, 0x64,
- 0x6c, 0x65, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74,
- 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x28, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x6f, 0x6e, 0x65, 0x6f, 0x73, 0x65, 0x28, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
- 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x45, 0x4f, 0x53, 0x45, 0x20, 0x72,
- 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x20, 0x2d, 0x20, 0x45, 0x6e,
- 0x64, 0x20, 0x6f, 0x66, 0x20, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x64, 0x20,
- 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
- 0x67, 0x28, 0x27, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x20, 0x63,
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x61, 0x66, 0x74, 0x65, 0x72, 0x20,
- 0x45, 0x4f, 0x53, 0x45, 0x3a, 0x27, 0x2c, 0x20, 0x63, 0x75, 0x72, 0x72,
- 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x29, 0x3b, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x63, 0x75,
- 0x72, 0x72, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27,
- 0x4e, 0x6f, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20,
- 0x77, 0x65, 0x72, 0x65, 0x20, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65,
- 0x64, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x6f, 0x6e, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x28, 0x72, 0x65,
- 0x61, 0x73, 0x6f, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x6b,
+ 0x69, 0x6e, 0x64, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x31, 0x30, 0x35, 0x39,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
- 0x27, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x3a, 0x27, 0x2c, 0x20,
- 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x60, 0xf0, 0x9f, 0x93, 0xa8, 0x20, 0x52, 0x45, 0x43, 0x45, 0x49, 0x56,
+ 0x45, 0x44, 0x20, 0x4b, 0x49, 0x4e, 0x44, 0x20, 0x31, 0x30, 0x35, 0x39,
+ 0x20, 0x45, 0x56, 0x45, 0x4e, 0x54, 0x3a, 0x60, 0x2c, 0x20, 0x7b, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x52, 0x65, 0x73, 0x65, 0x74, 0x20, 0x73, 0x75,
- 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73,
- 0x74, 0x61, 0x74, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x6c, 0x6c, 0x6f,
- 0x77, 0x20, 0x72, 0x65, 0x2d, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
- 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x73,
- 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x64, 0x20, 0x3d,
- 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x69, 0x6e,
- 0x67, 0x20, 0x3d, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x20,
+ 0x69, 0x64, 0x3a, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x69, 0x64,
+ 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x69, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x43, 0x6f,
- 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x66, 0x61,
- 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x74, 0x61,
- 0x74, 0x75, 0x73, 0x28, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3a, 0x20, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2c, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x3a, 0x20,
+ 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
+ 0x64, 0x5f, 0x61, 0x74, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
+ 0x74, 0x3a, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x6f, 0x6e,
+ 0x74, 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69,
+ 0x6e, 0x67, 0x28, 0x30, 0x2c, 0x20, 0x31, 0x30, 0x30, 0x29, 0x20, 0x2b,
+ 0x20, 0x27, 0x2e, 0x2e, 0x2e, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x67, 0x73,
+ 0x3a, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x74, 0x61, 0x67, 0x73,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72,
+ 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x65, 0x70, 0x20,
+ 0x31, 0x3a, 0x20, 0x55, 0x6e, 0x77, 0x72, 0x61, 0x70, 0x20, 0x67, 0x69,
+ 0x66, 0x74, 0x20, 0x77, 0x72, 0x61, 0x70, 0x20, 0x74, 0x6f, 0x20, 0x67,
+ 0x65, 0x74, 0x20, 0x73, 0x65, 0x61, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x73, 0x65, 0x61, 0x6c, 0x4a, 0x73, 0x6f, 0x6e, 0x20, 0x3d,
+ 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f,
+ 0x77, 0x2e, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2e, 0x6e, 0x69, 0x70, 0x34,
+ 0x34, 0x2e, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x28, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2c, 0x20,
+ 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
+ 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
+ 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x94, 0x93, 0x20, 0x53, 0x54,
+ 0x45, 0x50, 0x20, 0x31, 0x20, 0x2d, 0x20, 0x55, 0x6e, 0x77, 0x72, 0x61,
+ 0x70, 0x70, 0x65, 0x64, 0x20, 0x67, 0x69, 0x66, 0x74, 0x20, 0x77, 0x72,
+ 0x61, 0x70, 0x3a, 0x60, 0x2c, 0x20, 0x73, 0x65, 0x61, 0x6c, 0x4a, 0x73,
+ 0x6f, 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
+ 0x28, 0x30, 0x2c, 0x20, 0x31, 0x30, 0x30, 0x29, 0x20, 0x2b, 0x20, 0x27,
+ 0x2e, 0x2e, 0x2e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
+ 0x20, 0x73, 0x65, 0x61, 0x6c, 0x20, 0x3d, 0x20, 0x73, 0x61, 0x66, 0x65,
+ 0x4a, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x73, 0x65, 0x28, 0x73, 0x65,
+ 0x61, 0x6c, 0x4a, 0x73, 0x6f, 0x6e, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
+ 0x28, 0x21, 0x73, 0x65, 0x61, 0x6c, 0x20, 0x7c, 0x7c, 0x20, 0x73, 0x65,
+ 0x61, 0x6c, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x21, 0x3d, 0x3d, 0x20,
+ 0x31, 0x33, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68,
+ 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x28, 0x27, 0x55, 0x6e, 0x77, 0x72, 0x61, 0x70, 0x70, 0x65, 0x64,
+ 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x69, 0x73, 0x20,
+ 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x20, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x20,
+ 0x73, 0x65, 0x61, 0x6c, 0x20, 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x31,
+ 0x33, 0x29, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x57, 0x65, 0x62,
- 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65,
- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x64,
- 0x20, 0x2d, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x72, 0x65,
- 0x73, 0x65, 0x74, 0x27, 0x2c, 0x20, 0x27, 0x57, 0x41, 0x52, 0x4e, 0x49,
- 0x4e, 0x47, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x6f, 0x72,
- 0x65, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x6e,
- 0x75, 0x70, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x63, 0x75, 0x72,
- 0x72, 0x65, 0x6e, 0x74, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63,
- 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4d, 0x61, 0x72,
- 0x6b, 0x20, 0x61, 0x73, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
- 0x62, 0x65, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x64,
- 0x20, 0x3d, 0x20, 0x74, 0x72, 0x75, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x73, 0x53, 0x75, 0x62, 0x73, 0x63,
- 0x72, 0x69, 0x62, 0x69, 0x6e, 0x67, 0x20, 0x3d, 0x20, 0x66, 0x61, 0x6c,
- 0x73, 0x65, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
- 0x28, 0x27, 0xe2, 0x9c, 0x85, 0x20, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
- 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x65, 0x73, 0x74, 0x61, 0x62,
- 0x6c, 0x69, 0x73, 0x68, 0x65, 0x64, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65,
- 0x73, 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72,
- 0x6e, 0x20, 0x74, 0x72, 0x75, 0x65, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
- 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x75, 0x62, 0x73,
- 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x61, 0x69,
- 0x6c, 0x65, 0x64, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f,
- 0x6c, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x43, 0x6f,
- 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20,
- 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x3a, 0x27, 0x2c, 0x20, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20,
- 0x73, 0x74, 0x61, 0x63, 0x6b, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x2e, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x73, 0x53, 0x75, 0x62,
- 0x73, 0x63, 0x72, 0x69, 0x62, 0x69, 0x6e, 0x67, 0x20, 0x3d, 0x20, 0x66,
- 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x61, 0x6c,
- 0x73, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a,
- 0x0a, 0x2f, 0x2f, 0x20, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x20,
- 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x28, 0x6b,
- 0x69, 0x6e, 0x64, 0x20, 0x32, 0x33, 0x34, 0x35, 0x37, 0x29, 0x0a, 0x61,
- 0x73, 0x79, 0x6e, 0x63, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
- 0x6e, 0x20, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x41, 0x64, 0x6d,
- 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x28, 0x65,
- 0x76, 0x65, 0x6e, 0x74, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
- 0x67, 0x28, 0x27, 0x3d, 0x3d, 0x3d, 0x20, 0x50, 0x52, 0x4f, 0x43, 0x45,
- 0x53, 0x53, 0x49, 0x4e, 0x47, 0x20, 0x41, 0x44, 0x4d, 0x49, 0x4e, 0x20,
- 0x52, 0x45, 0x53, 0x50, 0x4f, 0x4e, 0x53, 0x45, 0x20, 0x3d, 0x3d, 0x3d,
- 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
- 0x27, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74,
- 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x20, 0x74, 0x68,
- 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x61, 0x20, 0x6b, 0x69, 0x6e, 0x64,
- 0x20, 0x32, 0x33, 0x34, 0x35, 0x37, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e,
- 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x66, 0x20, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x6b, 0x69,
- 0x6e, 0x64, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x32, 0x33, 0x34, 0x35, 0x37,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
- 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x49, 0x67, 0x6e, 0x6f, 0x72, 0x69, 0x6e,
- 0x67, 0x20, 0x6e, 0x6f, 0x6e, 0x2d, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20,
- 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x2c, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x3a, 0x27, 0x2c, 0x20,
- 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x56, 0x65, 0x72, 0x69, 0x66,
- 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20,
- 0x69, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x74, 0x68, 0x65, 0x20,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x65, 0x78, 0x70, 0x65,
- 0x63, 0x74, 0x65, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62,
- 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x20, 0x67, 0x65, 0x74, 0x52, 0x65, 0x6c,
- 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x28, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
- 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
- 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x65,
- 0x64, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
- 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x49, 0x67, 0x6e, 0x6f, 0x72, 0x69, 0x6e,
- 0x67, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x66,
- 0x72, 0x6f, 0x6d, 0x20, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x20,
- 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x44, 0x65, 0x63, 0x72, 0x79,
- 0x70, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x4e, 0x49, 0x50, 0x2d, 0x34,
- 0x34, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x20,
- 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x64, 0x65,
- 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65,
- 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x64,
- 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65,
- 0x6c, 0x61, 0x79, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x64, 0x65, 0x63,
- 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
- 0x74, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e,
- 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x46, 0x61,
- 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x64, 0x65, 0x63, 0x72,
- 0x79, 0x70, 0x74, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x72, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65,
- 0x6e, 0x74, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
- 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x44, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74,
- 0x65, 0x64, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x72, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x3a, 0x27, 0x2c, 0x20, 0x64, 0x65, 0x63,
- 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
- 0x74, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x54, 0x72, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x70,
- 0x61, 0x72, 0x73, 0x65, 0x20, 0x61, 0x73, 0x20, 0x4a, 0x53, 0x4f, 0x4e,
- 0x20, 0x66, 0x69, 0x72, 0x73, 0x74, 0x2c, 0x20, 0x69, 0x66, 0x20, 0x69,
- 0x74, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x73, 0x20, 0x74, 0x72, 0x65, 0x61,
- 0x74, 0x20, 0x61, 0x73, 0x20, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x20, 0x74,
- 0x65, 0x78, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x6c, 0x65, 0x74, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x44, 0x61, 0x74, 0x61, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x20, 0x3d, 0x20, 0x4a,
- 0x53, 0x4f, 0x4e, 0x2e, 0x70, 0x61, 0x72, 0x73, 0x65, 0x28, 0x64, 0x65,
- 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65,
- 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
- 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x50, 0x61, 0x72, 0x73, 0x65, 0x64,
- 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x64, 0x61,
- 0x74, 0x61, 0x3a, 0x27, 0x2c, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68,
- 0x20, 0x28, 0x70, 0x61, 0x72, 0x73, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4e, 0x6f, 0x74, 0x20, 0x4a,
- 0x53, 0x4f, 0x4e, 0x20, 0x2d, 0x20, 0x74, 0x72, 0x65, 0x61, 0x74, 0x20,
- 0x61, 0x73, 0x20, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x20, 0x74, 0x65, 0x78,
- 0x74, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x69, 0x73, 0x20,
- 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x20, 0x74, 0x65, 0x78, 0x74, 0x2c, 0x20,
- 0x6e, 0x6f, 0x74, 0x20, 0x4a, 0x53, 0x4f, 0x4e, 0x27, 0x29, 0x3b, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61,
- 0x20, 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x6c, 0x61,
- 0x69, 0x6e, 0x5f, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x20, 0x74, 0x72, 0x75,
- 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61,
- 0x67, 0x65, 0x3a, 0x20, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65,
- 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f,
- 0x67, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x65, 0x73, 0x74, 0x69,
- 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xe2, 0x9c, 0x85,
+ 0x20, 0x53, 0x65, 0x61, 0x6c, 0x20, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61,
+ 0x74, 0x65, 0x64, 0x3a, 0x60, 0x2c, 0x20, 0x7b, 0x20, 0x6b, 0x69, 0x6e,
+ 0x64, 0x3a, 0x20, 0x73, 0x65, 0x61, 0x6c, 0x2e, 0x6b, 0x69, 0x6e, 0x64,
+ 0x2c, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3a, 0x20, 0x73, 0x65,
+ 0x61, 0x6c, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x73, 0x75,
+ 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x30, 0x2c, 0x20, 0x31,
+ 0x36, 0x29, 0x20, 0x2b, 0x20, 0x27, 0x2e, 0x2e, 0x2e, 0x27, 0x20, 0x7d,
+ 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x65, 0x70, 0x20,
+ 0x32, 0x3a, 0x20, 0x55, 0x6e, 0x73, 0x65, 0x61, 0x6c, 0x20, 0x74, 0x6f,
+ 0x20, 0x67, 0x65, 0x74, 0x20, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x4a, 0x73,
+ 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x77,
+ 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2e,
+ 0x6e, 0x69, 0x70, 0x34, 0x34, 0x2e, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70,
+ 0x74, 0x28, 0x73, 0x65, 0x61, 0x6c, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x2c, 0x20, 0x73, 0x65, 0x61, 0x6c, 0x2e, 0x63, 0x6f, 0x6e, 0x74,
+ 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
+ 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xf0, 0x9f, 0x94, 0x93, 0x20,
+ 0x53, 0x54, 0x45, 0x50, 0x20, 0x32, 0x20, 0x2d, 0x20, 0x55, 0x6e, 0x73,
+ 0x65, 0x61, 0x6c, 0x65, 0x64, 0x20, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x3a,
+ 0x60, 0x2c, 0x20, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x4a, 0x73, 0x6f, 0x6e,
+ 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x30,
+ 0x2c, 0x20, 0x31, 0x30, 0x30, 0x29, 0x20, 0x2b, 0x20, 0x27, 0x2e, 0x2e,
+ 0x2e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72,
+ 0x75, 0x6d, 0x6f, 0x72, 0x20, 0x3d, 0x20, 0x73, 0x61, 0x66, 0x65, 0x4a,
+ 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x73, 0x65, 0x28, 0x72, 0x75, 0x6d,
+ 0x6f, 0x72, 0x4a, 0x73, 0x6f, 0x6e, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
+ 0x28, 0x21, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x20, 0x7c, 0x7c, 0x20, 0x72,
+ 0x75, 0x6d, 0x6f, 0x72, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x21, 0x3d,
+ 0x3d, 0x20, 0x31, 0x34, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x28, 0x27, 0x55, 0x6e, 0x73, 0x65, 0x61, 0x6c, 0x65,
+ 0x64, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x69, 0x73,
+ 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x20, 0x76, 0x61, 0x6c, 0x69, 0x64,
+ 0x20, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x20, 0x28, 0x6b, 0x69, 0x6e, 0x64,
+ 0x20, 0x31, 0x34, 0x29, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xe2,
+ 0x9c, 0x85, 0x20, 0x52, 0x75, 0x6d, 0x6f, 0x72, 0x20, 0x76, 0x61, 0x6c,
+ 0x69, 0x64, 0x61, 0x74, 0x65, 0x64, 0x3a, 0x60, 0x2c, 0x20, 0x7b, 0x20,
+ 0x6b, 0x69, 0x6e, 0x64, 0x3a, 0x20, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x2e,
+ 0x6b, 0x69, 0x6e, 0x64, 0x2c, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x3a, 0x20, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x2e, 0x70, 0x75, 0x62, 0x6b,
+ 0x65, 0x79, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
+ 0x28, 0x30, 0x2c, 0x20, 0x31, 0x36, 0x29, 0x20, 0x2b, 0x20, 0x27, 0x2e,
+ 0x2e, 0x2e, 0x27, 0x2c, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
+ 0x3a, 0x20, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x2e, 0x63, 0x6f, 0x6e, 0x74,
+ 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e,
+ 0x67, 0x28, 0x30, 0x2c, 0x20, 0x35, 0x30, 0x29, 0x20, 0x2b, 0x20, 0x27,
+ 0x2e, 0x2e, 0x2e, 0x27, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f,
+ 0x67, 0x28, 0x60, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x20,
+ 0x4e, 0x49, 0x50, 0x2d, 0x31, 0x37, 0x20, 0x44, 0x4d, 0x20, 0x66, 0x72,
+ 0x6f, 0x6d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x24, 0x7b,
+ 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
+ 0x74, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28,
+ 0x30, 0x2c, 0x20, 0x35, 0x30, 0x29, 0x7d, 0x2e, 0x2e, 0x2e, 0x60, 0x2c,
+ 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
+ 0x2f, 0x20, 0x41, 0x64, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x69, 0x6e, 0x62,
+ 0x6f, 0x78, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x69, 0x6d,
+ 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x20, 0x3d, 0x20, 0x6e, 0x65, 0x77,
+ 0x20, 0x44, 0x61, 0x74, 0x65, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e,
+ 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x20, 0x2a,
+ 0x20, 0x31, 0x30, 0x30, 0x30, 0x29, 0x2e, 0x74, 0x6f, 0x4c, 0x6f, 0x63,
+ 0x61, 0x6c, 0x65, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x61, 0x64, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x54,
+ 0x6f, 0x49, 0x6e, 0x62, 0x6f, 0x78, 0x28, 0x27, 0x72, 0x65, 0x63, 0x65,
+ 0x69, 0x76, 0x65, 0x64, 0x27, 0x2c, 0x20, 0x72, 0x75, 0x6d, 0x6f, 0x72,
+ 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2c, 0x20, 0x74, 0x69,
+ 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2c, 0x20, 0x72, 0x75, 0x6d,
+ 0x6f, 0x72, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29, 0x3b, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x67, 0x20, 0x66, 0x6f, 0x72, 0x20,
+ 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x74, 0x79, 0x70, 0x65, 0x6f, 0x66, 0x20, 0x6c, 0x6f, 0x67, 0x54, 0x65,
+ 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x3d, 0x3d, 0x20,
+ 0x27, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x54, 0x65, 0x73,
+ 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x52, 0x45, 0x43, 0x56,
+ 0x27, 0x2c, 0x20, 0x60, 0x4e, 0x49, 0x50, 0x2d, 0x31, 0x37, 0x20, 0x44,
+ 0x4d, 0x3a, 0x20, 0x24, 0x7b, 0x72, 0x75, 0x6d, 0x6f, 0x72, 0x2e, 0x63,
+ 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x44,
+ 0x4d, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28,
+ 0x75, 0x6e, 0x77, 0x72, 0x61, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x28, 0x60, 0xe2, 0x9d, 0x8c, 0x20, 0x4e, 0x49,
+ 0x50, 0x2d, 0x31, 0x37, 0x20, 0x44, 0x4d, 0x20, 0x55, 0x4e, 0x57, 0x52,
+ 0x41, 0x50, 0x20, 0x46, 0x41, 0x49, 0x4c, 0x45, 0x44, 0x3a, 0x60, 0x2c,
+ 0x20, 0x75, 0x6e, 0x77, 0x72, 0x61, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x46, 0x61, 0x69, 0x6c,
+ 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x75, 0x6e, 0x77, 0x72, 0x61, 0x70,
+ 0x20, 0x4e, 0x49, 0x50, 0x2d, 0x31, 0x37, 0x20, 0x44, 0x4d, 0x3a, 0x20,
+ 0x24, 0x7b, 0x75, 0x6e, 0x77, 0x72, 0x61, 0x70, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x7d, 0x60, 0x2c,
+ 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
0x66, 0x20, 0x28, 0x74, 0x79, 0x70, 0x65, 0x6f, 0x66, 0x20, 0x6c, 0x6f,
0x67, 0x54, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x3d,
0x3d, 0x3d, 0x20, 0x27, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
0x27, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x54, 0x65, 0x73, 0x74,
- 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x52, 0x45, 0x43, 0x56, 0x27,
- 0x2c, 0x20, 0x60, 0x44, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64,
- 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x3a, 0x20, 0x24,
- 0x7b, 0x4a, 0x53, 0x4f, 0x4e, 0x2e, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
- 0x69, 0x66, 0x79, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x44, 0x61, 0x74, 0x61, 0x29, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x52, 0x45,
- 0x53, 0x50, 0x4f, 0x4e, 0x53, 0x45, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x48, 0x61, 0x6e, 0x64,
- 0x6c, 0x65, 0x20, 0x64, 0x69, 0x66, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x74,
- 0x20, 0x74, 0x79, 0x70, 0x65, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x64,
- 0x6d, 0x69, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x61,
- 0x6e, 0x64, 0x6c, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x28, 0x72, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x29, 0x3b,
- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63,
- 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x6f, 0x6c, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x20, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
- 0x69, 0x6e, 0x67, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x72, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x79, 0x70, 0x65, 0x6f, 0x66,
- 0x20, 0x6c, 0x6f, 0x67, 0x54, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e,
- 0x74, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x66, 0x75, 0x6e, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x27, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x54,
- 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x45, 0x52,
- 0x52, 0x4f, 0x52, 0x27, 0x2c, 0x20, 0x60, 0x46, 0x61, 0x69, 0x6c, 0x65,
- 0x64, 0x20, 0x74, 0x6f, 0x20, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
- 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x3a, 0x20, 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x7d, 0x60, 0x2c, 0x20,
- 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x69, 0x74,
- 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x20, 0x72, 0x65, 0x61, 0x6c, 0x2d,
- 0x74, 0x69, 0x6d, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x72,
- 0x61, 0x74, 0x65, 0x20, 0x63, 0x68, 0x61, 0x72, 0x74, 0x0a, 0x66, 0x75,
- 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69,
- 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x61,
- 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x74, 0x28, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
- 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x3d, 0x3d, 0x3d, 0x20, 0x49,
- 0x4e, 0x49, 0x54, 0x49, 0x41, 0x4c, 0x49, 0x5a, 0x49, 0x4e, 0x47, 0x20,
- 0x45, 0x56, 0x45, 0x4e, 0x54, 0x20, 0x52, 0x41, 0x54, 0x45, 0x20, 0x43,
- 0x48, 0x41, 0x52, 0x54, 0x20, 0x3d, 0x3d, 0x3d, 0x27, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63,
- 0x68, 0x61, 0x72, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65,
- 0x72, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42,
- 0x79, 0x49, 0x64, 0x28, 0x27, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2d, 0x72,
- 0x61, 0x74, 0x65, 0x2d, 0x63, 0x68, 0x61, 0x72, 0x74, 0x27, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x68,
- 0x61, 0x72, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65,
- 0x72, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x3a, 0x27, 0x2c, 0x20, 0x63,
- 0x68, 0x61, 0x72, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65,
- 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x21, 0x63, 0x68, 0x61, 0x72, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x61,
- 0x69, 0x6e, 0x65, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x45, 0x76, 0x65,
- 0x6e, 0x74, 0x20, 0x72, 0x61, 0x74, 0x65, 0x20, 0x63, 0x68, 0x61, 0x72,
- 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x20,
- 0x6e, 0x6f, 0x74, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x27, 0x29, 0x3b,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67,
+ 0x54, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x45,
+ 0x52, 0x52, 0x4f, 0x52, 0x27, 0x2c, 0x20, 0x60, 0x46, 0x61, 0x69, 0x6c,
+ 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x75, 0x6e, 0x77, 0x72, 0x61, 0x70,
+ 0x20, 0x44, 0x4d, 0x3a, 0x20, 0x24, 0x7b, 0x75, 0x6e, 0x77, 0x72, 0x61,
+ 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61,
+ 0x67, 0x65, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x44, 0x4d, 0x27, 0x29, 0x3b,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74,
+ 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c,
+ 0x65, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20,
+ 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x32, 0x33, 0x34, 0x35, 0x37, 0x29,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x65, 0x76, 0x65,
+ 0x6e, 0x74, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x3d, 0x3d, 0x3d, 0x20,
+ 0x32, 0x33, 0x34, 0x35, 0x37, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x67, 0x20,
+ 0x61, 0x6c, 0x6c, 0x20, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64,
+ 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x20, 0x66, 0x6f,
+ 0x72, 0x20, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x79,
+ 0x70, 0x65, 0x6f, 0x66, 0x20, 0x6c, 0x6f, 0x67, 0x54, 0x65, 0x73, 0x74,
+ 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x66,
+ 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x6c, 0x6f, 0x67, 0x54, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74,
+ 0x28, 0x27, 0x52, 0x45, 0x43, 0x56, 0x27, 0x2c, 0x20, 0x60, 0x41, 0x64,
+ 0x6d, 0x69, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x3a, 0x20, 0x24, 0x7b, 0x4a, 0x53,
+ 0x4f, 0x4e, 0x2e, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x69, 0x66, 0x79,
+ 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x7d, 0x60, 0x2c, 0x20, 0x27,
+ 0x45, 0x56, 0x45, 0x4e, 0x54, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x68, 0x6f, 0x77, 0x20,
- 0x69, 0x6d, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x74, 0x65, 0x20, 0x70, 0x6c,
- 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x20, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x68, 0x61, 0x72, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x61,
- 0x69, 0x6e, 0x65, 0x72, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e,
- 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27, 0x49, 0x6e, 0x69, 0x74,
- 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x20, 0x72, 0x61, 0x74, 0x65, 0x20, 0x63, 0x68, 0x61, 0x72,
- 0x74, 0x2e, 0x2e, 0x2e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
- 0x6f, 0x67, 0x28, 0x27, 0x53, 0x65, 0x74, 0x20, 0x70, 0x6c, 0x61, 0x63,
- 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x20, 0x63, 0x6f, 0x6e, 0x74,
- 0x65, 0x6e, 0x74, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x68, 0x65, 0x63, 0x6b,
- 0x20, 0x69, 0x66, 0x20, 0x41, 0x53, 0x43, 0x49, 0x49, 0x42, 0x61, 0x72,
- 0x43, 0x68, 0x61, 0x72, 0x74, 0x20, 0x69, 0x73, 0x20, 0x61, 0x76, 0x61,
- 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
- 0x6f, 0x67, 0x28, 0x27, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x69, 0x6e, 0x67,
- 0x20, 0x41, 0x53, 0x43, 0x49, 0x49, 0x42, 0x61, 0x72, 0x43, 0x68, 0x61,
- 0x72, 0x74, 0x20, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c,
- 0x69, 0x74, 0x79, 0x2e, 0x2e, 0x2e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
- 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x74, 0x79, 0x70, 0x65, 0x6f,
- 0x66, 0x20, 0x41, 0x53, 0x43, 0x49, 0x49, 0x42, 0x61, 0x72, 0x43, 0x68,
- 0x61, 0x72, 0x74, 0x3a, 0x27, 0x2c, 0x20, 0x74, 0x79, 0x70, 0x65, 0x6f,
- 0x66, 0x20, 0x41, 0x53, 0x43, 0x49, 0x49, 0x42, 0x61, 0x72, 0x43, 0x68,
- 0x61, 0x72, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
- 0x67, 0x28, 0x27, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x41, 0x53,
- 0x43, 0x49, 0x49, 0x42, 0x61, 0x72, 0x43, 0x68, 0x61, 0x72, 0x74, 0x3a,
- 0x27, 0x2c, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x41, 0x53,
- 0x43, 0x49, 0x49, 0x42, 0x61, 0x72, 0x43, 0x68, 0x61, 0x72, 0x74, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x74,
- 0x79, 0x70, 0x65, 0x6f, 0x66, 0x20, 0x41, 0x53, 0x43, 0x49, 0x49, 0x42,
- 0x61, 0x72, 0x43, 0x68, 0x61, 0x72, 0x74, 0x20, 0x3d, 0x3d, 0x3d, 0x20,
- 0x27, 0x75, 0x6e, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x27, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
- 0x6f, 0x67, 0x28, 0x27, 0x41, 0x53, 0x43, 0x49, 0x49, 0x42, 0x61, 0x72,
- 0x43, 0x68, 0x61, 0x72, 0x74, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x76,
- 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x2d, 0x20, 0x74, 0x65,
- 0x78, 0x74, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x2e, 0x6a, 0x73, 0x20,
- 0x6d, 0x61, 0x79, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x62, 0x65, 0x20, 0x6c,
- 0x6f, 0x61, 0x64, 0x65, 0x64, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x50, 0x72, 0x6f, 0x63, 0x65,
+ 0x73, 0x73, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x72, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x72, 0x6f, 0x63,
+ 0x65, 0x73, 0x73, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x6d, 0x6f,
+ 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65,
+ 0x6e, 0x74, 0x73, 0x20, 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x32, 0x34,
+ 0x35, 0x36, 0x37, 0x20, 0x2d, 0x20, 0x65, 0x70, 0x68, 0x65, 0x6d, 0x65,
+ 0x72, 0x61, 0x6c, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
+ 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x20,
+ 0x3d, 0x3d, 0x3d, 0x20, 0x32, 0x34, 0x35, 0x36, 0x37, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x53, 0x68, 0x6f, 0x77, 0x20, 0x61, 0x20, 0x6d, 0x6f, 0x72, 0x65, 0x20,
- 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x68, 0x61, 0x72, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65,
- 0x72, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20,
- 0x3d, 0x20, 0x60, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76,
- 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x63, 0x6f, 0x6c, 0x6f,
- 0x72, 0x3a, 0x20, 0x76, 0x61, 0x72, 0x28, 0x2d, 0x2d, 0x61, 0x63, 0x63,
- 0x65, 0x6e, 0x74, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x29, 0x3b, 0x20,
- 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x3a,
- 0x20, 0x76, 0x61, 0x72, 0x28, 0x2d, 0x2d, 0x66, 0x6f, 0x6e, 0x74, 0x2d,
- 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x29, 0x3b, 0x20, 0x70, 0x61, 0x64,
- 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x31, 0x30, 0x70, 0x78, 0x3b, 0x22,
- 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0xe2, 0x9a,
- 0xa0, 0xef, 0xb8, 0x8f, 0x20, 0x43, 0x68, 0x61, 0x72, 0x74, 0x20, 0x6c,
- 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c,
- 0x6f, 0x61, 0x64, 0x65, 0x64, 0x3c, 0x62, 0x72, 0x3e, 0x0a, 0x20, 0x20,
+ 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x20, 0x6d, 0x6f, 0x6e, 0x69,
+ 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x20, 0x28, 0x6c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x20, 0x64, 0x6f,
+ 0x6e, 0x65, 0x20, 0x61, 0x62, 0x6f, 0x76, 0x65, 0x29, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x3a,
- 0x20, 0x2f, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68,
- 0x2f, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x2e,
- 0x6a, 0x73, 0x3c, 0x62, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73,
+ 0x73, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x45,
+ 0x76, 0x65, 0x6e, 0x74, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x73, 0x6d, 0x61, 0x6c, 0x6c, 0x3e, 0x52, 0x65,
- 0x61, 0x6c, 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e,
- 0x74, 0x20, 0x76, 0x69, 0x73, 0x75, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x6e, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61,
- 0x62, 0x6c, 0x65, 0x3c, 0x2f, 0x73, 0x6d, 0x61, 0x6c, 0x6c, 0x3e, 0x0a,
+ 0x2f, 0x2f, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x28,
+ 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x20, 0x30, 0x2c, 0x20, 0x31, 0x30, 0x30,
+ 0x35, 0x30, 0x2c, 0x20, 0x31, 0x30, 0x30, 0x30, 0x32, 0x29, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x60,
+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x5b, 0x30, 0x2c, 0x20, 0x31,
+ 0x30, 0x30, 0x35, 0x30, 0x2c, 0x20, 0x31, 0x30, 0x30, 0x30, 0x32, 0x5d,
+ 0x2e, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x73, 0x28, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x29, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x61, 0x6e,
+ 0x64, 0x6c, 0x65, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x45, 0x76, 0x65, 0x6e,
+ 0x74, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x28, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x6f, 0x6e, 0x65, 0x6f, 0x73, 0x65, 0x28, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
+ 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x45, 0x4f, 0x53, 0x45, 0x20,
+ 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x20, 0x2d, 0x20, 0x45,
+ 0x6e, 0x64, 0x20, 0x6f, 0x66, 0x20, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x64,
+ 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x27, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
+ 0x6f, 0x67, 0x28, 0x27, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x20,
+ 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x61, 0x66, 0x74, 0x65, 0x72,
+ 0x20, 0x45, 0x4f, 0x53, 0x45, 0x3a, 0x27, 0x2c, 0x20, 0x63, 0x75, 0x72,
+ 0x72, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x29, 0x3b,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x63,
+ 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
+ 0x27, 0x4e, 0x6f, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73,
+ 0x20, 0x77, 0x65, 0x72, 0x65, 0x20, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76,
+ 0x65, 0x64, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x6f, 0x6e, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x28, 0x72,
+ 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
+ 0x28, 0x27, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
+ 0x6f, 0x6e, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x3a, 0x27, 0x2c,
+ 0x20, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x52, 0x65, 0x73, 0x65, 0x74, 0x20, 0x73,
+ 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20,
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x6c, 0x6c,
+ 0x6f, 0x77, 0x20, 0x72, 0x65, 0x2d, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
+ 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
+ 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x64, 0x20,
+ 0x3d, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x69,
+ 0x6e, 0x67, 0x20, 0x3d, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x69, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x43,
+ 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x66,
+ 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70,
+ 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x74,
+ 0x61, 0x74, 0x75, 0x73, 0x28, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x57, 0x65,
+ 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x6e,
+ 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65,
+ 0x64, 0x20, 0x2d, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x72,
+ 0x65, 0x73, 0x65, 0x74, 0x27, 0x2c, 0x20, 0x27, 0x57, 0x41, 0x52, 0x4e,
+ 0x49, 0x4e, 0x47, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x6f,
+ 0x72, 0x65, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
+ 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x63, 0x6c, 0x65, 0x61,
+ 0x6e, 0x75, 0x70, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x63, 0x75,
+ 0x72, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
+ 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x73, 0x75, 0x62, 0x73,
+ 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4d, 0x61,
+ 0x72, 0x6b, 0x20, 0x61, 0x73, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
+ 0x69, 0x62, 0x65, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x73, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
+ 0x64, 0x20, 0x3d, 0x20, 0x74, 0x72, 0x75, 0x65, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x73, 0x53, 0x75, 0x62, 0x73,
+ 0x63, 0x72, 0x69, 0x62, 0x69, 0x6e, 0x67, 0x20, 0x3d, 0x20, 0x66, 0x61,
+ 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
+ 0x67, 0x28, 0x27, 0xe2, 0x9c, 0x85, 0x20, 0x53, 0x75, 0x62, 0x73, 0x63,
+ 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x65, 0x73, 0x74, 0x61,
+ 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x64, 0x20, 0x73, 0x75, 0x63, 0x63,
+ 0x65, 0x73, 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x27, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75,
+ 0x72, 0x6e, 0x20, 0x74, 0x72, 0x75, 0x65, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x43, 0x6f, 0x6e, 0x66, 0x69,
+ 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x75, 0x62,
+ 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x61,
+ 0x69, 0x6c, 0x65, 0x64, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x6f, 0x6c, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x43,
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x3a, 0x27, 0x2c, 0x20,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x20, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x2e, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x73, 0x53, 0x75,
+ 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x69, 0x6e, 0x67, 0x20, 0x3d, 0x20,
+ 0x66, 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x61,
+ 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d,
+ 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
+ 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x28,
+ 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x32, 0x33, 0x34, 0x35, 0x37, 0x29, 0x0a,
+ 0x61, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x20, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x41, 0x64,
+ 0x6d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x28,
+ 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
+ 0x6f, 0x67, 0x28, 0x27, 0x3d, 0x3d, 0x3d, 0x20, 0x50, 0x52, 0x4f, 0x43,
+ 0x45, 0x53, 0x53, 0x49, 0x4e, 0x47, 0x20, 0x41, 0x44, 0x4d, 0x49, 0x4e,
+ 0x20, 0x52, 0x45, 0x53, 0x50, 0x4f, 0x4e, 0x53, 0x45, 0x20, 0x3d, 0x3d,
+ 0x3d, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
+ 0x28, 0x27, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2f, 0x2f, 0x20, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x20, 0x74,
+ 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x61, 0x20, 0x6b, 0x69, 0x6e,
+ 0x64, 0x20, 0x32, 0x33, 0x34, 0x35, 0x37, 0x20, 0x61, 0x64, 0x6d, 0x69,
+ 0x6e, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x6b,
+ 0x69, 0x6e, 0x64, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x32, 0x33, 0x34, 0x35,
+ 0x37, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
+ 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x49, 0x67, 0x6e, 0x6f, 0x72, 0x69,
+ 0x6e, 0x67, 0x20, 0x6e, 0x6f, 0x6e, 0x2d, 0x61, 0x64, 0x6d, 0x69, 0x6e,
+ 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x2c, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x3a, 0x27, 0x2c,
+ 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x29,
0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65, 0x61,
- 0x74, 0x65, 0x20, 0x73, 0x74, 0x75, 0x62, 0x20, 0x65, 0x6c, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x73, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x74, 0x68,
- 0x65, 0x20, 0x63, 0x68, 0x61, 0x72, 0x74, 0x20, 0x65, 0x78, 0x70, 0x65,
- 0x63, 0x74, 0x73, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x69, 0x6e, 0x66, 0x6f,
- 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43,
- 0x68, 0x61, 0x72, 0x74, 0x53, 0x74, 0x75, 0x62, 0x45, 0x6c, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x73, 0x28, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x56, 0x65, 0x72, 0x69,
+ 0x66, 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x20, 0x69, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x74, 0x68, 0x65,
+ 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x65, 0x78, 0x70,
+ 0x65, 0x63, 0x74, 0x65, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75,
+ 0x62, 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x20, 0x67, 0x65, 0x74, 0x52, 0x65,
+ 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x28, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
+ 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74,
+ 0x65, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
- 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x72, 0x65, 0x61, 0x74, 0x69,
- 0x6e, 0x67, 0x20, 0x41, 0x53, 0x43, 0x49, 0x49, 0x42, 0x61, 0x72, 0x43,
- 0x68, 0x61, 0x72, 0x74, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63,
- 0x65, 0x2e, 0x2e, 0x2e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69,
- 0x7a, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x68, 0x61, 0x72, 0x74,
- 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x63, 0x6f, 0x72, 0x72, 0x65, 0x63,
- 0x74, 0x20, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73,
- 0x20, 0x62, 0x61, 0x73, 0x65, 0x64, 0x20, 0x6f, 0x6e, 0x20, 0x74, 0x65,
- 0x78, 0x74, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x2e, 0x6a, 0x73, 0x20,
- 0x41, 0x50, 0x49, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x65, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61,
- 0x72, 0x74, 0x20, 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x41, 0x53, 0x43,
- 0x49, 0x49, 0x42, 0x61, 0x72, 0x43, 0x68, 0x61, 0x72, 0x74, 0x28, 0x27,
- 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2d, 0x72, 0x61, 0x74, 0x65, 0x2d, 0x63,
- 0x68, 0x61, 0x72, 0x74, 0x27, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6d, 0x61, 0x78,
- 0x48, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3a, 0x20, 0x31, 0x31, 0x2c, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x43, 0x68, 0x61, 0x72, 0x74, 0x20, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74,
- 0x20, 0x69, 0x6e, 0x20, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x0a, 0x20, 0x20,
+ 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x49, 0x67, 0x6e, 0x6f, 0x72, 0x69,
+ 0x6e, 0x67, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20,
+ 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e,
+ 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3a, 0x27, 0x2c, 0x20, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x44, 0x65, 0x63, 0x72,
+ 0x79, 0x70, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x4e, 0x49, 0x50, 0x2d,
+ 0x34, 0x34, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64,
+ 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x64,
+ 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74,
+ 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20,
+ 0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x46, 0x72, 0x6f, 0x6d, 0x52,
+ 0x65, 0x6c, 0x61, 0x79, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x63,
+ 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x64, 0x65,
+ 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65,
+ 0x6e, 0x74, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20,
+ 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x46,
+ 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x64, 0x65, 0x63,
+ 0x72, 0x79, 0x70, 0x74, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x72,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x63, 0x6f, 0x6e, 0x74,
+ 0x65, 0x6e, 0x74, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
+ 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x44, 0x65, 0x63, 0x72, 0x79, 0x70,
+ 0x74, 0x65, 0x64, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x72, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x3a, 0x27, 0x2c, 0x20, 0x64, 0x65,
+ 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65,
+ 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x54, 0x72, 0x79, 0x20, 0x74, 0x6f, 0x20,
+ 0x70, 0x61, 0x72, 0x73, 0x65, 0x20, 0x61, 0x73, 0x20, 0x4a, 0x53, 0x4f,
+ 0x4e, 0x20, 0x66, 0x69, 0x72, 0x73, 0x74, 0x2c, 0x20, 0x69, 0x66, 0x20,
+ 0x69, 0x74, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x73, 0x20, 0x74, 0x72, 0x65,
+ 0x61, 0x74, 0x20, 0x61, 0x73, 0x20, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x20,
+ 0x74, 0x65, 0x78, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x6c, 0x65, 0x74, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x44, 0x61, 0x74, 0x61, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x20, 0x3d, 0x20,
+ 0x4a, 0x53, 0x4f, 0x4e, 0x2e, 0x70, 0x61, 0x72, 0x73, 0x65, 0x28, 0x64,
+ 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74,
+ 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
+ 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x50, 0x61, 0x72, 0x73, 0x65,
+ 0x64, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x64,
+ 0x61, 0x74, 0x61, 0x3a, 0x27, 0x2c, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63,
+ 0x68, 0x20, 0x28, 0x70, 0x61, 0x72, 0x73, 0x65, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4e, 0x6f, 0x74, 0x20,
+ 0x4a, 0x53, 0x4f, 0x4e, 0x20, 0x2d, 0x20, 0x74, 0x72, 0x65, 0x61, 0x74,
+ 0x20, 0x61, 0x73, 0x20, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x20, 0x74, 0x65,
+ 0x78, 0x74, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
+ 0x27, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x69, 0x73,
+ 0x20, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x20, 0x74, 0x65, 0x78, 0x74, 0x2c,
+ 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x4a, 0x53, 0x4f, 0x4e, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74,
+ 0x61, 0x20, 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x6c,
+ 0x61, 0x69, 0x6e, 0x5f, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x20, 0x74, 0x72,
+ 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6d, 0x65, 0x73, 0x73,
+ 0x61, 0x67, 0x65, 0x3a, 0x20, 0x64, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74,
+ 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c,
+ 0x6f, 0x67, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x65, 0x73, 0x74,
+ 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x69, 0x66, 0x20, 0x28, 0x74, 0x79, 0x70, 0x65, 0x6f, 0x66, 0x20, 0x6c,
+ 0x6f, 0x67, 0x54, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20,
+ 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x27, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x54, 0x65, 0x73,
+ 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x52, 0x45, 0x43, 0x56,
+ 0x27, 0x2c, 0x20, 0x60, 0x44, 0x65, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65,
+ 0x64, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x3a, 0x20,
+ 0x24, 0x7b, 0x4a, 0x53, 0x4f, 0x4e, 0x2e, 0x73, 0x74, 0x72, 0x69, 0x6e,
+ 0x67, 0x69, 0x66, 0x79, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x44, 0x61, 0x74, 0x61, 0x29, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x52,
+ 0x45, 0x53, 0x50, 0x4f, 0x4e, 0x53, 0x45, 0x27, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x48, 0x61, 0x6e,
+ 0x64, 0x6c, 0x65, 0x20, 0x64, 0x69, 0x66, 0x66, 0x65, 0x72, 0x65, 0x6e,
+ 0x74, 0x20, 0x74, 0x79, 0x70, 0x65, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x61,
+ 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68,
+ 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x28, 0x72,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x29,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74,
+ 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73,
+ 0x73, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x72,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x3a, 0x27, 0x2c, 0x20, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x79, 0x70, 0x65, 0x6f,
+ 0x66, 0x20, 0x6c, 0x6f, 0x67, 0x54, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65,
+ 0x6e, 0x74, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x66, 0x75, 0x6e, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67,
+ 0x54, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x45,
+ 0x52, 0x52, 0x4f, 0x52, 0x27, 0x2c, 0x20, 0x60, 0x46, 0x61, 0x69, 0x6c,
+ 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73,
+ 0x73, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x3a, 0x20, 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x7d, 0x60, 0x2c,
+ 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x69,
+ 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x20, 0x72, 0x65, 0x61, 0x6c,
+ 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20,
+ 0x72, 0x61, 0x74, 0x65, 0x20, 0x63, 0x68, 0x61, 0x72, 0x74, 0x0a, 0x66,
+ 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x69, 0x74,
+ 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52,
+ 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x74, 0x28, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f,
+ 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x3d, 0x3d, 0x3d, 0x20,
+ 0x49, 0x4e, 0x49, 0x54, 0x49, 0x41, 0x4c, 0x49, 0x5a, 0x49, 0x4e, 0x47,
+ 0x20, 0x45, 0x56, 0x45, 0x4e, 0x54, 0x20, 0x52, 0x41, 0x54, 0x45, 0x20,
+ 0x43, 0x48, 0x41, 0x52, 0x54, 0x20, 0x3d, 0x3d, 0x3d, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x63, 0x68, 0x61, 0x72, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e,
+ 0x65, 0x72, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e,
+ 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
+ 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2d,
+ 0x72, 0x61, 0x74, 0x65, 0x2d, 0x63, 0x68, 0x61, 0x72, 0x74, 0x27, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43,
+ 0x68, 0x61, 0x72, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e,
+ 0x65, 0x72, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x3a, 0x27, 0x2c, 0x20,
+ 0x63, 0x68, 0x61, 0x72, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e,
+ 0x65, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
+ 0x20, 0x28, 0x21, 0x63, 0x68, 0x61, 0x72, 0x74, 0x43, 0x6f, 0x6e, 0x74,
+ 0x61, 0x69, 0x6e, 0x65, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x45, 0x76,
+ 0x65, 0x6e, 0x74, 0x20, 0x72, 0x61, 0x74, 0x65, 0x20, 0x63, 0x68, 0x61,
+ 0x72, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72,
+ 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x27, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x68, 0x6f, 0x77,
+ 0x20, 0x69, 0x6d, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x74, 0x65, 0x20, 0x70,
+ 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x20, 0x63,
+ 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x72, 0x74, 0x43, 0x6f, 0x6e, 0x74,
+ 0x61, 0x69, 0x6e, 0x65, 0x72, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f,
+ 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27, 0x49, 0x6e, 0x69,
+ 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x20, 0x72, 0x61, 0x74, 0x65, 0x20, 0x63, 0x68, 0x61,
+ 0x72, 0x74, 0x2e, 0x2e, 0x2e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
+ 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x53, 0x65, 0x74, 0x20, 0x70, 0x6c, 0x61,
+ 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x20, 0x63, 0x6f, 0x6e,
+ 0x74, 0x65, 0x6e, 0x74, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x68, 0x65, 0x63,
+ 0x6b, 0x20, 0x69, 0x66, 0x20, 0x41, 0x53, 0x43, 0x49, 0x49, 0x42, 0x61,
+ 0x72, 0x43, 0x68, 0x61, 0x72, 0x74, 0x20, 0x69, 0x73, 0x20, 0x61, 0x76,
+ 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
+ 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x69, 0x6e,
+ 0x67, 0x20, 0x41, 0x53, 0x43, 0x49, 0x49, 0x42, 0x61, 0x72, 0x43, 0x68,
+ 0x61, 0x72, 0x74, 0x20, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69,
+ 0x6c, 0x69, 0x74, 0x79, 0x2e, 0x2e, 0x2e, 0x27, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f,
+ 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x74, 0x79, 0x70, 0x65,
+ 0x6f, 0x66, 0x20, 0x41, 0x53, 0x43, 0x49, 0x49, 0x42, 0x61, 0x72, 0x43,
+ 0x68, 0x61, 0x72, 0x74, 0x3a, 0x27, 0x2c, 0x20, 0x74, 0x79, 0x70, 0x65,
+ 0x6f, 0x66, 0x20, 0x41, 0x53, 0x43, 0x49, 0x49, 0x42, 0x61, 0x72, 0x43,
+ 0x68, 0x61, 0x72, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
+ 0x6f, 0x67, 0x28, 0x27, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x41,
+ 0x53, 0x43, 0x49, 0x49, 0x42, 0x61, 0x72, 0x43, 0x68, 0x61, 0x72, 0x74,
+ 0x3a, 0x27, 0x2c, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x41,
+ 0x53, 0x43, 0x49, 0x49, 0x42, 0x61, 0x72, 0x43, 0x68, 0x61, 0x72, 0x74,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x74, 0x79, 0x70, 0x65, 0x6f, 0x66, 0x20, 0x41, 0x53, 0x43, 0x49, 0x49,
+ 0x42, 0x61, 0x72, 0x43, 0x68, 0x61, 0x72, 0x74, 0x20, 0x3d, 0x3d, 0x3d,
+ 0x20, 0x27, 0x75, 0x6e, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x27,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
+ 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x41, 0x53, 0x43, 0x49, 0x49, 0x42, 0x61,
+ 0x72, 0x43, 0x68, 0x61, 0x72, 0x74, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61,
+ 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x2d, 0x20, 0x74,
+ 0x65, 0x78, 0x74, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x2e, 0x6a, 0x73,
+ 0x20, 0x6d, 0x61, 0x79, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x62, 0x65, 0x20,
+ 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x53, 0x68, 0x6f, 0x77, 0x20, 0x61, 0x20, 0x6d, 0x6f, 0x72, 0x65,
+ 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x68, 0x61, 0x72, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e,
+ 0x65, 0x72, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c,
+ 0x20, 0x3d, 0x20, 0x60, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69,
+ 0x76, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x63, 0x6f, 0x6c,
+ 0x6f, 0x72, 0x3a, 0x20, 0x76, 0x61, 0x72, 0x28, 0x2d, 0x2d, 0x61, 0x63,
+ 0x63, 0x65, 0x6e, 0x74, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x29, 0x3b,
+ 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79,
+ 0x3a, 0x20, 0x76, 0x61, 0x72, 0x28, 0x2d, 0x2d, 0x66, 0x6f, 0x6e, 0x74,
+ 0x2d, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x29, 0x3b, 0x20, 0x70, 0x61,
+ 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x31, 0x30, 0x70, 0x78, 0x3b,
+ 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0xe2,
+ 0x9a, 0xa0, 0xef, 0xb8, 0x8f, 0x20, 0x43, 0x68, 0x61, 0x72, 0x74, 0x20,
+ 0x6c, 0x69, 0x62, 0x72, 0x61, 0x72, 0x79, 0x20, 0x6e, 0x6f, 0x74, 0x20,
+ 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x3c, 0x62, 0x72, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x43, 0x68, 0x65, 0x63, 0x6b,
+ 0x3a, 0x20, 0x2f, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x67, 0x72, 0x61, 0x70,
+ 0x68, 0x2f, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68,
+ 0x2e, 0x6a, 0x73, 0x3c, 0x62, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x6d, 0x61, 0x6c, 0x6c, 0x3e, 0x52,
+ 0x65, 0x61, 0x6c, 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x65, 0x76, 0x65,
+ 0x6e, 0x74, 0x20, 0x76, 0x69, 0x73, 0x75, 0x61, 0x6c, 0x69, 0x7a, 0x61,
+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x6e, 0x61, 0x76, 0x61, 0x69, 0x6c,
+ 0x61, 0x62, 0x6c, 0x65, 0x3c, 0x2f, 0x73, 0x6d, 0x61, 0x6c, 0x6c, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x60, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65,
+ 0x61, 0x74, 0x65, 0x20, 0x73, 0x74, 0x75, 0x62, 0x20, 0x65, 0x6c, 0x65,
+ 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x74,
+ 0x68, 0x65, 0x20, 0x63, 0x68, 0x61, 0x72, 0x74, 0x20, 0x65, 0x78, 0x70,
+ 0x65, 0x63, 0x74, 0x73, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x69, 0x6e, 0x66,
+ 0x6f, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
+ 0x43, 0x68, 0x61, 0x72, 0x74, 0x53, 0x74, 0x75, 0x62, 0x45, 0x6c, 0x65,
+ 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x28, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
+ 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x72, 0x65, 0x61, 0x74,
+ 0x69, 0x6e, 0x67, 0x20, 0x41, 0x53, 0x43, 0x49, 0x49, 0x42, 0x61, 0x72,
+ 0x43, 0x68, 0x61, 0x72, 0x74, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e,
+ 0x63, 0x65, 0x2e, 0x2e, 0x2e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c,
+ 0x69, 0x7a, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x68, 0x61, 0x72,
+ 0x74, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x63, 0x6f, 0x72, 0x72, 0x65,
+ 0x63, 0x74, 0x20, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72,
+ 0x73, 0x20, 0x62, 0x61, 0x73, 0x65, 0x64, 0x20, 0x6f, 0x6e, 0x20, 0x74,
+ 0x65, 0x78, 0x74, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x2e, 0x6a, 0x73,
+ 0x20, 0x41, 0x50, 0x49, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x61, 0x74, 0x65, 0x43, 0x68,
+ 0x61, 0x72, 0x74, 0x20, 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x41, 0x53,
+ 0x43, 0x49, 0x49, 0x42, 0x61, 0x72, 0x43, 0x68, 0x61, 0x72, 0x74, 0x28,
+ 0x27, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2d, 0x72, 0x61, 0x74, 0x65, 0x2d,
+ 0x63, 0x68, 0x61, 0x72, 0x74, 0x27, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6d, 0x61,
- 0x78, 0x44, 0x61, 0x74, 0x61, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x3a,
- 0x20, 0x37, 0x36, 0x2c, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x53, 0x68, 0x6f, 0x77, 0x20, 0x6c, 0x61, 0x73, 0x74, 0x20, 0x37,
- 0x36, 0x20, 0x62, 0x69, 0x6e, 0x73, 0x20, 0x28, 0x35, 0x2b, 0x20, 0x6d,
- 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x68, 0x69,
- 0x73, 0x74, 0x6f, 0x72, 0x79, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x69, 0x74, 0x6c, 0x65,
- 0x3a, 0x20, 0x27, 0x4e, 0x65, 0x77, 0x20, 0x45, 0x76, 0x65, 0x6e, 0x74,
+ 0x78, 0x48, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3a, 0x20, 0x31, 0x31, 0x2c,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x43, 0x68, 0x61, 0x72, 0x74, 0x20, 0x68, 0x65, 0x69, 0x67, 0x68,
+ 0x74, 0x20, 0x69, 0x6e, 0x20, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6d,
+ 0x61, 0x78, 0x44, 0x61, 0x74, 0x61, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x73,
+ 0x3a, 0x20, 0x37, 0x36, 0x2c, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
+ 0x2f, 0x20, 0x53, 0x68, 0x6f, 0x77, 0x20, 0x6c, 0x61, 0x73, 0x74, 0x20,
+ 0x37, 0x36, 0x20, 0x62, 0x69, 0x6e, 0x73, 0x20, 0x28, 0x35, 0x2b, 0x20,
+ 0x6d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x68,
+ 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x69, 0x74, 0x6c,
+ 0x65, 0x3a, 0x20, 0x27, 0x4e, 0x65, 0x77, 0x20, 0x42, 0x6c, 0x6f, 0x62,
0x73, 0x27, 0x2c, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x68, 0x61,
0x72, 0x74, 0x20, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x78, 0x41, 0x78,
@@ -14146,7 +14138,7 @@ static const unsigned char embedded_index_js[] = {
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x3a, 0x20, 0x60, 0x54, 0x65,
0x73, 0x74, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x66, 0x72, 0x6f,
- 0x6d, 0x20, 0x43, 0x2d, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x41, 0x64,
+ 0x6d, 0x20, 0x42, 0x6c, 0x6f, 0x73, 0x73, 0x6f, 0x6d, 0x20, 0x41, 0x64,
0x6d, 0x69, 0x6e, 0x20, 0x41, 0x50, 0x49, 0x20, 0x61, 0x74, 0x20, 0x24,
0x7b, 0x6e, 0x65, 0x77, 0x20, 0x44, 0x61, 0x74, 0x65, 0x28, 0x29, 0x2e,
0x74, 0x6f, 0x49, 0x53, 0x4f, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28,
@@ -15233,170 +15225,172 @@ static const unsigned char embedded_index_js[] = {
0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x3d, 0x20,
0x72, 0x65, 0x6c, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x6e, 0x61,
- 0x6d, 0x65, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x43, 0x2d, 0x52, 0x65, 0x6c,
- 0x61, 0x79, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x6d, 0x65, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x42, 0x6c, 0x6f, 0x73, 0x73,
+ 0x6f, 0x6d, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
0x73, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x44, 0x65, 0x73, 0x63,
0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x72, 0x65,
0x6c, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x64, 0x65, 0x73, 0x63,
0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x7c, 0x7c, 0x20, 0x27,
- 0x4e, 0x6f, 0x73, 0x74, 0x72, 0x20, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x27,
- 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x6f,
- 0x6e, 0x76, 0x65, 0x72, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20,
- 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x6e, 0x70,
- 0x75, 0x62, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x20, 0x3d, 0x20, 0x27,
- 0x4c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x2e, 0x2e, 0x2e, 0x27, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x6c,
- 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x20,
- 0x3d, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x4e, 0x6f, 0x73,
- 0x74, 0x72, 0x54, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x6e, 0x69, 0x70, 0x31,
- 0x39, 0x2e, 0x6e, 0x70, 0x75, 0x62, 0x45, 0x6e, 0x63, 0x6f, 0x64, 0x65,
- 0x28, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
- 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64,
- 0x20, 0x74, 0x6f, 0x20, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x20, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20,
- 0x74, 0x6f, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x3a, 0x27, 0x2c, 0x20, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62,
- 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b,
- 0x65, 0x79, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
- 0x28, 0x30, 0x2c, 0x20, 0x31, 0x36, 0x29, 0x20, 0x2b, 0x20, 0x27, 0x2e,
- 0x2e, 0x2e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x20,
- 0x6e, 0x70, 0x75, 0x62, 0x20, 0x69, 0x6e, 0x74, 0x6f, 0x20, 0x33, 0x20,
- 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x6f, 0x66, 0x20, 0x32, 0x31, 0x20,
- 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x73, 0x20, 0x65,
- 0x61, 0x63, 0x68, 0x2c, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x73, 0x70,
- 0x61, 0x63, 0x65, 0x73, 0x20, 0x64, 0x69, 0x76, 0x69, 0x64, 0x69, 0x6e,
- 0x67, 0x20, 0x65, 0x61, 0x63, 0x68, 0x20, 0x6c, 0x69, 0x6e, 0x65, 0x20,
- 0x69, 0x6e, 0x74, 0x6f, 0x20, 0x33, 0x20, 0x67, 0x72, 0x6f, 0x75, 0x70,
- 0x73, 0x20, 0x6f, 0x66, 0x20, 0x37, 0x20, 0x63, 0x68, 0x61, 0x72, 0x61,
- 0x63, 0x74, 0x65, 0x72, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65,
- 0x74, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x74, 0x65, 0x64, 0x4e,
- 0x70, 0x75, 0x62, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e,
- 0x70, 0x75, 0x62, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x2e, 0x6c,
- 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x36, 0x33,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6c, 0x69, 0x6e, 0x65, 0x31, 0x20,
- 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x2e,
- 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x30, 0x2c,
- 0x20, 0x37, 0x29, 0x20, 0x2b, 0x20, 0x27, 0x20, 0x27, 0x20, 0x2b, 0x20,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x2e, 0x73, 0x75,
- 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x37, 0x2c, 0x20, 0x31,
- 0x34, 0x29, 0x20, 0x2b, 0x20, 0x27, 0x20, 0x27, 0x20, 0x2b, 0x20, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x2e, 0x73, 0x75, 0x62,
- 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x31, 0x34, 0x2c, 0x20, 0x32,
- 0x31, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6c, 0x69, 0x6e, 0x65, 0x32, 0x20,
- 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x2e,
- 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x32, 0x31,
- 0x2c, 0x20, 0x32, 0x38, 0x29, 0x20, 0x2b, 0x20, 0x27, 0x20, 0x27, 0x20,
- 0x2b, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x2e,
- 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x32, 0x38,
- 0x2c, 0x20, 0x33, 0x35, 0x29, 0x20, 0x2b, 0x20, 0x27, 0x20, 0x27, 0x20,
- 0x2b, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x2e,
- 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x33, 0x35,
- 0x2c, 0x20, 0x34, 0x32, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6c, 0x69, 0x6e,
- 0x65, 0x33, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x70,
- 0x75, 0x62, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
- 0x28, 0x34, 0x32, 0x2c, 0x20, 0x34, 0x39, 0x29, 0x20, 0x2b, 0x20, 0x27,
- 0x20, 0x27, 0x20, 0x2b, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x70,
- 0x75, 0x62, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
- 0x28, 0x34, 0x39, 0x2c, 0x20, 0x35, 0x36, 0x29, 0x20, 0x2b, 0x20, 0x27,
- 0x20, 0x27, 0x20, 0x2b, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x70,
- 0x75, 0x62, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
- 0x28, 0x35, 0x36, 0x2c, 0x20, 0x36, 0x33, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
- 0x74, 0x65, 0x64, 0x4e, 0x70, 0x75, 0x62, 0x20, 0x3d, 0x20, 0x6c, 0x69,
- 0x6e, 0x65, 0x31, 0x20, 0x2b, 0x20, 0x27, 0x5c, 0x6e, 0x27, 0x20, 0x2b,
- 0x20, 0x6c, 0x69, 0x6e, 0x65, 0x32, 0x20, 0x2b, 0x20, 0x27, 0x5c, 0x6e,
- 0x27, 0x20, 0x2b, 0x20, 0x6c, 0x69, 0x6e, 0x65, 0x33, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
- 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65,
- 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x61,
- 0x6d, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x6c, 0x61,
- 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x45, 0x6c, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65,
- 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x74,
- 0x65, 0x64, 0x4e, 0x70, 0x75, 0x62, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20,
- 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x44, 0x65, 0x73, 0x63, 0x72,
- 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f,
- 0x2f, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x76, 0x61, 0x72,
- 0x69, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x74, 0x6f,
- 0x72, 0x65, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x69, 0x6e, 0x66,
- 0x6f, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x4e, 0x49, 0x50, 0x2d, 0x31,
- 0x31, 0x20, 0x6f, 0x72, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x0a,
- 0x6c, 0x65, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x49, 0x6e, 0x66,
- 0x6f, 0x44, 0x61, 0x74, 0x61, 0x20, 0x3d, 0x20, 0x6e, 0x75, 0x6c, 0x6c,
- 0x3b, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x48, 0x65, 0x6c, 0x70, 0x65, 0x72,
- 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f,
- 0x20, 0x67, 0x65, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x69,
- 0x6e, 0x66, 0x6f, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x73, 0x74, 0x6f,
- 0x72, 0x65, 0x64, 0x20, 0x64, 0x61, 0x74, 0x61, 0x0a, 0x66, 0x75, 0x6e,
- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x67, 0x65, 0x74, 0x52, 0x65, 0x6c,
- 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e,
- 0x20, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x64, 0x20, 0x72, 0x65, 0x6c, 0x61,
- 0x79, 0x20, 0x69, 0x6e, 0x66, 0x6f, 0x20, 0x69, 0x66, 0x20, 0x61, 0x76,
- 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x2c, 0x20, 0x6f, 0x74, 0x68,
- 0x65, 0x72, 0x77, 0x69, 0x73, 0x65, 0x20, 0x64, 0x65, 0x66, 0x61, 0x75,
- 0x6c, 0x74, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74,
- 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x72, 0x65, 0x6c, 0x61,
- 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x3b, 0x0a, 0x20,
+ 0x42, 0x6c, 0x6f, 0x62, 0x20, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65,
+ 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x27, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72,
+ 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x70, 0x75, 0x62, 0x6b,
+ 0x65, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79,
+ 0x4e, 0x70, 0x75, 0x62, 0x20, 0x3d, 0x20, 0x27, 0x4c, 0x6f, 0x61, 0x64,
+ 0x69, 0x6e, 0x67, 0x2e, 0x2e, 0x2e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75,
+ 0x62, 0x6b, 0x65, 0x79, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x20, 0x3d, 0x20, 0x77, 0x69,
+ 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x4e, 0x6f, 0x73, 0x74, 0x72, 0x54, 0x6f,
+ 0x6f, 0x6c, 0x73, 0x2e, 0x6e, 0x69, 0x70, 0x31, 0x39, 0x2e, 0x6e, 0x70,
+ 0x75, 0x62, 0x45, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x28, 0x72, 0x65, 0x6c,
+ 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74,
+ 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
+ 0x28, 0x27, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20,
+ 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79,
+ 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x6e,
+ 0x70, 0x75, 0x62, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72,
+ 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x20, 0x3d, 0x20, 0x72,
+ 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x73,
+ 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x30, 0x2c, 0x20,
+ 0x31, 0x36, 0x29, 0x20, 0x2b, 0x20, 0x27, 0x2e, 0x2e, 0x2e, 0x27, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x20, 0x76, 0x61, 0x6c,
- 0x75, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75,
- 0x72, 0x6e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x20, 0x27, 0x43, 0x2d, 0x52, 0x65,
- 0x6c, 0x61, 0x79, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x3a, 0x20, 0x27, 0x4e, 0x6f, 0x73, 0x74, 0x72, 0x20, 0x52, 0x65,
- 0x6c, 0x61, 0x79, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3a, 0x20, 0x72, 0x65,
- 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x55,
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x64,
+ 0x20, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x20, 0x6e, 0x70, 0x75, 0x62,
+ 0x20, 0x69, 0x6e, 0x74, 0x6f, 0x20, 0x33, 0x20, 0x6c, 0x69, 0x6e, 0x65,
+ 0x73, 0x20, 0x6f, 0x66, 0x20, 0x32, 0x31, 0x20, 0x63, 0x68, 0x61, 0x72,
+ 0x61, 0x63, 0x74, 0x65, 0x72, 0x73, 0x20, 0x65, 0x61, 0x63, 0x68, 0x2c,
+ 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73,
+ 0x20, 0x64, 0x69, 0x76, 0x69, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x61,
+ 0x63, 0x68, 0x20, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x69, 0x6e, 0x74, 0x6f,
+ 0x20, 0x33, 0x20, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x20, 0x6f, 0x66,
+ 0x20, 0x37, 0x20, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72,
+ 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x66, 0x6f,
+ 0x72, 0x6d, 0x61, 0x74, 0x74, 0x65, 0x64, 0x4e, 0x70, 0x75, 0x62, 0x20,
+ 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x6c,
+ 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74,
+ 0x68, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x36, 0x33, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x6c, 0x69, 0x6e, 0x65, 0x31, 0x20, 0x3d, 0x20, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x2e, 0x73, 0x75, 0x62, 0x73,
+ 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x30, 0x2c, 0x20, 0x37, 0x29, 0x20,
+ 0x2b, 0x20, 0x27, 0x20, 0x27, 0x20, 0x2b, 0x20, 0x72, 0x65, 0x6c, 0x61,
+ 0x79, 0x4e, 0x70, 0x75, 0x62, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72,
+ 0x69, 0x6e, 0x67, 0x28, 0x37, 0x2c, 0x20, 0x31, 0x34, 0x29, 0x20, 0x2b,
+ 0x20, 0x27, 0x20, 0x27, 0x20, 0x2b, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79,
+ 0x4e, 0x70, 0x75, 0x62, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69,
+ 0x6e, 0x67, 0x28, 0x31, 0x34, 0x2c, 0x20, 0x32, 0x31, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x6c, 0x69, 0x6e, 0x65, 0x32, 0x20, 0x3d, 0x20, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x2e, 0x73, 0x75, 0x62, 0x73,
+ 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x32, 0x31, 0x2c, 0x20, 0x32, 0x38,
+ 0x29, 0x20, 0x2b, 0x20, 0x27, 0x20, 0x27, 0x20, 0x2b, 0x20, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x2e, 0x73, 0x75, 0x62, 0x73,
+ 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x32, 0x38, 0x2c, 0x20, 0x33, 0x35,
+ 0x29, 0x20, 0x2b, 0x20, 0x27, 0x20, 0x27, 0x20, 0x2b, 0x20, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x2e, 0x73, 0x75, 0x62, 0x73,
+ 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x33, 0x35, 0x2c, 0x20, 0x34, 0x32,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6c, 0x69, 0x6e, 0x65, 0x33, 0x20, 0x3d,
+ 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x2e, 0x73,
+ 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x34, 0x32, 0x2c,
+ 0x20, 0x34, 0x39, 0x29, 0x20, 0x2b, 0x20, 0x27, 0x20, 0x27, 0x20, 0x2b,
+ 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x2e, 0x73,
+ 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x34, 0x39, 0x2c,
+ 0x20, 0x35, 0x36, 0x29, 0x20, 0x2b, 0x20, 0x27, 0x20, 0x27, 0x20, 0x2b,
+ 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x70, 0x75, 0x62, 0x2e, 0x73,
+ 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x35, 0x36, 0x2c,
+ 0x20, 0x36, 0x33, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x74, 0x65, 0x64, 0x4e,
+ 0x70, 0x75, 0x62, 0x20, 0x3d, 0x20, 0x6c, 0x69, 0x6e, 0x65, 0x31, 0x20,
+ 0x2b, 0x20, 0x27, 0x5c, 0x6e, 0x27, 0x20, 0x2b, 0x20, 0x6c, 0x69, 0x6e,
+ 0x65, 0x32, 0x20, 0x2b, 0x20, 0x27, 0x5c, 0x6e, 0x27, 0x20, 0x2b, 0x20,
+ 0x6c, 0x69, 0x6e, 0x65, 0x33, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e,
+ 0x61, 0x6d, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x74,
+ 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d,
+ 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62,
+ 0x6b, 0x65, 0x79, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x74,
+ 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d,
+ 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x74, 0x65, 0x64, 0x4e, 0x70,
+ 0x75, 0x62, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x6c, 0x61,
+ 0x79, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
+ 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x74, 0x65, 0x78, 0x74,
+ 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
+ 0x6f, 0x6e, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x47, 0x6c,
+ 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c,
+ 0x65, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x20, 0x72,
+ 0x65, 0x6c, 0x61, 0x79, 0x20, 0x69, 0x6e, 0x66, 0x6f, 0x20, 0x66, 0x72,
+ 0x6f, 0x6d, 0x20, 0x4e, 0x49, 0x50, 0x2d, 0x31, 0x31, 0x20, 0x6f, 0x72,
+ 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x0a, 0x6c, 0x65, 0x74, 0x20,
+ 0x72, 0x65, 0x6c, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74,
+ 0x61, 0x20, 0x3d, 0x20, 0x6e, 0x75, 0x6c, 0x6c, 0x3b, 0x0a, 0x0a, 0x2f,
+ 0x2f, 0x20, 0x48, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x20, 0x66, 0x75, 0x6e,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x65, 0x74,
0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x69, 0x6e, 0x66, 0x6f, 0x20,
- 0x77, 0x68, 0x65, 0x6e, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20,
- 0x69, 0x73, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x0a, 0x66, 0x75,
- 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x79,
- 0x49, 0x6e, 0x66, 0x6f, 0x28, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44,
- 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69,
- 0x66, 0x20, 0x28, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x61, 0x74,
- 0x61, 0x20, 0x26, 0x26, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44,
- 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x45,
- 0x78, 0x74, 0x72, 0x61, 0x63, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79,
- 0x20, 0x69, 0x6e, 0x66, 0x6f, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x63,
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x2d,
- 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x62, 0x6f, 0x74, 0x68,
- 0x20, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x61, 0x6e, 0x64, 0x20,
- 0x61, 0x72, 0x72, 0x61, 0x79, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
- 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65,
- 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x20,
- 0x3d, 0x20, 0x27, 0x43, 0x2d, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x27, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74,
- 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69,
- 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x27, 0x4e, 0x6f, 0x73,
- 0x74, 0x72, 0x20, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x27, 0x3b, 0x0a, 0x20,
+ 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x64, 0x20,
+ 0x64, 0x61, 0x74, 0x61, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x67, 0x65, 0x74, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x49, 0x6e,
+ 0x66, 0x6f, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f,
+ 0x2f, 0x20, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x73, 0x74, 0x6f,
+ 0x72, 0x65, 0x64, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x69, 0x6e,
+ 0x66, 0x6f, 0x20, 0x69, 0x66, 0x20, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61,
+ 0x62, 0x6c, 0x65, 0x2c, 0x20, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x77, 0x69,
+ 0x73, 0x65, 0x20, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x73, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x6c, 0x61,
+ 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74,
+ 0x75, 0x72, 0x6e, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x49, 0x6e, 0x66,
+ 0x6f, 0x44, 0x61, 0x74, 0x61, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x44, 0x65, 0x66,
+ 0x61, 0x75, 0x6c, 0x74, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6e, 0x61, 0x6d,
+ 0x65, 0x3a, 0x20, 0x27, 0x42, 0x6c, 0x6f, 0x73, 0x73, 0x6f, 0x6d, 0x27,
+ 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x65,
+ 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x20, 0x27,
+ 0x42, 0x6c, 0x6f, 0x62, 0x20, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65,
+ 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x27, 0x2c, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x3a, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a,
+ 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x73, 0x74,
+ 0x6f, 0x72, 0x65, 0x64, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x69,
+ 0x6e, 0x66, 0x6f, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x63, 0x6f, 0x6e,
+ 0x66, 0x69, 0x67, 0x20, 0x69, 0x73, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65,
+ 0x64, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x75,
+ 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x64, 0x52,
+ 0x65, 0x6c, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x28, 0x63, 0x6f, 0x6e,
+ 0x66, 0x69, 0x67, 0x44, 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x63, 0x6f, 0x6e, 0x66, 0x69,
+ 0x67, 0x44, 0x61, 0x74, 0x61, 0x20, 0x26, 0x26, 0x20, 0x63, 0x6f, 0x6e,
+ 0x66, 0x69, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x45, 0x78, 0x74, 0x72, 0x61, 0x63, 0x74, 0x20, 0x72,
+ 0x65, 0x6c, 0x61, 0x79, 0x20, 0x69, 0x6e, 0x66, 0x6f, 0x20, 0x66, 0x72,
+ 0x6f, 0x6d, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x64, 0x61,
+ 0x74, 0x61, 0x20, 0x2d, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20,
+ 0x62, 0x6f, 0x74, 0x68, 0x20, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
+ 0x61, 0x6e, 0x64, 0x20, 0x61, 0x72, 0x72, 0x61, 0x79, 0x20, 0x66, 0x6f,
+ 0x72, 0x6d, 0x61, 0x74, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e,
+ 0x61, 0x6d, 0x65, 0x20, 0x3d, 0x20, 0x27, 0x42, 0x6c, 0x6f, 0x73, 0x73,
+ 0x6f, 0x6d, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x6c, 0x65, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x44, 0x65,
+ 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20,
+ 0x27, 0x42, 0x6c, 0x6f, 0x62, 0x20, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67,
+ 0x65, 0x20, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x27, 0x3b, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x41, 0x72, 0x72, 0x61,
0x79, 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x28, 0x63, 0x6f,
@@ -15414,7 +15408,7 @@ static const unsigned char embedded_index_js[] = {
0x65, 0x6d, 0x2e, 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27,
0x72, 0x65, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x27, 0x29,
0x3f, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x7c, 0x7c, 0x20, 0x27,
- 0x43, 0x2d, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x27, 0x3b, 0x0a, 0x20, 0x20,
+ 0x42, 0x6c, 0x6f, 0x73, 0x73, 0x6f, 0x6d, 0x27, 0x3b, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
0x6c, 0x61, 0x79, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44,
@@ -15423,1650 +15417,1671 @@ static const unsigned char embedded_index_js[] = {
0x65, 0x6d, 0x2e, 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27,
0x72, 0x65, 0x6c, 0x61, 0x79, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69,
0x70, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x29, 0x3f, 0x2e, 0x76, 0x61, 0x6c,
- 0x75, 0x65, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x4e, 0x6f, 0x73, 0x74, 0x72,
- 0x20, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
- 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x3a, 0x20, 0x7b, 0x6b, 0x65, 0x79,
- 0x31, 0x3a, 0x20, 0x27, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x31, 0x27, 0x2c,
- 0x20, 0x6b, 0x65, 0x79, 0x32, 0x3a, 0x20, 0x27, 0x76, 0x61, 0x6c, 0x75,
- 0x65, 0x32, 0x27, 0x2c, 0x20, 0x2e, 0x2e, 0x2e, 0x7d, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
- 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x3d, 0x20, 0x63, 0x6f,
- 0x6e, 0x66, 0x69, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
- 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x43, 0x2d, 0x52, 0x65, 0x6c, 0x61, 0x79,
- 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x44, 0x65, 0x73, 0x63,
- 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x63, 0x6f,
- 0x6e, 0x66, 0x69, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x5f, 0x64, 0x65, 0x73, 0x63,
- 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x7c, 0x7c, 0x20, 0x27,
- 0x4e, 0x6f, 0x73, 0x74, 0x72, 0x20, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x27,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x6c,
- 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x61, 0x74, 0x61, 0x20, 0x3d,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x20, 0x72, 0x65, 0x6c,
- 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x65, 0x73, 0x63,
- 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x20, 0x72, 0x65, 0x6c,
- 0x61, 0x79, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3a, 0x20, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x3b, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x20,
- 0x69, 0x6d, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x74, 0x65, 0x6c, 0x79, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x49,
- 0x6e, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x28, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x48,
- 0x65, 0x6c, 0x70, 0x65, 0x72, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x65, 0x74, 0x20, 0x72, 0x65,
- 0x6c, 0x61, 0x79, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x0a, 0x66,
- 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x67, 0x65, 0x74, 0x52,
- 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x28, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x73,
- 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69,
- 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x20, 0x66, 0x65, 0x74, 0x63, 0x68, 0x65,
- 0x64, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x70, 0x75, 0x62, 0x6b,
- 0x65, 0x79, 0x20, 0x69, 0x66, 0x20, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61,
- 0x62, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72,
- 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50,
- 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4e, 0x6f, 0x20,
- 0x66, 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b, 0x20, 0x2d, 0x20, 0x74,
- 0x68, 0x72, 0x6f, 0x77, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x69,
- 0x66, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x70, 0x75, 0x62, 0x6b,
- 0x65, 0x79, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x76, 0x61, 0x69, 0x6c,
- 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72,
- 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x28, 0x27, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x70, 0x75, 0x62, 0x6b,
- 0x65, 0x79, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x76, 0x61, 0x69, 0x6c,
- 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x20, 0x50, 0x6c, 0x65, 0x61, 0x73, 0x65,
- 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x20, 0x74, 0x6f, 0x20,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x66, 0x69, 0x72, 0x73, 0x74, 0x2e,
- 0x27, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x45, 0x6e,
- 0x68, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c,
- 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
- 0x65, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x20, 0x74, 0x6f,
- 0x20, 0x63, 0x61, 0x70, 0x74, 0x75, 0x72, 0x65, 0x20, 0x74, 0x65, 0x73,
- 0x74, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x0a,
- 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x65, 0x6e, 0x68,
- 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x46, 0x6f, 0x72, 0x54,
- 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65,
- 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x73,
- 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x70, 0x61, 0x72,
- 0x73, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74,
- 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x2c, 0x20, 0x73, 0x6f, 0x20, 0x77,
- 0x65, 0x20, 0x6a, 0x75, 0x73, 0x74, 0x20, 0x6e, 0x65, 0x65, 0x64, 0x20,
- 0x74, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x65, 0x6e,
- 0x73, 0x75, 0x72, 0x65, 0x20, 0x6f, 0x75, 0x72, 0x20, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x73, 0x20,
- 0x6c, 0x6f, 0x67, 0x20, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x70, 0x72, 0x69,
- 0x61, 0x74, 0x65, 0x6c, 0x79, 0x2e, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20,
- 0x69, 0x73, 0x20, 0x61, 0x6c, 0x72, 0x65, 0x61, 0x64, 0x79, 0x20, 0x64,
- 0x6f, 0x6e, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x69,
- 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
- 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6f, 0x6e, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x20, 0x63, 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b, 0x2e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
- 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65,
- 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x65, 0x6e, 0x68, 0x61, 0x6e, 0x63, 0x65,
- 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e,
- 0x67, 0x20, 0x2d, 0x20, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69,
- 0x63, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x68, 0x61,
- 0x6e, 0x64, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x6e, 0x61, 0x62, 0x6c,
- 0x65, 0x64, 0x27, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20,
- 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x20, 0x72, 0x61, 0x6e,
- 0x64, 0x6f, 0x6d, 0x20, 0x74, 0x65, 0x73, 0x74, 0x20, 0x70, 0x75, 0x62,
- 0x6b, 0x65, 0x79, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x67, 0x65,
- 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d,
- 0x54, 0x65, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x28, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x47, 0x65, 0x6e, 0x65, 0x72,
- 0x61, 0x74, 0x65, 0x20, 0x33, 0x32, 0x20, 0x72, 0x61, 0x6e, 0x64, 0x6f,
- 0x6d, 0x20, 0x62, 0x79, 0x74, 0x65, 0x73, 0x20, 0x28, 0x36, 0x34, 0x20,
- 0x68, 0x65, 0x78, 0x20, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65,
- 0x72, 0x73, 0x29, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x61, 0x20, 0x76, 0x61,
- 0x6c, 0x69, 0x64, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x61, 0x6e,
- 0x64, 0x6f, 0x6d, 0x42, 0x79, 0x74, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x6e,
- 0x65, 0x77, 0x20, 0x55, 0x69, 0x6e, 0x74, 0x38, 0x41, 0x72, 0x72, 0x61,
- 0x79, 0x28, 0x33, 0x32, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x72, 0x79, 0x70, 0x74, 0x6f, 0x2e, 0x67, 0x65, 0x74, 0x52, 0x61, 0x6e,
- 0x64, 0x6f, 0x6d, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x28, 0x72, 0x61,
- 0x6e, 0x64, 0x6f, 0x6d, 0x42, 0x79, 0x74, 0x65, 0x73, 0x29, 0x3b, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x6f, 0x6e, 0x76,
- 0x65, 0x72, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x68, 0x65, 0x78, 0x20, 0x73,
- 0x74, 0x72, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x68, 0x65, 0x78, 0x50, 0x75, 0x62, 0x6b, 0x65,
- 0x79, 0x20, 0x3d, 0x20, 0x41, 0x72, 0x72, 0x61, 0x79, 0x2e, 0x66, 0x72,
- 0x6f, 0x6d, 0x28, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x42, 0x79, 0x74,
- 0x65, 0x73, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2e, 0x6d, 0x61, 0x70, 0x28, 0x62, 0x20, 0x3d, 0x3e, 0x20, 0x62, 0x2e,
- 0x74, 0x6f, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x31, 0x36, 0x29,
- 0x2e, 0x70, 0x61, 0x64, 0x53, 0x74, 0x61, 0x72, 0x74, 0x28, 0x32, 0x2c,
- 0x20, 0x27, 0x30, 0x27, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2e, 0x6a, 0x6f, 0x69, 0x6e, 0x28, 0x27, 0x27, 0x29,
- 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x65,
- 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61,
- 0x74, 0x65, 0x64, 0x20, 0x6b, 0x65, 0x79, 0x20, 0x69, 0x6e, 0x20, 0x74,
- 0x68, 0x65, 0x20, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x66, 0x69, 0x65,
- 0x6c, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x74, 0x65, 0x73, 0x74, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x49,
- 0x6e, 0x70, 0x75, 0x74, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x74, 0x65, 0x73, 0x74,
- 0x2d, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2d, 0x69, 0x6e, 0x70, 0x75,
- 0x74, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x74, 0x65, 0x73, 0x74, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x49,
- 0x6e, 0x70, 0x75, 0x74, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x74, 0x65, 0x73, 0x74, 0x50, 0x75, 0x62, 0x6b,
- 0x65, 0x79, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x2e, 0x76, 0x61, 0x6c, 0x75,
- 0x65, 0x20, 0x3d, 0x20, 0x68, 0x65, 0x78, 0x50, 0x75, 0x62, 0x6b, 0x65,
- 0x79, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c,
- 0x6f, 0x67, 0x54, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28,
- 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x2c, 0x20, 0x60, 0x47, 0x65, 0x6e,
- 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x72, 0x61, 0x6e, 0x64, 0x6f,
- 0x6d, 0x20, 0x74, 0x65, 0x73, 0x74, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65,
- 0x79, 0x3a, 0x20, 0x24, 0x7b, 0x68, 0x65, 0x78, 0x50, 0x75, 0x62, 0x6b,
- 0x65, 0x79, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
- 0x28, 0x30, 0x2c, 0x20, 0x31, 0x36, 0x29, 0x7d, 0x2e, 0x2e, 0x2e, 0x60,
- 0x2c, 0x20, 0x27, 0x4b, 0x45, 0x59, 0x47, 0x45, 0x4e, 0x27, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x68, 0x65, 0x78, 0x50, 0x75,
- 0x62, 0x6b, 0x65, 0x79, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20,
+ 0x75, 0x65, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x42, 0x6c, 0x6f, 0x62, 0x20,
+ 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x20, 0x53, 0x65, 0x72, 0x76,
+ 0x65, 0x72, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x66, 0x6f, 0x72, 0x6d,
+ 0x61, 0x74, 0x3a, 0x20, 0x7b, 0x6b, 0x65, 0x79, 0x31, 0x3a, 0x20, 0x27,
+ 0x76, 0x61, 0x6c, 0x75, 0x65, 0x31, 0x27, 0x2c, 0x20, 0x6b, 0x65, 0x79,
+ 0x32, 0x3a, 0x20, 0x27, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x32, 0x27, 0x2c,
+ 0x20, 0x2e, 0x2e, 0x2e, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e,
+ 0x61, 0x6d, 0x65, 0x20, 0x3d, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
+ 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x7c, 0x7c, 0x20,
+ 0x27, 0x42, 0x6c, 0x6f, 0x73, 0x73, 0x6f, 0x6d, 0x27, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72,
+ 0x65, 0x6c, 0x61, 0x79, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
+ 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
+ 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
+ 0x69, 0x6f, 0x6e, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x42, 0x6c, 0x6f, 0x62,
+ 0x20, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x20, 0x53, 0x65, 0x72,
+ 0x76, 0x65, 0x72, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x44, 0x61,
+ 0x74, 0x61, 0x20, 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3a,
+ 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x2c, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x3a,
+ 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69,
+ 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x3a, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b,
+ 0x65, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
+ 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x68, 0x65, 0x61,
+ 0x64, 0x65, 0x72, 0x20, 0x69, 0x6d, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x74,
+ 0x65, 0x6c, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x49,
+ 0x6e, 0x66, 0x6f, 0x49, 0x6e, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x28,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a,
+ 0x2f, 0x2f, 0x20, 0x48, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x20, 0x66, 0x75,
+ 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x65,
+ 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x70, 0x75, 0x62, 0x6b,
+ 0x65, 0x79, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
+ 0x67, 0x65, 0x74, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b,
+ 0x65, 0x79, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f,
+ 0x2f, 0x20, 0x55, 0x73, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x64, 0x79,
+ 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x20, 0x66, 0x65,
+ 0x74, 0x63, 0x68, 0x65, 0x64, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20,
+ 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x69, 0x66, 0x20, 0x61, 0x76,
+ 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62,
+ 0x6b, 0x65, 0x79, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x4e, 0x6f, 0x20, 0x66, 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b,
+ 0x20, 0x2d, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x20, 0x69, 0x66, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20,
+ 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61,
+ 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20,
+ 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61,
+ 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x20, 0x50, 0x6c,
+ 0x65, 0x61, 0x73, 0x65, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
+ 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x66, 0x69,
+ 0x72, 0x73, 0x74, 0x2e, 0x27, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f,
+ 0x2f, 0x20, 0x45, 0x6e, 0x68, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x20, 0x53,
+ 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x6d, 0x65,
+ 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65,
+ 0x72, 0x20, 0x74, 0x6f, 0x20, 0x63, 0x61, 0x70, 0x74, 0x75, 0x72, 0x65,
+ 0x20, 0x74, 0x65, 0x73, 0x74, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x73, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x20, 0x65, 0x6e, 0x68, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6f, 0x6f, 0x6c,
+ 0x46, 0x6f, 0x72, 0x54, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x28, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x69,
+ 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x68, 0x61, 0x6e,
+ 0x64, 0x6c, 0x65, 0x73, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
+ 0x20, 0x70, 0x61, 0x72, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x75, 0x74,
+ 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x2c, 0x20,
+ 0x73, 0x6f, 0x20, 0x77, 0x65, 0x20, 0x6a, 0x75, 0x73, 0x74, 0x20, 0x6e,
+ 0x65, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f,
+ 0x2f, 0x20, 0x65, 0x6e, 0x73, 0x75, 0x72, 0x65, 0x20, 0x6f, 0x75, 0x72,
+ 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c,
+ 0x65, 0x72, 0x73, 0x20, 0x6c, 0x6f, 0x67, 0x20, 0x61, 0x70, 0x70, 0x72,
+ 0x6f, 0x70, 0x72, 0x69, 0x61, 0x74, 0x65, 0x6c, 0x79, 0x2e, 0x20, 0x54,
+ 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x61, 0x6c, 0x72, 0x65, 0x61,
+ 0x64, 0x79, 0x20, 0x64, 0x6f, 0x6e, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x75,
+ 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6f,
+ 0x6e, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x63, 0x61, 0x6c, 0x6c, 0x62,
+ 0x61, 0x63, 0x6b, 0x2e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x53, 0x69,
+ 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x65, 0x6e, 0x68,
+ 0x61, 0x6e, 0x63, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x65,
+ 0x73, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x2d, 0x20, 0x61, 0x75, 0x74, 0x6f,
+ 0x6d, 0x61, 0x74, 0x69, 0x63, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
+ 0x65, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x65,
+ 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x27, 0x29, 0x3b, 0x0a, 0x7d, 0x0a,
+ 0x0a, 0x2f, 0x2f, 0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65,
+ 0x20, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x20, 0x74, 0x65, 0x73, 0x74,
+ 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x66, 0x75, 0x6e, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x61,
+ 0x6e, 0x64, 0x6f, 0x6d, 0x54, 0x65, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x28,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x47,
+ 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x20, 0x33, 0x32, 0x20, 0x72,
+ 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x20, 0x62, 0x79, 0x74, 0x65, 0x73, 0x20,
+ 0x28, 0x36, 0x34, 0x20, 0x68, 0x65, 0x78, 0x20, 0x63, 0x68, 0x61, 0x72,
+ 0x61, 0x63, 0x74, 0x65, 0x72, 0x73, 0x29, 0x20, 0x66, 0x6f, 0x72, 0x20,
+ 0x61, 0x20, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x20, 0x70, 0x75, 0x62, 0x6b,
+ 0x65, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
+ 0x20, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x42, 0x79, 0x74, 0x65, 0x73,
+ 0x20, 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x55, 0x69, 0x6e, 0x74, 0x38,
+ 0x41, 0x72, 0x72, 0x61, 0x79, 0x28, 0x33, 0x32, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x72, 0x79, 0x70, 0x74, 0x6f, 0x2e, 0x67, 0x65,
+ 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x56, 0x61, 0x6c, 0x75, 0x65,
+ 0x73, 0x28, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x42, 0x79, 0x74, 0x65,
+ 0x73, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x68,
+ 0x65, 0x78, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x68, 0x65, 0x78, 0x50,
+ 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x20, 0x41, 0x72, 0x72, 0x61,
+ 0x79, 0x2e, 0x66, 0x72, 0x6f, 0x6d, 0x28, 0x72, 0x61, 0x6e, 0x64, 0x6f,
+ 0x6d, 0x42, 0x79, 0x74, 0x65, 0x73, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2e, 0x6d, 0x61, 0x70, 0x28, 0x62, 0x20, 0x3d,
+ 0x3e, 0x20, 0x62, 0x2e, 0x74, 0x6f, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
+ 0x28, 0x31, 0x36, 0x29, 0x2e, 0x70, 0x61, 0x64, 0x53, 0x74, 0x61, 0x72,
+ 0x74, 0x28, 0x32, 0x2c, 0x20, 0x27, 0x30, 0x27, 0x29, 0x29, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2e, 0x6a, 0x6f, 0x69, 0x6e,
+ 0x28, 0x27, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f,
+ 0x2f, 0x20, 0x53, 0x65, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x67, 0x65,
+ 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x6b, 0x65, 0x79, 0x20,
+ 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x69, 0x6e, 0x70, 0x75, 0x74,
+ 0x20, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x65, 0x73, 0x74, 0x50, 0x75, 0x62,
+ 0x6b, 0x65, 0x79, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x3d, 0x20, 0x64,
+ 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45,
+ 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27,
+ 0x74, 0x65, 0x73, 0x74, 0x2d, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2d,
+ 0x69, 0x6e, 0x70, 0x75, 0x74, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x65, 0x73, 0x74, 0x50, 0x75, 0x62,
+ 0x6b, 0x65, 0x79, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x65, 0x73, 0x74,
+ 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x2e,
+ 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x68, 0x65, 0x78, 0x50,
+ 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x54, 0x65, 0x73, 0x74, 0x45, 0x76,
+ 0x65, 0x6e, 0x74, 0x28, 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x2c, 0x20,
+ 0x60, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x72,
+ 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x20, 0x74, 0x65, 0x73, 0x74, 0x20, 0x70,
+ 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3a, 0x20, 0x24, 0x7b, 0x68, 0x65, 0x78,
+ 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74,
+ 0x72, 0x69, 0x6e, 0x67, 0x28, 0x30, 0x2c, 0x20, 0x31, 0x36, 0x29, 0x7d,
+ 0x2e, 0x2e, 0x2e, 0x60, 0x2c, 0x20, 0x27, 0x4b, 0x45, 0x59, 0x47, 0x45,
+ 0x4e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x68,
+ 0x65, 0x78, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3b, 0x0a, 0x7d, 0x0a,
+ 0x0a, 0x2f, 0x2f, 0x20, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
- 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x0a, 0x2f, 0x2f, 0x20,
- 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x20, 0x53, 0x54, 0x41,
- 0x54, 0x49, 0x53, 0x54, 0x49, 0x43, 0x53, 0x20, 0x46, 0x55, 0x4e, 0x43,
- 0x54, 0x49, 0x4f, 0x4e, 0x53, 0x0a, 0x2f, 0x2f, 0x20, 0x3d, 0x3d, 0x3d,
+ 0x0a, 0x2f, 0x2f, 0x20, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45,
+ 0x20, 0x53, 0x54, 0x41, 0x54, 0x49, 0x53, 0x54, 0x49, 0x43, 0x53, 0x20,
+ 0x46, 0x55, 0x4e, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x53, 0x0a, 0x2f, 0x2f,
+ 0x20, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
- 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
- 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x53, 0x65,
- 0x6e, 0x64, 0x20, 0x72, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x20, 0x63,
- 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65,
- 0x73, 0x74, 0x61, 0x72, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x65,
- 0x6c, 0x61, 0x79, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x41, 0x64,
- 0x6d, 0x69, 0x6e, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x20,
- 0x41, 0x50, 0x49, 0x0a, 0x61, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x66, 0x75,
- 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x52,
- 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e,
- 0x64, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x21, 0x69, 0x73, 0x4c, 0x6f, 0x67, 0x67, 0x65, 0x64, 0x49,
- 0x6e, 0x20, 0x7c, 0x7c, 0x20, 0x21, 0x75, 0x73, 0x65, 0x72, 0x50, 0x75,
- 0x62, 0x6b, 0x65, 0x79, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x4d, 0x75, 0x73,
- 0x74, 0x20, 0x62, 0x65, 0x20, 0x6c, 0x6f, 0x67, 0x67, 0x65, 0x64, 0x20,
- 0x69, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65, 0x73, 0x74, 0x61, 0x72,
- 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x27, 0x2c, 0x20, 0x27, 0x45,
- 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69,
- 0x66, 0x20, 0x28, 0x21, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f,
- 0x6c, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65,
- 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x76, 0x61, 0x69,
- 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x27, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52,
- 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c,
- 0x6f, 0x67, 0x28, 0x27, 0x53, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x20,
- 0x72, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d,
- 0x61, 0x6e, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79,
- 0x2e, 0x2e, 0x2e, 0x27, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27,
- 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20, 0x63, 0x6f,
- 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x61, 0x72, 0x72, 0x61, 0x79, 0x20,
- 0x66, 0x6f, 0x72, 0x20, 0x72, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x61, 0x72,
- 0x72, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x5b, 0x22, 0x73, 0x79, 0x73, 0x74,
- 0x65, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x22, 0x2c,
- 0x20, 0x22, 0x72, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x22, 0x5d, 0x3b,
- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x45, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x20, 0x74, 0x68, 0x65,
- 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x61, 0x72, 0x72,
- 0x61, 0x79, 0x20, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6c, 0x79, 0x20,
- 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x4e, 0x49, 0x50, 0x2d, 0x34, 0x34,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x74, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64,
- 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x61,
- 0x77, 0x61, 0x69, 0x74, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74,
- 0x46, 0x6f, 0x72, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x28, 0x4a, 0x53, 0x4f,
- 0x4e, 0x2e, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x69, 0x66, 0x79, 0x28,
- 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x61, 0x72, 0x72, 0x61,
- 0x79, 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70,
- 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77,
- 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x46, 0x61, 0x69, 0x6c,
- 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70,
- 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x61, 0x72,
- 0x72, 0x61, 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20,
- 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x20,
- 0x32, 0x33, 0x34, 0x35, 0x36, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20,
- 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x65, 0x73, 0x74,
- 0x61, 0x72, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x3a, 0x20, 0x32, 0x33, 0x34, 0x35, 0x36,
- 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3a, 0x20, 0x75, 0x73,
- 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2c, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x72,
- 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x3a, 0x20, 0x4d, 0x61,
- 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f, 0x72, 0x28, 0x44, 0x61, 0x74,
- 0x65, 0x2e, 0x6e, 0x6f, 0x77, 0x28, 0x29, 0x20, 0x2f, 0x20, 0x31, 0x30,
- 0x30, 0x30, 0x29, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x67, 0x73, 0x3a, 0x20, 0x5b,
- 0x5b, 0x22, 0x70, 0x22, 0x2c, 0x20, 0x67, 0x65, 0x74, 0x52, 0x65, 0x6c,
- 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x28, 0x29, 0x5d, 0x5d,
- 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x3a, 0x20, 0x65,
- 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e,
- 0x74, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x74, 0x68, 0x65,
- 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73, 0x69, 0x67,
- 0x6e, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x61,
- 0x77, 0x61, 0x69, 0x74, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e,
- 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x45, 0x76,
- 0x65, 0x6e, 0x74, 0x28, 0x72, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x45,
- 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x73, 0x69, 0x67, 0x6e,
- 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x7c, 0x7c, 0x20, 0x21,
- 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x2e,
- 0x73, 0x69, 0x67, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77,
- 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27,
- 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x73, 0x69, 0x67, 0x6e, 0x69, 0x6e,
- 0x67, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x27, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x50, 0x75,
- 0x62, 0x6c, 0x69, 0x73, 0x68, 0x20, 0x76, 0x69, 0x61, 0x20, 0x53, 0x69,
- 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x75,
- 0x72, 0x6c, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x43, 0x6f,
- 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x72, 0x6c, 0x2e,
- 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x50,
- 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65,
- 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x70, 0x75, 0x62, 0x6c,
- 0x69, 0x73, 0x68, 0x28, 0x5b, 0x75, 0x72, 0x6c, 0x5d, 0x2c, 0x20, 0x73,
- 0x69, 0x67, 0x6e, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b,
- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x55, 0x73, 0x65, 0x20, 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65,
- 0x2e, 0x61, 0x6c, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x20,
- 0x74, 0x6f, 0x20, 0x63, 0x61, 0x70, 0x74, 0x75, 0x72, 0x65, 0x20, 0x70,
- 0x65, 0x72, 0x2d, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6f, 0x75, 0x74,
- 0x63, 0x6f, 0x6d, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x65, 0x73, 0x75,
- 0x6c, 0x74, 0x73, 0x20, 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20,
- 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x2e, 0x61, 0x6c, 0x6c, 0x53,
- 0x65, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x28, 0x70, 0x75, 0x62, 0x6c, 0x69,
- 0x73, 0x68, 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x73, 0x29, 0x3b,
- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x20, 0x69, 0x66, 0x20, 0x61, 0x6e,
- 0x79, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x61, 0x63, 0x63, 0x65,
- 0x70, 0x74, 0x65, 0x64, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c,
- 0x65, 0x74, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x43, 0x6f,
- 0x75, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x30, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73,
- 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x28, 0x72, 0x65,
- 0x73, 0x75, 0x6c, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x29,
- 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65,
- 0x73, 0x75, 0x6c, 0x74, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x20,
- 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x66, 0x75, 0x6c, 0x66, 0x69, 0x6c, 0x6c,
- 0x65, 0x64, 0x27, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73,
- 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x2b,
- 0x2b, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60,
- 0x52, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d,
- 0x61, 0x6e, 0x64, 0x20, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65,
- 0x64, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x66, 0x75, 0x6c,
- 0x6c, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20,
- 0x24, 0x7b, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x7d, 0x60, 0x2c, 0x20, 0x27,
- 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c,
- 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67,
- 0x28, 0x60, 0x52, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x20, 0x63, 0x6f,
- 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64,
- 0x20, 0x6f, 0x6e, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x24, 0x7b,
- 0x69, 0x6e, 0x64, 0x65, 0x78, 0x7d, 0x3a, 0x20, 0x24, 0x7b, 0x72, 0x65,
- 0x73, 0x75, 0x6c, 0x74, 0x2e, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x3f,
- 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x7c, 0x7c, 0x20,
- 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x2e, 0x72, 0x65, 0x61, 0x73, 0x6f,
- 0x6e, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73,
- 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x30,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x20, 0x3d,
- 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x2e, 0x6d, 0x61, 0x70,
- 0x28, 0x28, 0x72, 0x2c, 0x20, 0x69, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x60,
- 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x24, 0x7b, 0x69, 0x7d, 0x3a, 0x20,
- 0x24, 0x7b, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x3f, 0x2e,
- 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x7c, 0x7c, 0x20, 0x72,
- 0x2e, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x7d, 0x60, 0x29, 0x2e, 0x6a,
- 0x6f, 0x69, 0x6e, 0x28, 0x27, 0x3b, 0x20, 0x27, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74,
- 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x28, 0x60, 0x41, 0x6c, 0x6c, 0x20, 0x72, 0x65, 0x6c, 0x61,
- 0x79, 0x73, 0x20, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x65, 0x64, 0x20,
- 0x72, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d,
- 0x61, 0x6e, 0x64, 0x2e, 0x20, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73,
- 0x3a, 0x20, 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65, 0x74,
- 0x61, 0x69, 0x6c, 0x73, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x52, 0x65, 0x73,
- 0x74, 0x61, 0x72, 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
- 0x20, 0x73, 0x65, 0x6e, 0x74, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73,
- 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x20, 0x2d, 0x20, 0x72, 0x65, 0x6c,
- 0x61, 0x79, 0x20, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x72, 0x65,
- 0x73, 0x74, 0x61, 0x72, 0x74, 0x20, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x6c,
- 0x79, 0x2e, 0x2e, 0x2e, 0x27, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f,
- 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x63,
- 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x69, 0x6e, 0x64, 0x69,
- 0x63, 0x61, 0x74, 0x65, 0x20, 0x72, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74,
- 0x20, 0x69, 0x73, 0x20, 0x69, 0x6e, 0x20, 0x70, 0x72, 0x6f, 0x67, 0x72,
- 0x65, 0x73, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x43,
- 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61,
- 0x74, 0x75, 0x73, 0x28, 0x27, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
- 0x69, 0x6e, 0x67, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x43, 0x6f, 0x6e, 0x6e,
- 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
- 0x20, 0x3d, 0x20, 0x27, 0x52, 0x45, 0x53, 0x54, 0x41, 0x52, 0x54, 0x49,
- 0x4e, 0x47, 0x2e, 0x2e, 0x2e, 0x27, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x54, 0x68, 0x65, 0x20,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x64,
- 0x69, 0x73, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x20, 0x61, 0x6e,
- 0x64, 0x20, 0x6e, 0x65, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65,
- 0x20, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x65, 0x64,
- 0x20, 0x61, 0x66, 0x74, 0x65, 0x72, 0x20, 0x72, 0x65, 0x73, 0x74, 0x61,
- 0x72, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20,
- 0x62, 0x65, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x64, 0x20, 0x62,
- 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x57, 0x65, 0x62, 0x53, 0x6f, 0x63,
- 0x6b, 0x65, 0x74, 0x20, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x6e, 0x6e, 0x65,
- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68,
- 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60,
- 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x65,
- 0x6e, 0x64, 0x20, 0x72, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x20, 0x63,
- 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x3a, 0x20, 0x24, 0x7b, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x7d,
- 0x60, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x43, 0x6f, 0x6e, 0x6e,
- 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x28, 0x27, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x53,
- 0x65, 0x6e, 0x64, 0x20, 0x73, 0x74, 0x61, 0x74, 0x73, 0x5f, 0x71, 0x75,
- 0x65, 0x72, 0x79, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20,
- 0x74, 0x6f, 0x20, 0x67, 0x65, 0x74, 0x20, 0x64, 0x61, 0x74, 0x61, 0x62,
- 0x61, 0x73, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
- 0x63, 0x73, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x41, 0x64, 0x6d,
- 0x69, 0x6e, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x20, 0x41,
- 0x50, 0x49, 0x20, 0x28, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x20, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x73, 0x29, 0x0a, 0x61, 0x73, 0x79, 0x6e, 0x63, 0x20,
- 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x65, 0x6e,
- 0x64, 0x53, 0x74, 0x61, 0x74, 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x28,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
- 0x21, 0x69, 0x73, 0x4c, 0x6f, 0x67, 0x67, 0x65, 0x64, 0x49, 0x6e, 0x20,
- 0x7c, 0x7c, 0x20, 0x21, 0x75, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b,
- 0x65, 0x79, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x4d, 0x75, 0x73, 0x74, 0x20,
- 0x62, 0x65, 0x20, 0x6c, 0x6f, 0x67, 0x67, 0x65, 0x64, 0x20, 0x69, 0x6e,
- 0x20, 0x74, 0x6f, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x64, 0x61,
- 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69,
- 0x73, 0x74, 0x69, 0x63, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52,
- 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74,
- 0x73, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x27, 0x2c, 0x20, 0x27, 0x4e, 0x6f, 0x74, 0x20, 0x6c, 0x6f,
- 0x67, 0x67, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72,
- 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x72, 0x65, 0x6c, 0x61, 0x79,
- 0x50, 0x6f, 0x6f, 0x6c, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x53, 0x69, 0x6d,
- 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x63, 0x6f, 0x6e, 0x6e,
- 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x61,
- 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x27, 0x2c, 0x20, 0x27,
- 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
- 0x74, 0x61, 0x74, 0x73, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x27, 0x2c, 0x20, 0x27, 0x4e, 0x6f, 0x20,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74,
- 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73,
- 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6c, 0x6f, 0x61, 0x64,
- 0x69, 0x6e, 0x67, 0x27, 0x2c, 0x20, 0x27, 0x51, 0x75, 0x65, 0x72, 0x79,
- 0x69, 0x6e, 0x67, 0x20, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65,
- 0x2e, 0x2e, 0x2e, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x0a, 0x0a, 0x2f,
+ 0x2f, 0x20, 0x53, 0x65, 0x6e, 0x64, 0x20, 0x72, 0x65, 0x73, 0x74, 0x61,
+ 0x72, 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x74,
+ 0x6f, 0x20, 0x72, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x20, 0x74, 0x68,
+ 0x65, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x75, 0x73, 0x69, 0x6e,
+ 0x67, 0x20, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x69, 0x73, 0x74, 0x72, 0x61,
+ 0x74, 0x6f, 0x72, 0x20, 0x41, 0x50, 0x49, 0x0a, 0x61, 0x73, 0x79, 0x6e,
+ 0x63, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73,
+ 0x65, 0x6e, 0x64, 0x52, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x43, 0x6f,
+ 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x69, 0x73, 0x4c, 0x6f, 0x67,
+ 0x67, 0x65, 0x64, 0x49, 0x6e, 0x20, 0x7c, 0x7c, 0x20, 0x21, 0x75, 0x73,
+ 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28,
+ 0x27, 0x4d, 0x75, 0x73, 0x74, 0x20, 0x62, 0x65, 0x20, 0x6c, 0x6f, 0x67,
+ 0x67, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65,
+ 0x73, 0x74, 0x61, 0x72, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x27,
+ 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75,
+ 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x72, 0x65, 0x6c, 0x61,
+ 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x53, 0x69,
+ 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x63, 0x6f, 0x6e,
+ 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6e, 0x6f, 0x74, 0x20,
+ 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x27, 0x2c, 0x20,
+ 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x53, 0x65, 0x6e, 0x64,
+ 0x69, 0x6e, 0x67, 0x20, 0x72, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x20,
+ 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x72,
+ 0x65, 0x6c, 0x61, 0x79, 0x2e, 0x2e, 0x2e, 0x27, 0x2c, 0x20, 0x27, 0x49,
+ 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74,
0x65, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x61, 0x72,
- 0x72, 0x61, 0x79, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x73, 0x74, 0x61, 0x74,
- 0x73, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x6f,
- 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x61, 0x72, 0x72, 0x61, 0x79, 0x20,
- 0x3d, 0x20, 0x5b, 0x22, 0x73, 0x74, 0x61, 0x74, 0x73, 0x5f, 0x71, 0x75,
- 0x65, 0x72, 0x79, 0x22, 0x2c, 0x20, 0x22, 0x61, 0x6c, 0x6c, 0x22, 0x5d,
- 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x45, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x20, 0x74, 0x68,
- 0x65, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x61, 0x72,
- 0x72, 0x61, 0x79, 0x20, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6c, 0x79,
- 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x4e, 0x49, 0x50, 0x2d, 0x34,
- 0x34, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65,
- 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20,
- 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70,
- 0x74, 0x46, 0x6f, 0x72, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x28, 0x4a, 0x53,
- 0x4f, 0x4e, 0x2e, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x69, 0x66, 0x79,
- 0x28, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x61, 0x72, 0x72,
- 0x61, 0x79, 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x65, 0x6e, 0x63, 0x72, 0x79,
+ 0x72, 0x61, 0x79, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x72, 0x65, 0x73, 0x74,
+ 0x61, 0x72, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e,
+ 0x64, 0x5f, 0x61, 0x72, 0x72, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x5b, 0x22,
+ 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x61,
+ 0x6e, 0x64, 0x22, 0x2c, 0x20, 0x22, 0x72, 0x65, 0x73, 0x74, 0x61, 0x72,
+ 0x74, 0x22, 0x5d, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x45, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74,
+ 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
+ 0x20, 0x61, 0x72, 0x72, 0x61, 0x79, 0x20, 0x64, 0x69, 0x72, 0x65, 0x63,
+ 0x74, 0x6c, 0x79, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x4e, 0x49,
+ 0x50, 0x2d, 0x34, 0x34, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79,
0x70, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65,
- 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x46, 0x61, 0x69,
- 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79,
- 0x70, 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x61,
- 0x72, 0x72, 0x61, 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
- 0x20, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x20, 0x6b, 0x69, 0x6e, 0x64,
- 0x20, 0x32, 0x33, 0x34, 0x35, 0x36, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e,
- 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73, 0x74, 0x61,
- 0x74, 0x73, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x6b, 0x69, 0x6e, 0x64, 0x3a, 0x20, 0x32, 0x33, 0x34, 0x35, 0x36, 0x2c,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3a, 0x20, 0x75, 0x73, 0x65,
- 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2c, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x72, 0x65,
- 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x3a, 0x20, 0x4d, 0x61, 0x74,
- 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f, 0x72, 0x28, 0x44, 0x61, 0x74, 0x65,
- 0x2e, 0x6e, 0x6f, 0x77, 0x28, 0x29, 0x20, 0x2f, 0x20, 0x31, 0x30, 0x30,
- 0x30, 0x29, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x67, 0x73, 0x3a, 0x20, 0x5b, 0x5b,
- 0x22, 0x70, 0x22, 0x2c, 0x20, 0x67, 0x65, 0x74, 0x52, 0x65, 0x6c, 0x61,
- 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x28, 0x29, 0x5d, 0x5d, 0x2c,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x3a, 0x20, 0x65, 0x6e,
+ 0x20, 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x65, 0x6e, 0x63,
+ 0x72, 0x79, 0x70, 0x74, 0x46, 0x6f, 0x72, 0x52, 0x65, 0x6c, 0x61, 0x79,
+ 0x28, 0x4a, 0x53, 0x4f, 0x4e, 0x2e, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
+ 0x69, 0x66, 0x79, 0x28, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x5f,
+ 0x61, 0x72, 0x72, 0x61, 0x79, 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x65, 0x6e,
0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x74,
- 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20,
- 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73, 0x69, 0x67, 0x6e,
- 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x61, 0x77,
- 0x61, 0x69, 0x74, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x6e,
- 0x6f, 0x73, 0x74, 0x72, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x45, 0x76, 0x65,
- 0x6e, 0x74, 0x28, 0x73, 0x74, 0x61, 0x74, 0x73, 0x45, 0x76, 0x65, 0x6e,
- 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x66, 0x20, 0x28, 0x21, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x45,
- 0x76, 0x65, 0x6e, 0x74, 0x20, 0x7c, 0x7c, 0x20, 0x21, 0x73, 0x69, 0x67,
- 0x6e, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x69, 0x67,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65,
- 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x45, 0x76, 0x65,
- 0x6e, 0x74, 0x20, 0x73, 0x69, 0x67, 0x6e, 0x69, 0x6e, 0x67, 0x20, 0x66,
- 0x61, 0x69, 0x6c, 0x65, 0x64, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x53, 0x65, 0x6e,
- 0x64, 0x69, 0x6e, 0x67, 0x20, 0x73, 0x74, 0x61, 0x74, 0x73, 0x20, 0x71,
- 0x75, 0x65, 0x72, 0x79, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
- 0x2e, 0x2e, 0x2e, 0x27, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27,
- 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x20, 0x76,
- 0x69, 0x61, 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f,
- 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x75, 0x72, 0x6c, 0x20, 0x3d, 0x20, 0x72, 0x65,
- 0x6c, 0x61, 0x79, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f,
- 0x6e, 0x55, 0x72, 0x6c, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x74,
- 0x72, 0x69, 0x6d, 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x75, 0x62,
- 0x6c, 0x69, 0x73, 0x68, 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x73,
- 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c,
- 0x2e, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x28, 0x5b, 0x75, 0x72,
- 0x6c, 0x5d, 0x2c, 0x20, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x45, 0x76,
- 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x73, 0x65, 0x20, 0x50, 0x72,
- 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x2e, 0x61, 0x6c, 0x6c, 0x53, 0x65, 0x74,
- 0x74, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x63, 0x61, 0x70, 0x74,
- 0x75, 0x72, 0x65, 0x20, 0x70, 0x65, 0x72, 0x2d, 0x72, 0x65, 0x6c, 0x61,
- 0x79, 0x20, 0x6f, 0x75, 0x74, 0x63, 0x6f, 0x6d, 0x65, 0x73, 0x0a, 0x20,
+ 0x65, 0x6e, 0x74, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77,
+ 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27,
+ 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x65, 0x6e,
+ 0x63, 0x72, 0x79, 0x70, 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e,
+ 0x64, 0x20, 0x61, 0x72, 0x72, 0x61, 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65,
+ 0x61, 0x74, 0x65, 0x20, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x20, 0x6b,
+ 0x69, 0x6e, 0x64, 0x20, 0x32, 0x33, 0x34, 0x35, 0x36, 0x20, 0x61, 0x64,
+ 0x6d, 0x69, 0x6e, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x72, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74,
+ 0x20, 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x3a, 0x20, 0x32,
+ 0x33, 0x34, 0x35, 0x36, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x3a, 0x20, 0x75, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74,
+ 0x3a, 0x20, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f, 0x72,
+ 0x28, 0x44, 0x61, 0x74, 0x65, 0x2e, 0x6e, 0x6f, 0x77, 0x28, 0x29, 0x20,
+ 0x2f, 0x20, 0x31, 0x30, 0x30, 0x30, 0x29, 0x2c, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x67,
+ 0x73, 0x3a, 0x20, 0x5b, 0x5b, 0x22, 0x70, 0x22, 0x2c, 0x20, 0x67, 0x65,
+ 0x74, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x28, 0x29, 0x5d, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
+ 0x74, 0x3a, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64,
+ 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x69, 0x67, 0x6e,
+ 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x20, 0x3d, 0x20, 0x61,
- 0x77, 0x61, 0x69, 0x74, 0x20, 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65,
- 0x2e, 0x61, 0x6c, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x28,
- 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x50, 0x72, 0x6f, 0x6d, 0x69,
- 0x73, 0x65, 0x73, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x20,
- 0x69, 0x66, 0x20, 0x61, 0x6e, 0x79, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79,
- 0x20, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x20, 0x74, 0x68,
- 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x73, 0x75, 0x63, 0x63,
- 0x65, 0x73, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x30,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
- 0x73, 0x75, 0x6c, 0x74, 0x73, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63,
- 0x68, 0x28, 0x28, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x2c, 0x20, 0x69,
- 0x6e, 0x64, 0x65, 0x78, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
- 0x66, 0x20, 0x28, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x2e, 0x73, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x66, 0x75,
- 0x6c, 0x66, 0x69, 0x6c, 0x6c, 0x65, 0x64, 0x27, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74,
+ 0x20, 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x77, 0x69, 0x6e,
+ 0x64, 0x6f, 0x77, 0x2e, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2e, 0x73, 0x69,
+ 0x67, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x72, 0x65, 0x73, 0x74,
+ 0x61, 0x72, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21,
+ 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20,
+ 0x7c, 0x7c, 0x20, 0x21, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x45, 0x76,
+ 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x69, 0x67, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74,
+ 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x28, 0x27, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x73, 0x69,
+ 0x67, 0x6e, 0x69, 0x6e, 0x67, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
+ 0x2f, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x20, 0x76, 0x69,
+ 0x61, 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x75, 0x72, 0x6c, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c,
+ 0x61, 0x79, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x55, 0x72, 0x6c, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x74, 0x72,
+ 0x69, 0x6d, 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x75, 0x62, 0x6c,
+ 0x69, 0x73, 0x68, 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x73, 0x20,
+ 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2e,
+ 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x28, 0x5b, 0x75, 0x72, 0x6c,
+ 0x5d, 0x2c, 0x20, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x45, 0x76, 0x65,
+ 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x73, 0x65, 0x20, 0x50, 0x72, 0x6f,
+ 0x6d, 0x69, 0x73, 0x65, 0x2e, 0x61, 0x6c, 0x6c, 0x53, 0x65, 0x74, 0x74,
+ 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x63, 0x61, 0x70, 0x74, 0x75,
+ 0x72, 0x65, 0x20, 0x70, 0x65, 0x72, 0x2d, 0x72, 0x65, 0x6c, 0x61, 0x79,
+ 0x20, 0x6f, 0x75, 0x74, 0x63, 0x6f, 0x6d, 0x65, 0x73, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x20, 0x3d, 0x20, 0x61, 0x77,
+ 0x61, 0x69, 0x74, 0x20, 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x2e,
+ 0x61, 0x6c, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x28, 0x70,
+ 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73,
+ 0x65, 0x73, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x20, 0x69,
+ 0x66, 0x20, 0x61, 0x6e, 0x79, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20,
+ 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x65, 0x64, 0x20, 0x74, 0x68, 0x65,
+ 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65,
+ 0x73, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x30, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x73,
+ 0x75, 0x6c, 0x74, 0x73, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68,
+ 0x28, 0x28, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x2c, 0x20, 0x69, 0x6e,
+ 0x64, 0x65, 0x78, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
+ 0x20, 0x28, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x2e, 0x73, 0x74, 0x61,
+ 0x74, 0x75, 0x73, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x66, 0x75, 0x6c,
+ 0x66, 0x69, 0x6c, 0x6c, 0x65, 0x64, 0x27, 0x29, 0x20, 0x7b, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x43,
- 0x6f, 0x75, 0x6e, 0x74, 0x2b, 0x2b, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x43, 0x6f,
+ 0x75, 0x6e, 0x74, 0x2b, 0x2b, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c,
+ 0x6f, 0x67, 0x28, 0x60, 0x52, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x20,
+ 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x70, 0x75, 0x62, 0x6c,
+ 0x69, 0x73, 0x68, 0x65, 0x64, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73,
+ 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x20, 0x24, 0x7b, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x7d,
+ 0x60, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x53, 0x74, 0x61, 0x74, 0x73, 0x20, 0x71,
- 0x75, 0x65, 0x72, 0x79, 0x20, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68,
- 0x65, 0x64, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x66, 0x75,
- 0x6c, 0x6c, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79,
- 0x20, 0x24, 0x7b, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x7d, 0x60, 0x2c, 0x20,
- 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65,
- 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f,
- 0x67, 0x28, 0x60, 0x53, 0x74, 0x61, 0x74, 0x73, 0x20, 0x71, 0x75, 0x65,
- 0x72, 0x79, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x6f, 0x6e,
- 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x24, 0x7b, 0x69, 0x6e, 0x64,
- 0x65, 0x78, 0x7d, 0x3a, 0x20, 0x24, 0x7b, 0x72, 0x65, 0x73, 0x75, 0x6c,
- 0x74, 0x2e, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x3f, 0x2e, 0x6d, 0x65,
- 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x7c, 0x7c, 0x20, 0x72, 0x65, 0x73,
- 0x75, 0x6c, 0x74, 0x2e, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x7d, 0x60,
- 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a,
+ 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29,
- 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
- 0x66, 0x20, 0x28, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x43, 0x6f,
- 0x75, 0x6e, 0x74, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x30, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65,
- 0x73, 0x75, 0x6c, 0x74, 0x73, 0x2e, 0x6d, 0x61, 0x70, 0x28, 0x28, 0x72,
- 0x2c, 0x20, 0x69, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x60, 0x52, 0x65, 0x6c,
- 0x61, 0x79, 0x20, 0x24, 0x7b, 0x69, 0x7d, 0x3a, 0x20, 0x24, 0x7b, 0x72,
- 0x2e, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x3f, 0x2e, 0x6d, 0x65, 0x73,
- 0x73, 0x61, 0x67, 0x65, 0x20, 0x7c, 0x7c, 0x20, 0x72, 0x2e, 0x72, 0x65,
- 0x61, 0x73, 0x6f, 0x6e, 0x7d, 0x60, 0x29, 0x2e, 0x6a, 0x6f, 0x69, 0x6e,
- 0x28, 0x27, 0x3b, 0x20, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f,
- 0x77, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28,
- 0x60, 0x41, 0x6c, 0x6c, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x20,
- 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x65, 0x64, 0x20, 0x73, 0x74, 0x61,
- 0x74, 0x73, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x2e, 0x20, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x3a,
- 0x20, 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61,
- 0x69, 0x6c, 0x73, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x53, 0x74, 0x61, 0x74,
- 0x73, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x63, 0x6f, 0x6d, 0x6d,
- 0x61, 0x6e, 0x64, 0x20, 0x73, 0x65, 0x6e, 0x74, 0x20, 0x73, 0x75, 0x63,
- 0x63, 0x65, 0x73, 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x20, 0x2d, 0x20,
- 0x77, 0x61, 0x69, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x66, 0x6f, 0x72, 0x20,
- 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x2e, 0x2e, 0x27,
- 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x28, 0x27, 0x77, 0x61, 0x69, 0x74, 0x69, 0x6e, 0x67, 0x27, 0x2c, 0x20,
- 0x27, 0x57, 0x61, 0x69, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x66, 0x6f, 0x72,
- 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x2e, 0x2e,
- 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63,
+ 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x52, 0x65, 0x73, 0x74, 0x61, 0x72,
+ 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x66, 0x61,
+ 0x69, 0x6c, 0x65, 0x64, 0x20, 0x6f, 0x6e, 0x20, 0x72, 0x65, 0x6c, 0x61,
+ 0x79, 0x20, 0x24, 0x7b, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x7d, 0x3a, 0x20,
+ 0x24, 0x7b, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x2e, 0x72, 0x65, 0x61,
+ 0x73, 0x6f, 0x6e, 0x3f, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
+ 0x20, 0x7c, 0x7c, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x2e, 0x72,
+ 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x45, 0x52,
+ 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x75,
+ 0x63, 0x63, 0x65, 0x73, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x3d,
+ 0x3d, 0x3d, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69,
+ 0x6c, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73,
+ 0x2e, 0x6d, 0x61, 0x70, 0x28, 0x28, 0x72, 0x2c, 0x20, 0x69, 0x29, 0x20,
+ 0x3d, 0x3e, 0x20, 0x60, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x24, 0x7b,
+ 0x69, 0x7d, 0x3a, 0x20, 0x24, 0x7b, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x73,
+ 0x6f, 0x6e, 0x3f, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20,
+ 0x7c, 0x7c, 0x20, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x7d,
+ 0x60, 0x29, 0x2e, 0x6a, 0x6f, 0x69, 0x6e, 0x28, 0x27, 0x3b, 0x20, 0x27,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77,
+ 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x60, 0x41, 0x6c, 0x6c, 0x20,
+ 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x20, 0x72, 0x65, 0x6a, 0x65, 0x63,
+ 0x74, 0x65, 0x64, 0x20, 0x72, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x20,
+ 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x20, 0x44, 0x65, 0x74,
+ 0x61, 0x69, 0x6c, 0x73, 0x3a, 0x20, 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x7d, 0x60, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28,
+ 0x27, 0x52, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x20, 0x63, 0x6f, 0x6d,
+ 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x73, 0x65, 0x6e, 0x74, 0x20, 0x73, 0x75,
+ 0x63, 0x63, 0x65, 0x73, 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x20, 0x2d,
+ 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x73, 0x68, 0x6f, 0x75, 0x6c,
+ 0x64, 0x20, 0x72, 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x20, 0x73, 0x68,
+ 0x6f, 0x72, 0x74, 0x6c, 0x79, 0x2e, 0x2e, 0x2e, 0x27, 0x2c, 0x20, 0x27,
+ 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61,
+ 0x74, 0x65, 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x20, 0x74, 0x6f, 0x20,
+ 0x69, 0x6e, 0x64, 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x72, 0x65, 0x73,
+ 0x74, 0x61, 0x72, 0x74, 0x20, 0x69, 0x73, 0x20, 0x69, 0x6e, 0x20, 0x70,
+ 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65,
+ 0x6c, 0x61, 0x79, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x63, 0x6f, 0x6e,
+ 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6e, 0x67, 0x27, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79,
+ 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,
+ 0x61, 0x74, 0x75, 0x73, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e,
+ 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27, 0x52, 0x45, 0x53, 0x54,
+ 0x41, 0x52, 0x54, 0x49, 0x4e, 0x47, 0x2e, 0x2e, 0x2e, 0x27, 0x3b, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x54, 0x68, 0x65, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x77, 0x69,
+ 0x6c, 0x6c, 0x20, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63,
+ 0x74, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x6e, 0x65, 0x65, 0x64, 0x20, 0x74,
+ 0x6f, 0x20, 0x62, 0x65, 0x20, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x6e, 0x65,
+ 0x63, 0x74, 0x65, 0x64, 0x20, 0x61, 0x66, 0x74, 0x65, 0x72, 0x20, 0x72,
+ 0x65, 0x73, 0x74, 0x61, 0x72, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x77,
+ 0x69, 0x6c, 0x6c, 0x20, 0x62, 0x65, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c,
+ 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x74, 0x68, 0x65, 0x20, 0x57, 0x65,
+ 0x62, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x64, 0x69, 0x73, 0x63,
+ 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63,
0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29,
0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c,
0x6f, 0x67, 0x28, 0x60, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74,
- 0x6f, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x20, 0x73, 0x74, 0x61, 0x74, 0x73,
- 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x3a, 0x20, 0x24, 0x7b, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x7d,
- 0x60, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x53, 0x74, 0x61, 0x74,
- 0x75, 0x73, 0x28, 0x27, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x27, 0x2c, 0x20,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
- 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a,
- 0x0a, 0x2f, 0x2f, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x73,
- 0x74, 0x61, 0x74, 0x73, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x72,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x61, 0x6e, 0x64, 0x20,
- 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x73, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73,
- 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61,
- 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72,
- 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
- 0x69, 0x6e, 0x67, 0x20, 0x73, 0x74, 0x61, 0x74, 0x73, 0x20, 0x71, 0x75,
- 0x65, 0x72, 0x79, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x2e, 0x2e, 0x2e, 0x27, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27,
- 0x53, 0x74, 0x61, 0x74, 0x73, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x20, 0x64, 0x61, 0x74, 0x61, 0x3a, 0x27, 0x2c, 0x20, 0x72,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x29,
- 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
- 0x66, 0x20, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44,
- 0x61, 0x74, 0x61, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x74, 0x79,
- 0x70, 0x65, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x27, 0x73, 0x74, 0x61, 0x74,
- 0x73, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x27, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x49, 0x67, 0x6e, 0x6f, 0x72, 0x69, 0x6e,
- 0x67, 0x20, 0x6e, 0x6f, 0x6e, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x73, 0x20,
- 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x27, 0x2c, 0x20, 0x27,
- 0x57, 0x41, 0x52, 0x4e, 0x49, 0x4e, 0x47, 0x27, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72,
- 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74,
- 0x65, 0x20, 0x6f, 0x76, 0x65, 0x72, 0x76, 0x69, 0x65, 0x77, 0x20, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61,
- 0x74, 0x73, 0x4f, 0x76, 0x65, 0x72, 0x76, 0x69, 0x65, 0x77, 0x28, 0x72,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x29,
- 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x65,
- 0x76, 0x65, 0x6e, 0x74, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x20, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61,
- 0x74, 0x73, 0x4b, 0x69, 0x6e, 0x64, 0x73, 0x28, 0x72, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x50,
- 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x74, 0x69, 0x6d, 0x65,
- 0x2d, 0x62, 0x61, 0x73, 0x65, 0x64, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69,
- 0x73, 0x74, 0x69, 0x63, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74,
- 0x61, 0x74, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x28, 0x72, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x50,
- 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x74, 0x6f, 0x70, 0x20,
- 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x20, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x6f,
- 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x50,
- 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x6f, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x20, 0x72, 0x65, 0x73, 0x74, 0x61,
+ 0x72, 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x3a, 0x20,
+ 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73,
+ 0x61, 0x67, 0x65, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f,
+ 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6c, 0x61, 0x79,
+ 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,
+ 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x27,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a,
+ 0x2f, 0x2f, 0x20, 0x53, 0x65, 0x6e, 0x64, 0x20, 0x71, 0x75, 0x65, 0x72,
+ 0x79, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61,
+ 0x6e, 0x64, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x65, 0x74, 0x20, 0x64,
+ 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74,
+ 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x76, 0x69, 0x61, 0x20, 0x48,
+ 0x54, 0x54, 0x50, 0x20, 0x50, 0x4f, 0x53, 0x54, 0x0a, 0x61, 0x73, 0x79,
+ 0x6e, 0x63, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
+ 0x73, 0x65, 0x6e, 0x64, 0x53, 0x74, 0x61, 0x74, 0x73, 0x51, 0x75, 0x65,
+ 0x72, 0x79, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69,
+ 0x66, 0x20, 0x28, 0x21, 0x69, 0x73, 0x4c, 0x6f, 0x67, 0x67, 0x65, 0x64,
+ 0x49, 0x6e, 0x20, 0x7c, 0x7c, 0x20, 0x21, 0x75, 0x73, 0x65, 0x72, 0x50,
+ 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x4d, 0x75,
+ 0x73, 0x74, 0x20, 0x62, 0x65, 0x20, 0x6c, 0x6f, 0x67, 0x67, 0x65, 0x64,
+ 0x20, 0x69, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79,
+ 0x20, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x20, 0x73, 0x74,
+ 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x27, 0x2c, 0x20, 0x27,
+ 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
+ 0x74, 0x61, 0x74, 0x73, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x27, 0x2c, 0x20, 0x27, 0x4e, 0x6f, 0x74,
+ 0x20, 0x6c, 0x6f, 0x67, 0x67, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x27, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
+ 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74,
0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x28, 0x27, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x27, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28,
- 0x27, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x20, 0x73, 0x74,
- 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x75, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x64, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73,
- 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x27, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46,
- 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20,
- 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x70,
- 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x73, 0x74,
- 0x61, 0x74, 0x73, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x3a, 0x20, 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65,
- 0x73, 0x73, 0x61, 0x67, 0x65, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x45, 0x52,
- 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61,
- 0x74, 0x73, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x27, 0x2c, 0x20, 0x27, 0x46, 0x61, 0x69, 0x6c, 0x65,
- 0x64, 0x20, 0x74, 0x6f, 0x20, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
- 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x27, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f,
- 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74,
- 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c,
- 0x61, 0x79, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x72, 0x65, 0x61, 0x6c,
- 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f,
- 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x66,
- 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4d,
- 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x76, 0x65,
- 0x6e, 0x74, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e,
- 0x67, 0x44, 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6d, 0x6f, 0x6e, 0x69,
- 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64,
- 0x61, 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x20, 0x21, 0x3d, 0x3d,
- 0x20, 0x27, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x6b, 0x69, 0x6e, 0x64,
- 0x73, 0x27, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x28, 0x27, 0x6c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x27, 0x2c, 0x20,
+ 0x27, 0x51, 0x75, 0x65, 0x72, 0x79, 0x69, 0x6e, 0x67, 0x20, 0x64, 0x61,
+ 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x2e, 0x2e, 0x27, 0x29, 0x3b,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x51, 0x75, 0x65, 0x72, 0x79, 0x20, 0x62, 0x6c, 0x6f, 0x62, 0x5f,
+ 0x6f, 0x76, 0x65, 0x72, 0x76, 0x69, 0x65, 0x77, 0x20, 0x76, 0x69, 0x65,
+ 0x77, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x62, 0x61, 0x73, 0x69, 0x63, 0x20,
+ 0x73, 0x74, 0x61, 0x74, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6f, 0x76, 0x65, 0x72,
+ 0x76, 0x69, 0x65, 0x77, 0x44, 0x61, 0x74, 0x61, 0x20, 0x3d, 0x20, 0x61,
+ 0x77, 0x61, 0x69, 0x74, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x41, 0x64, 0x6d,
+ 0x69, 0x6e, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x48, 0x54, 0x54,
+ 0x50, 0x28, 0x5b, 0x27, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x76, 0x69,
+ 0x65, 0x77, 0x27, 0x2c, 0x20, 0x27, 0x62, 0x6c, 0x6f, 0x62, 0x5f, 0x6f,
+ 0x76, 0x65, 0x72, 0x76, 0x69, 0x65, 0x77, 0x27, 0x5d, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x61, 0x6e, 0x64,
+ 0x6c, 0x65, 0x56, 0x69, 0x65, 0x77, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x28, 0x27, 0x62, 0x6c, 0x6f,
+ 0x62, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x76, 0x69, 0x65, 0x77, 0x27, 0x2c,
+ 0x20, 0x6f, 0x76, 0x65, 0x72, 0x76, 0x69, 0x65, 0x77, 0x44, 0x61, 0x74,
+ 0x61, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2f, 0x2f, 0x20, 0x51, 0x75, 0x65, 0x72, 0x79, 0x20, 0x62, 0x6c,
+ 0x6f, 0x62, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x64, 0x69, 0x73, 0x74,
+ 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x76, 0x69, 0x65,
+ 0x77, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x74, 0x20, 0x74, 0x79, 0x70, 0x65, 0x44, 0x61, 0x74, 0x61,
+ 0x20, 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x73, 0x65, 0x6e,
+ 0x64, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e,
+ 0x64, 0x48, 0x54, 0x54, 0x50, 0x28, 0x5b, 0x27, 0x71, 0x75, 0x65, 0x72,
+ 0x79, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x27, 0x2c, 0x20, 0x27, 0x62, 0x6c,
+ 0x6f, 0x62, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x64, 0x69, 0x73, 0x74,
+ 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x5d, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x61, 0x6e,
+ 0x64, 0x6c, 0x65, 0x56, 0x69, 0x65, 0x77, 0x51, 0x75, 0x65, 0x72, 0x79,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x28, 0x27, 0x62, 0x6c,
+ 0x6f, 0x62, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x64, 0x69, 0x73, 0x74,
+ 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x2c, 0x20, 0x74,
+ 0x79, 0x70, 0x65, 0x44, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x51, 0x75,
+ 0x65, 0x72, 0x79, 0x20, 0x62, 0x6c, 0x6f, 0x62, 0x5f, 0x74, 0x69, 0x6d,
+ 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73, 0x20, 0x76, 0x69, 0x65, 0x77,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x44, 0x61, 0x74, 0x61, 0x20,
+ 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x73, 0x65, 0x6e, 0x64,
+ 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
+ 0x48, 0x54, 0x54, 0x50, 0x28, 0x5b, 0x27, 0x71, 0x75, 0x65, 0x72, 0x79,
+ 0x5f, 0x76, 0x69, 0x65, 0x77, 0x27, 0x2c, 0x20, 0x27, 0x62, 0x6c, 0x6f,
+ 0x62, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73,
+ 0x27, 0x5d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x56, 0x69, 0x65, 0x77, 0x51,
+ 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x28, 0x27, 0x62, 0x6c, 0x6f, 0x62, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f,
+ 0x73, 0x74, 0x61, 0x74, 0x73, 0x27, 0x2c, 0x20, 0x74, 0x69, 0x6d, 0x65,
+ 0x44, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x51, 0x75, 0x65, 0x72, 0x79,
+ 0x20, 0x74, 0x6f, 0x70, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x65,
+ 0x72, 0x73, 0x20, 0x76, 0x69, 0x65, 0x77, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x75, 0x70,
+ 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x72, 0x73, 0x44, 0x61, 0x74, 0x61, 0x20,
+ 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x73, 0x65, 0x6e, 0x64,
+ 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
+ 0x48, 0x54, 0x54, 0x50, 0x28, 0x5b, 0x27, 0x71, 0x75, 0x65, 0x72, 0x79,
+ 0x5f, 0x76, 0x69, 0x65, 0x77, 0x27, 0x2c, 0x20, 0x27, 0x74, 0x6f, 0x70,
+ 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x72, 0x73, 0x27, 0x5d,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68,
+ 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x56, 0x69, 0x65, 0x77, 0x51, 0x75, 0x65,
+ 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x28, 0x27,
+ 0x74, 0x6f, 0x70, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x72,
+ 0x73, 0x27, 0x2c, 0x20, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x72,
+ 0x73, 0x44, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x41, 0x6c, 0x6c, 0x20, 0x76, 0x69,
+ 0x65, 0x77, 0x20, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x20, 0x63,
+ 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x20, 0x73, 0x75, 0x63,
+ 0x63, 0x65, 0x73, 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x27, 0x2c, 0x20,
+ 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
+ 0x74, 0x61, 0x74, 0x73, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27,
+ 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x46, 0x61,
+ 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x65, 0x6e, 0x64,
+ 0x20, 0x76, 0x69, 0x65, 0x77, 0x20, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65,
+ 0x73, 0x3a, 0x20, 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d,
+ 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x45,
+ 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74,
+ 0x61, 0x74, 0x73, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x27, 0x2c, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x48,
+ 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f,
+ 0x76, 0x69, 0x65, 0x77, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61,
+ 0x74, 0x65, 0x20, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x70, 0x72, 0x69, 0x61,
+ 0x74, 0x65, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x66, 0x75, 0x6e,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65,
+ 0x56, 0x69, 0x65, 0x77, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x28, 0x76, 0x69, 0x65, 0x77, 0x4e, 0x61,
+ 0x6d, 0x65, 0x2c, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x44, 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
+ 0x67, 0x28, 0x60, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x69, 0x6e,
+ 0x67, 0x20, 0x76, 0x69, 0x65, 0x77, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79,
+ 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x3a, 0x20, 0x24,
+ 0x7b, 0x76, 0x69, 0x65, 0x77, 0x4e, 0x61, 0x6d, 0x65, 0x7d, 0x60, 0x2c,
+ 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74,
+ 0x61, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f,
+ 0x74, 0x79, 0x70, 0x65, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x27, 0x71, 0x75,
+ 0x65, 0x72, 0x79, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x27, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x49, 0x67, 0x6e, 0x6f, 0x72, 0x69,
+ 0x6e, 0x67, 0x20, 0x6e, 0x6f, 0x6e, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x2d,
+ 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x27, 0x2c, 0x20, 0x27, 0x57, 0x41, 0x52, 0x4e, 0x49, 0x4e,
+ 0x47, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61,
+ 0x2e, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x20, 0x21, 0x3d, 0x3d, 0x20,
+ 0x27, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x27, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x56, 0x69, 0x65, 0x77, 0x20, 0x71,
+ 0x75, 0x65, 0x72, 0x79, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x3a,
+ 0x20, 0x24, 0x7b, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44,
+ 0x61, 0x74, 0x61, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x7c, 0x7c,
+ 0x20, 0x27, 0x55, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x20, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x27, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52,
+ 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e,
0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c,
- 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x63, 0x6f, 0x75, 0x6e,
- 0x74, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x20,
- 0x72, 0x61, 0x74, 0x65, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x63, 0x68, 0x61,
- 0x72, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
- 0x66, 0x20, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e,
- 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f,
- 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x75,
- 0x6e, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e,
- 0x74, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x20, 0x3d, 0x20, 0x6d, 0x6f, 0x6e,
- 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e,
- 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74,
- 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x28, 0x27, 0x74, 0x6f, 0x74, 0x61, 0x6c,
- 0x2d, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x27, 0x2c, 0x20, 0x63, 0x75,
- 0x72, 0x72, 0x65, 0x6e, 0x74, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x2e, 0x74,
- 0x6f, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x29, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74,
- 0x65, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73,
- 0x20, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x20, 0x6c, 0x61, 0x73, 0x74, 0x20,
- 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x63,
- 0x68, 0x61, 0x72, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x72, 0x65,
- 0x76, 0x69, 0x6f, 0x75, 0x73, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x76,
- 0x65, 0x6e, 0x74, 0x73, 0x20, 0x3e, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x65,
- 0x77, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x3d, 0x20, 0x63, 0x75,
- 0x72, 0x72, 0x65, 0x6e, 0x74, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x20, 0x2d,
- 0x20, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x54, 0x6f, 0x74,
- 0x61, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6e, 0x65, 0x77, 0x45, 0x76, 0x65,
- 0x6e, 0x74, 0x73, 0x20, 0x3e, 0x20, 0x30, 0x20, 0x26, 0x26, 0x20, 0x65,
- 0x76, 0x65, 0x6e, 0x74, 0x52, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72,
- 0x74, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
- 0x28, 0x60, 0x41, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x24, 0x7b, 0x6e,
- 0x65, 0x77, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x7d, 0x20, 0x6e, 0x65,
- 0x77, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x74, 0x6f, 0x20,
- 0x72, 0x61, 0x74, 0x65, 0x20, 0x63, 0x68, 0x61, 0x72, 0x74, 0x20, 0x28,
- 0x24, 0x7b, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x54, 0x6f, 0x74,
- 0x61, 0x6c, 0x7d, 0x20, 0x2d, 0x20, 0x24, 0x7b, 0x70, 0x72, 0x65, 0x76,
- 0x69, 0x6f, 0x75, 0x73, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x76, 0x65,
- 0x6e, 0x74, 0x73, 0x7d, 0x29, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x61,
- 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x74, 0x2e, 0x61, 0x64, 0x64, 0x56,
- 0x61, 0x6c, 0x75, 0x65, 0x28, 0x6e, 0x65, 0x77, 0x45, 0x76, 0x65, 0x6e,
- 0x74, 0x73, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20,
- 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x20, 0x74, 0x6f, 0x74,
- 0x61, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x6e, 0x65, 0x78, 0x74, 0x20,
- 0x63, 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x54, 0x6f, 0x74, 0x61,
- 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x3d, 0x20, 0x63, 0x75,
- 0x72, 0x72, 0x65, 0x6e, 0x74, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x6b,
- 0x69, 0x6e, 0x64, 0x73, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x77,
- 0x69, 0x74, 0x68, 0x20, 0x72, 0x65, 0x61, 0x6c, 0x2d, 0x74, 0x69, 0x6d,
- 0x65, 0x20, 0x64, 0x61, 0x74, 0x61, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74,
- 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x6b, 0x69,
- 0x6e, 0x64, 0x73, 0x20, 0x26, 0x26, 0x20, 0x41, 0x72, 0x72, 0x61, 0x79,
- 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x28, 0x6d, 0x6f, 0x6e,
- 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e,
- 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x29, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x6f,
- 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x4b,
- 0x69, 0x6e, 0x64, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4d, 0x6f, 0x6e, 0x69,
- 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74,
- 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x6b, 0x69,
- 0x6e, 0x64, 0x73, 0x2c, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72,
- 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x74, 0x6f, 0x74, 0x61,
- 0x6c, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x20,
- 0x73, 0x74, 0x61, 0x74, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x6d,
- 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x3a, 0x20, 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x7d, 0x60, 0x2c, 0x20,
- 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x55, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74,
- 0x69, 0x63, 0x73, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20,
- 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x74,
- 0x61, 0x74, 0x73, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69,
- 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x66, 0x75, 0x6e,
- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
- 0x53, 0x74, 0x61, 0x74, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x54, 0x69, 0x6d,
- 0x65, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x45,
- 0x76, 0x65, 0x6e, 0x74, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72,
- 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6d, 0x6f, 0x6e,
- 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e,
- 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x20, 0x21, 0x3d,
- 0x3d, 0x20, 0x27, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74,
- 0x73, 0x27, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x2d,
- 0x62, 0x61, 0x73, 0x65, 0x64, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73,
- 0x74, 0x69, 0x63, 0x73, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x77,
- 0x69, 0x74, 0x68, 0x20, 0x72, 0x65, 0x61, 0x6c, 0x2d, 0x74, 0x69, 0x6d,
- 0x65, 0x20, 0x64, 0x61, 0x74, 0x61, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74,
- 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x65,
- 0x72, 0x69, 0x6f, 0x64, 0x73, 0x20, 0x26, 0x26, 0x20, 0x41, 0x72, 0x72,
- 0x61, 0x79, 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x28, 0x6d,
- 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74,
- 0x61, 0x2e, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x73, 0x29, 0x29, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x73, 0x65, 0x20, 0x74, 0x68, 0x65,
- 0x20, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x70, 0x6f,
- 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x54,
- 0x69, 0x6d, 0x65, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x65, 0x78, 0x70, 0x65, 0x63,
- 0x74, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6e, 0x65, 0x73, 0x74, 0x65,
- 0x64, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73,
- 0x20, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x74, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x20,
- 0x3d, 0x20, 0x7b, 0x20, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x32, 0x34, 0x68,
- 0x3a, 0x20, 0x30, 0x2c, 0x20, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x37, 0x64,
- 0x3a, 0x20, 0x30, 0x2c, 0x20, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x33, 0x30,
- 0x64, 0x3a, 0x20, 0x30, 0x20, 0x7d, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x45, 0x78, 0x74, 0x72, 0x61, 0x63, 0x74, 0x20, 0x76, 0x61, 0x6c, 0x75,
- 0x65, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x70, 0x65, 0x72, 0x69,
- 0x6f, 0x64, 0x73, 0x20, 0x61, 0x72, 0x72, 0x61, 0x79, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6d, 0x6f,
- 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61,
- 0x2e, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x73, 0x2e, 0x66, 0x6f, 0x72,
- 0x45, 0x61, 0x63, 0x68, 0x28, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x20,
- 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x2e, 0x70, 0x65, 0x72, 0x69,
- 0x6f, 0x64, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x6c, 0x61, 0x73, 0x74,
- 0x5f, 0x32, 0x34, 0x68, 0x27, 0x29, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x53,
- 0x74, 0x61, 0x74, 0x73, 0x2e, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x32, 0x34,
- 0x68, 0x20, 0x3d, 0x20, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x2e, 0x63,
- 0x6f, 0x75, 0x6e, 0x74, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c,
- 0x73, 0x65, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x65, 0x72, 0x69, 0x6f,
- 0x64, 0x2e, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x20, 0x3d, 0x3d, 0x3d,
- 0x20, 0x27, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x37, 0x64, 0x27, 0x29, 0x20,
- 0x74, 0x69, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x2e, 0x6c, 0x61,
- 0x73, 0x74, 0x5f, 0x37, 0x64, 0x20, 0x3d, 0x20, 0x70, 0x65, 0x72, 0x69,
- 0x6f, 0x64, 0x2e, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70,
- 0x65, 0x72, 0x69, 0x6f, 0x64, 0x2e, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64,
- 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x33,
- 0x30, 0x64, 0x27, 0x29, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x53, 0x74, 0x61,
- 0x74, 0x73, 0x2e, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x33, 0x30, 0x64, 0x20,
- 0x3d, 0x20, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x2e, 0x63, 0x6f, 0x75,
- 0x6e, 0x74, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x6f, 0x70,
- 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x54, 0x69,
- 0x6d, 0x65, 0x28, 0x7b, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x74,
- 0x61, 0x74, 0x73, 0x3a, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x53, 0x74, 0x61,
- 0x74, 0x73, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20,
- 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x52, 0x6f, 0x75, 0x74, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x70, 0x70,
+ 0x72, 0x6f, 0x70, 0x72, 0x69, 0x61, 0x74, 0x65, 0x20, 0x68, 0x61, 0x6e,
+ 0x64, 0x6c, 0x65, 0x72, 0x20, 0x62, 0x61, 0x73, 0x65, 0x64, 0x20, 0x6f,
+ 0x6e, 0x20, 0x76, 0x69, 0x65, 0x77, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x77, 0x69, 0x74,
+ 0x63, 0x68, 0x20, 0x28, 0x76, 0x69, 0x65, 0x77, 0x4e, 0x61, 0x6d, 0x65,
0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x75,
- 0x70, 0x64, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x69, 0x6d, 0x65,
- 0x20, 0x73, 0x74, 0x61, 0x74, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20,
- 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65,
- 0x76, 0x65, 0x6e, 0x74, 0x3a, 0x20, 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x7d, 0x60, 0x2c,
- 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x55,
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73,
- 0x74, 0x69, 0x63, 0x73, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
- 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x75,
- 0x62, 0x6b, 0x65, 0x79, 0x73, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f,
- 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x66,
- 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x54,
- 0x6f, 0x70, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x4d, 0x6f, 0x6e,
- 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x76, 0x65, 0x6e, 0x74,
- 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44,
- 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74,
- 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72,
- 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61,
- 0x5f, 0x74, 0x79, 0x70, 0x65, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x27, 0x74,
- 0x6f, 0x70, 0x5f, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x27, 0x29,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x61, 0x73, 0x65, 0x20, 0x27, 0x62, 0x6c,
+ 0x6f, 0x62, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x76, 0x69, 0x65, 0x77, 0x27,
+ 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64,
+ 0x61, 0x74, 0x61, 0x20, 0x26, 0x26, 0x20, 0x41, 0x72, 0x72, 0x61, 0x79,
+ 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x28, 0x72, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61,
+ 0x74, 0x61, 0x29, 0x20, 0x26, 0x26, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3e, 0x20, 0x30, 0x29,
0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x20, 0x74, 0x6f, 0x70, 0x20, 0x70, 0x75, 0x62, 0x6b,
- 0x65, 0x79, 0x73, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x77, 0x69,
- 0x74, 0x68, 0x20, 0x72, 0x65, 0x61, 0x6c, 0x2d, 0x74, 0x69, 0x6d, 0x65,
- 0x20, 0x64, 0x61, 0x74, 0x61, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f,
- 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x75, 0x62,
- 0x6b, 0x65, 0x79, 0x73, 0x20, 0x26, 0x26, 0x20, 0x41, 0x72, 0x72, 0x61,
- 0x79, 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x28, 0x6d, 0x6f,
- 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61,
- 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x29, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x50, 0x61, 0x73, 0x73, 0x20, 0x74, 0x6f, 0x74,
- 0x61, 0x6c, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x66, 0x72,
- 0x6f, 0x6d, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e,
- 0x67, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68,
- 0x65, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70,
0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73,
- 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4d,
- 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x6d, 0x6f,
- 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61,
- 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x2c, 0x20, 0x6d, 0x6f,
- 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61,
- 0x2e, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74,
- 0x73, 0x20, 0x7c, 0x7c, 0x20, 0x30, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x4f, 0x76, 0x65, 0x72, 0x76, 0x69, 0x65, 0x77, 0x28, 0x72, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61,
+ 0x74, 0x61, 0x5b, 0x30, 0x5d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x72, 0x65, 0x61, 0x6b, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x61, 0x73, 0x65, 0x20, 0x27, 0x62, 0x6c, 0x6f, 0x62, 0x5f,
+ 0x74, 0x79, 0x70, 0x65, 0x5f, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62,
+ 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x20, 0x26, 0x26,
+ 0x20, 0x41, 0x72, 0x72, 0x61, 0x79, 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72,
+ 0x61, 0x79, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44,
+ 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x29, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x6f, 0x70,
+ 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x4b, 0x69,
+ 0x6e, 0x64, 0x73, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x72,
+ 0x65, 0x61, 0x6b, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x61, 0x73, 0x65, 0x20, 0x27, 0x62,
+ 0x6c, 0x6f, 0x62, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x74, 0x61,
+ 0x74, 0x73, 0x27, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
+ 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74,
+ 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x20, 0x26, 0x26, 0x20, 0x41, 0x72,
+ 0x72, 0x61, 0x79, 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x28,
+ 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61,
+ 0x2e, 0x64, 0x61, 0x74, 0x61, 0x29, 0x20, 0x26, 0x26, 0x20, 0x72, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3e,
+ 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74,
+ 0x61, 0x74, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x28, 0x72, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74,
+ 0x61, 0x5b, 0x30, 0x5d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x72, 0x65, 0x61, 0x6b, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x61, 0x73, 0x65, 0x20, 0x27, 0x74, 0x6f, 0x70, 0x5f, 0x75, 0x70,
+ 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x72, 0x73, 0x27, 0x3a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x20,
+ 0x26, 0x26, 0x20, 0x41, 0x72, 0x72, 0x61, 0x79, 0x2e, 0x69, 0x73, 0x41,
+ 0x72, 0x72, 0x61, 0x79, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x29, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70,
+ 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73,
+ 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x28, 0x72, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74,
+ 0x61, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x62, 0x72, 0x65, 0x61, 0x6b, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x65, 0x66,
+ 0x61, 0x75, 0x6c, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x55,
+ 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x20, 0x76, 0x69, 0x65, 0x77, 0x20,
+ 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x20, 0x24, 0x7b, 0x76, 0x69, 0x65, 0x77,
+ 0x4e, 0x61, 0x6d, 0x65, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f,
- 0x70, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x20, 0x66, 0x72,
- 0x6f, 0x6d, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e,
- 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x3a, 0x20, 0x24, 0x7b, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
- 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x0a,
- 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x73, 0x74,
- 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x64, 0x69, 0x73,
- 0x70, 0x6c, 0x61, 0x79, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x73, 0x75,
- 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64,
- 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74,
- 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a,
- 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x46, 0x72, 0x6f, 0x6d,
- 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
- 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x4d, 0x6f, 0x6e, 0x69, 0x74,
- 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x6d,
- 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74,
- 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x44, 0x45, 0x42, 0x55, 0x47, 0x3a, 0x20, 0x4c, 0x6f, 0x67,
- 0x20, 0x65, 0x76, 0x65, 0x72, 0x79, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63,
- 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x65, 0x74, 0x61,
- 0x69, 0x6c, 0x73, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x74, 0x68,
- 0x61, 0x74, 0x20, 0x61, 0x72, 0x72, 0x69, 0x76, 0x65, 0x73, 0x20, 0x61,
- 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x77, 0x65, 0x62, 0x70, 0x61, 0x67,
- 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
- 0x28, 0x27, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
- 0x6f, 0x6e, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x27, 0x2c,
- 0x20, 0x4a, 0x53, 0x4f, 0x4e, 0x2e, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
- 0x69, 0x66, 0x79, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69,
- 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2c, 0x20, 0x6e, 0x75, 0x6c, 0x6c,
- 0x2c, 0x20, 0x32, 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
- 0x6f, 0x67, 0x28, 0x27, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73,
- 0x20, 0x64, 0x65, 0x63, 0x6f, 0x64, 0x65, 0x64, 0x3a, 0x27, 0x2c, 0x20,
- 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61,
- 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f,
- 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74,
- 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x27,
- 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
- 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x27, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x20, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x72, 0x65,
- 0x61, 0x6c, 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x64, 0x61, 0x74, 0x61,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44,
- 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x20, 0x26, 0x26, 0x20,
- 0x41, 0x72, 0x72, 0x61, 0x79, 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61,
- 0x79, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67,
- 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x73, 0x75,
- 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x29,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65,
- 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
- 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x54, 0x61, 0x62, 0x6c, 0x65,
- 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44,
- 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x73, 0x75, 0x62,
- 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20,
- 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x69, 0x6e,
- 0x67, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x20, 0x66,
- 0x72, 0x6f, 0x6d, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69,
- 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x3a, 0x20, 0x24, 0x7b,
+ 0x20, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x69, 0x6e, 0x67, 0x20,
+ 0x24, 0x7b, 0x76, 0x69, 0x65, 0x77, 0x4e, 0x61, 0x6d, 0x65, 0x7d, 0x20,
+ 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x3a, 0x20, 0x24, 0x7b,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
0x65, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27,
0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a,
- 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x73, 0x74,
- 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x64, 0x69, 0x73,
- 0x70, 0x6c, 0x61, 0x79, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x43, 0x50,
- 0x55, 0x20, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x20, 0x6d, 0x6f,
- 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
- 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x46,
- 0x72, 0x6f, 0x6d, 0x43, 0x70, 0x75, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f,
+ 0x2f, 0x2f, 0x20, 0x4c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x20, 0x68, 0x61,
+ 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x62, 0x61,
+ 0x63, 0x6b, 0x77, 0x61, 0x72, 0x64, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61,
+ 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x0a, 0x66, 0x75, 0x6e,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65,
+ 0x53, 0x74, 0x61, 0x74, 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x50, 0x72,
+ 0x6f, 0x63, 0x65, 0x73, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x73, 0x74, 0x61,
+ 0x74, 0x73, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x72, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x2e, 0x2e, 0x27, 0x2c, 0x20, 0x27,
+ 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
+ 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x53, 0x74, 0x61, 0x74, 0x73, 0x20, 0x72,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x64, 0x61, 0x74, 0x61,
+ 0x3a, 0x27, 0x2c, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x44, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x71, 0x75, 0x65,
+ 0x72, 0x79, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x20, 0x21, 0x3d, 0x3d, 0x20,
+ 0x27, 0x73, 0x74, 0x61, 0x74, 0x73, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79,
+ 0x27, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x49, 0x67,
+ 0x6e, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x6e, 0x6f, 0x6e, 0x2d, 0x73,
+ 0x74, 0x61, 0x74, 0x73, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x27, 0x2c, 0x20, 0x27, 0x57, 0x41, 0x52, 0x4e, 0x49, 0x4e, 0x47,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x45, 0x78,
+ 0x74, 0x72, 0x61, 0x63, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x61, 0x63,
+ 0x74, 0x75, 0x61, 0x6c, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x6f, 0x62,
+ 0x6a, 0x65, 0x63, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73, 0x74, 0x61, 0x74, 0x73,
+ 0x44, 0x61, 0x74, 0x61, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61,
+ 0x20, 0x7c, 0x7c, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+ 0x44, 0x61, 0x74, 0x61, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
+ 0x67, 0x28, 0x27, 0x45, 0x78, 0x74, 0x72, 0x61, 0x63, 0x74, 0x65, 0x64,
+ 0x20, 0x73, 0x74, 0x61, 0x74, 0x73, 0x20, 0x64, 0x61, 0x74, 0x61, 0x3a,
+ 0x27, 0x2c, 0x20, 0x73, 0x74, 0x61, 0x74, 0x73, 0x44, 0x61, 0x74, 0x61,
+ 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20,
+ 0x6f, 0x76, 0x65, 0x72, 0x76, 0x69, 0x65, 0x77, 0x20, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x62, 0x6c, 0x6f, 0x62,
+ 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x6f, 0x70, 0x75,
+ 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x4f, 0x76, 0x65,
+ 0x72, 0x76, 0x69, 0x65, 0x77, 0x28, 0x73, 0x74, 0x61, 0x74, 0x73, 0x44,
+ 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61,
+ 0x74, 0x65, 0x20, 0x62, 0x6c, 0x6f, 0x62, 0x20, 0x74, 0x79, 0x70, 0x65,
+ 0x20, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x74, 0x61, 0x74,
+ 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x64,
+ 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x20,
+ 0x26, 0x26, 0x20, 0x41, 0x72, 0x72, 0x61, 0x79, 0x2e, 0x69, 0x73, 0x41,
+ 0x72, 0x72, 0x61, 0x79, 0x28, 0x73, 0x74, 0x61, 0x74, 0x73, 0x44, 0x61,
+ 0x74, 0x61, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x64, 0x69, 0x73, 0x74,
+ 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x29, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61,
+ 0x74, 0x73, 0x4b, 0x69, 0x6e, 0x64, 0x73, 0x28, 0x73, 0x74, 0x61, 0x74,
+ 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x64,
+ 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x74, 0x69, 0x6d,
+ 0x65, 0x2d, 0x62, 0x61, 0x73, 0x65, 0x64, 0x20, 0x73, 0x74, 0x61, 0x74,
+ 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x74, 0x61, 0x74, 0x73,
+ 0x44, 0x61, 0x74, 0x61, 0x2e, 0x62, 0x6c, 0x6f, 0x62, 0x73, 0x5f, 0x32,
+ 0x34, 0x68, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x75, 0x6e, 0x64, 0x65, 0x66,
+ 0x69, 0x6e, 0x65, 0x64, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x6f, 0x70, 0x75,
+ 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x54, 0x69, 0x6d,
+ 0x65, 0x28, 0x73, 0x74, 0x61, 0x74, 0x73, 0x44, 0x61, 0x74, 0x61, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x74, 0x6f, 0x70,
+ 0x20, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x72, 0x73, 0x20, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x74, 0x61, 0x74, 0x73, 0x44, 0x61,
+ 0x74, 0x61, 0x2e, 0x74, 0x6f, 0x70, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61,
+ 0x64, 0x65, 0x72, 0x73, 0x20, 0x26, 0x26, 0x20, 0x41, 0x72, 0x72, 0x61,
+ 0x79, 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x28, 0x73, 0x74,
+ 0x61, 0x74, 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x74, 0x6f, 0x70, 0x5f,
+ 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x72, 0x73, 0x29, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74,
+ 0x61, 0x74, 0x73, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x28, 0x73,
+ 0x74, 0x61, 0x74, 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x74, 0x6f, 0x70,
+ 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x72, 0x73, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61,
+ 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x53, 0x74, 0x61, 0x74, 0x75,
+ 0x73, 0x28, 0x27, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67,
+ 0x28, 0x27, 0x42, 0x6c, 0x6f, 0x62, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69,
+ 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
+ 0x64, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x66, 0x75, 0x6c,
+ 0x6c, 0x79, 0x27, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74,
+ 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67,
+ 0x28, 0x60, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x70, 0x72, 0x6f, 0x63,
+ 0x65, 0x73, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x73, 0x74, 0x61, 0x74, 0x73,
+ 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x3a, 0x20, 0x24,
+ 0x7b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61,
+ 0x67, 0x65, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x53,
+ 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x27, 0x2c, 0x20, 0x27, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74,
+ 0x6f, 0x20, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x20, 0x72, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x55, 0x70,
+ 0x64, 0x61, 0x74, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74,
+ 0x69, 0x63, 0x73, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20,
+ 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x72, 0x65, 0x61, 0x6c, 0x2d, 0x74, 0x69,
+ 0x6d, 0x65, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e,
+ 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x66, 0x75, 0x6e, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
+ 0x74, 0x61, 0x74, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4d, 0x6f, 0x6e, 0x69,
+ 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28,
+ 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61,
+ 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72,
+ 0x79, 0x20, 0x7b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72,
+ 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61,
+ 0x5f, 0x74, 0x79, 0x70, 0x65, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x27, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x27, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64,
+ 0x61, 0x74, 0x65, 0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x20, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x73, 0x20, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x61,
+ 0x6e, 0x64, 0x20, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x20, 0x72, 0x61, 0x74,
+ 0x65, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x63, 0x68, 0x61, 0x72, 0x74, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61,
+ 0x74, 0x61, 0x2e, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x65, 0x76, 0x65,
+ 0x6e, 0x74, 0x73, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x75, 0x6e, 0x64, 0x65,
+ 0x66, 0x69, 0x6e, 0x65, 0x64, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x54, 0x6f,
+ 0x74, 0x61, 0x6c, 0x20, 0x3d, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f,
+ 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x74, 0x6f, 0x74,
+ 0x61, 0x6c, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75,
+ 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x43, 0x65,
+ 0x6c, 0x6c, 0x28, 0x27, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x2d, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x73, 0x27, 0x2c, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65,
+ 0x6e, 0x74, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x2e, 0x74, 0x6f, 0x53, 0x74,
+ 0x72, 0x69, 0x6e, 0x67, 0x28, 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x43, 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x6e,
+ 0x65, 0x77, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x73, 0x69,
+ 0x6e, 0x63, 0x65, 0x20, 0x6c, 0x61, 0x73, 0x74, 0x20, 0x75, 0x70, 0x64,
+ 0x61, 0x74, 0x65, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x63, 0x68, 0x61, 0x72,
+ 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f,
+ 0x75, 0x73, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74,
+ 0x73, 0x20, 0x3e, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x65, 0x77, 0x45, 0x76,
+ 0x65, 0x6e, 0x74, 0x73, 0x20, 0x3d, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65,
+ 0x6e, 0x74, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x20, 0x2d, 0x20, 0x70, 0x72,
+ 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45,
+ 0x76, 0x65, 0x6e, 0x74, 0x73, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
+ 0x66, 0x20, 0x28, 0x6e, 0x65, 0x77, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73,
+ 0x20, 0x3e, 0x20, 0x30, 0x20, 0x26, 0x26, 0x20, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x52, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x74, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x41,
+ 0x64, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x24, 0x7b, 0x6e, 0x65, 0x77, 0x45,
+ 0x76, 0x65, 0x6e, 0x74, 0x73, 0x7d, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x61, 0x74,
+ 0x65, 0x20, 0x63, 0x68, 0x61, 0x72, 0x74, 0x20, 0x28, 0x24, 0x7b, 0x63,
+ 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x7d,
+ 0x20, 0x2d, 0x20, 0x24, 0x7b, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75,
+ 0x73, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73,
+ 0x7d, 0x29, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x61, 0x74, 0x65, 0x43,
+ 0x68, 0x61, 0x72, 0x74, 0x2e, 0x61, 0x64, 0x64, 0x56, 0x61, 0x6c, 0x75,
+ 0x65, 0x28, 0x6e, 0x65, 0x77, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
+ 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x70, 0x72, 0x65,
+ 0x76, 0x69, 0x6f, 0x75, 0x73, 0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x20,
+ 0x66, 0x6f, 0x72, 0x20, 0x6e, 0x65, 0x78, 0x74, 0x20, 0x63, 0x61, 0x6c,
+ 0x63, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x72, 0x65,
+ 0x76, 0x69, 0x6f, 0x75, 0x73, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x76,
+ 0x65, 0x6e, 0x74, 0x73, 0x20, 0x3d, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65,
+ 0x6e, 0x74, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74,
+ 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x6b, 0x69, 0x6e, 0x64,
+ 0x73, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x77, 0x69, 0x74, 0x68,
+ 0x20, 0x72, 0x65, 0x61, 0x6c, 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x64,
+ 0x61, 0x74, 0x61, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x69, 0x66, 0x20, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69,
+ 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x73,
+ 0x20, 0x26, 0x26, 0x20, 0x41, 0x72, 0x72, 0x61, 0x79, 0x2e, 0x69, 0x73,
+ 0x41, 0x72, 0x72, 0x61, 0x79, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f,
+ 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x6b, 0x69, 0x6e,
+ 0x64, 0x73, 0x29, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c,
+ 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x4b, 0x69, 0x6e, 0x64,
+ 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72,
+ 0x69, 0x6e, 0x67, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69,
+ 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x73,
+ 0x2c, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67,
+ 0x44, 0x61, 0x74, 0x61, 0x2e, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x73, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20,
+ 0x75, 0x70, 0x64, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x73, 0x74, 0x61,
+ 0x74, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x6d, 0x6f, 0x6e, 0x69,
+ 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x3a, 0x20, 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65,
+ 0x73, 0x73, 0x61, 0x67, 0x65, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x45, 0x52,
+ 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74,
+ 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73,
+ 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x66, 0x72, 0x6f,
+ 0x6d, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73,
+ 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20,
+ 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61,
+ 0x74, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x54, 0x69, 0x6d, 0x65, 0x4d, 0x6f,
+ 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x76, 0x65, 0x6e,
+ 0x74, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67,
+ 0x44, 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f,
+ 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74,
+ 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x27,
+ 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73, 0x27, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64,
+ 0x61, 0x74, 0x65, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x2d, 0x62, 0x61, 0x73,
+ 0x65, 0x64, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
+ 0x73, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x77, 0x69, 0x74, 0x68,
+ 0x20, 0x72, 0x65, 0x61, 0x6c, 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x64,
+ 0x61, 0x74, 0x61, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x69, 0x66, 0x20, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69,
+ 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x65, 0x72, 0x69, 0x6f,
+ 0x64, 0x73, 0x20, 0x26, 0x26, 0x20, 0x41, 0x72, 0x72, 0x61, 0x79, 0x2e,
+ 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x28, 0x6d, 0x6f, 0x6e, 0x69,
+ 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x70,
+ 0x65, 0x72, 0x69, 0x6f, 0x64, 0x73, 0x29, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
+ 0x2f, 0x20, 0x55, 0x73, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x78,
+ 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c,
+ 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x54, 0x69, 0x6d, 0x65,
+ 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x77, 0x68,
+ 0x69, 0x63, 0x68, 0x20, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x73, 0x20,
+ 0x74, 0x68, 0x65, 0x20, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x20, 0x74,
+ 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73, 0x20, 0x6f, 0x62,
+ 0x6a, 0x65, 0x63, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74,
+ 0x69, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x20, 0x3d, 0x20, 0x7b,
+ 0x20, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x32, 0x34, 0x68, 0x3a, 0x20, 0x30,
+ 0x2c, 0x20, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x37, 0x64, 0x3a, 0x20, 0x30,
+ 0x2c, 0x20, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x33, 0x30, 0x64, 0x3a, 0x20,
+ 0x30, 0x20, 0x7d, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x45, 0x78, 0x74,
+ 0x72, 0x61, 0x63, 0x74, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x20,
+ 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x73,
+ 0x20, 0x61, 0x72, 0x72, 0x61, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74,
+ 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x65,
+ 0x72, 0x69, 0x6f, 0x64, 0x73, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63,
+ 0x68, 0x28, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x20, 0x3d, 0x3e, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x65,
+ 0x72, 0x69, 0x6f, 0x64, 0x2e, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x20,
+ 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x32, 0x34,
+ 0x68, 0x27, 0x29, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74,
+ 0x73, 0x2e, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x32, 0x34, 0x68, 0x20, 0x3d,
+ 0x20, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x2e, 0x63, 0x6f, 0x75, 0x6e,
+ 0x74, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20,
+ 0x69, 0x66, 0x20, 0x28, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x2e, 0x70,
+ 0x65, 0x72, 0x69, 0x6f, 0x64, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x6c,
+ 0x61, 0x73, 0x74, 0x5f, 0x37, 0x64, 0x27, 0x29, 0x20, 0x74, 0x69, 0x6d,
+ 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x2e, 0x6c, 0x61, 0x73, 0x74, 0x5f,
+ 0x37, 0x64, 0x20, 0x3d, 0x20, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x2e,
+ 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65,
+ 0x6c, 0x73, 0x65, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x65, 0x72, 0x69,
+ 0x6f, 0x64, 0x2e, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x20, 0x3d, 0x3d,
+ 0x3d, 0x20, 0x27, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x33, 0x30, 0x64, 0x27,
+ 0x29, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x2e,
+ 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x33, 0x30, 0x64, 0x20, 0x3d, 0x20, 0x70,
+ 0x65, 0x72, 0x69, 0x6f, 0x64, 0x2e, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61,
+ 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x28,
+ 0x7b, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73,
+ 0x3a, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x20,
+ 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74,
+ 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67,
+ 0x28, 0x60, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x75, 0x70, 0x64, 0x61,
+ 0x74, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x73, 0x74,
+ 0x61, 0x74, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x6d, 0x6f, 0x6e,
+ 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x3a, 0x20, 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d,
+ 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x45,
+ 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61,
+ 0x74, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
+ 0x73, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x66, 0x72,
+ 0x6f, 0x6d, 0x20, 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x73, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e,
+ 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x66, 0x75, 0x6e, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
+ 0x74, 0x61, 0x74, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x54, 0x6f, 0x70, 0x50,
+ 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f,
0x72, 0x69, 0x6e, 0x67, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x6d, 0x6f,
0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61,
0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20,
0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
0x20, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67,
0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x79,
- 0x70, 0x65, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x27, 0x63, 0x70, 0x75, 0x5f,
- 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x27, 0x29, 0x20, 0x7b, 0x0a,
+ 0x70, 0x65, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x27, 0x74, 0x6f, 0x70, 0x5f,
+ 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x27, 0x29, 0x20, 0x7b, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
- 0x20, 0x43, 0x50, 0x55, 0x20, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73,
- 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x64, 0x61, 0x74, 0x61,
- 0x62, 0x61, 0x73, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74,
- 0x69, 0x63, 0x73, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x20, 0x20,
+ 0x20, 0x74, 0x6f, 0x70, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73,
+ 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20,
+ 0x72, 0x65, 0x61, 0x6c, 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x64, 0x61,
+ 0x74, 0x61, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
+ 0x66, 0x20, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e,
+ 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x73, 0x20, 0x26, 0x26, 0x20, 0x41, 0x72, 0x72, 0x61, 0x79, 0x2e, 0x69,
+ 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74,
+ 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x75,
+ 0x62, 0x6b, 0x65, 0x79, 0x73, 0x29, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x50, 0x61, 0x73, 0x73, 0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f,
+ 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20,
+ 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x64,
+ 0x61, 0x74, 0x61, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x66,
+ 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x6f, 0x70, 0x75,
+ 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x50, 0x75, 0x62,
+ 0x6b, 0x65, 0x79, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4d, 0x6f, 0x6e, 0x69,
+ 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74,
+ 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x75,
+ 0x62, 0x6b, 0x65, 0x79, 0x73, 0x2c, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74,
+ 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x74, 0x6f,
+ 0x74, 0x61, 0x6c, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x7c,
+ 0x7c, 0x20, 0x30, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63,
+ 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c,
+ 0x6f, 0x67, 0x28, 0x60, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x75, 0x70,
+ 0x64, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x70, 0x20, 0x70,
+ 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20,
+ 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x3a, 0x20, 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x7d, 0x60, 0x2c,
+ 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x0a, 0x2f, 0x2f, 0x20,
+ 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69,
+ 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
+ 0x79, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63,
+ 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x65, 0x74, 0x61,
+ 0x69, 0x6c, 0x73, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69,
+ 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x66, 0x75, 0x6e,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
+ 0x53, 0x74, 0x61, 0x74, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x53, 0x75, 0x62,
+ 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x74,
+ 0x61, 0x69, 0x6c, 0x73, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69,
+ 0x6e, 0x67, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x6d, 0x6f, 0x6e, 0x69,
+ 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x44,
+ 0x45, 0x42, 0x55, 0x47, 0x3a, 0x20, 0x4c, 0x6f, 0x67, 0x20, 0x65, 0x76,
+ 0x65, 0x72, 0x79, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
+ 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73,
+ 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20,
+ 0x61, 0x72, 0x72, 0x69, 0x76, 0x65, 0x73, 0x20, 0x61, 0x74, 0x20, 0x74,
+ 0x68, 0x65, 0x20, 0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x73,
+ 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
+ 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x27, 0x2c, 0x20, 0x4a, 0x53,
+ 0x4f, 0x4e, 0x2e, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x69, 0x66, 0x79,
+ 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44,
+ 0x61, 0x74, 0x61, 0x2c, 0x20, 0x6e, 0x75, 0x6c, 0x6c, 0x2c, 0x20, 0x32,
+ 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
+ 0x27, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
+ 0x6e, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x20, 0x64, 0x65,
+ 0x63, 0x6f, 0x64, 0x65, 0x64, 0x3a, 0x27, 0x2c, 0x20, 0x6d, 0x6f, 0x6e,
+ 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x29,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
+ 0x66, 0x20, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e,
+ 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74,
+ 0x79, 0x70, 0x65, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x27, 0x73, 0x75, 0x62,
+ 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x65,
+ 0x74, 0x61, 0x69, 0x6c, 0x73, 0x27, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
+ 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x73,
+ 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20,
+ 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x20, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x72, 0x65, 0x61, 0x6c, 0x2d,
+ 0x74, 0x69, 0x6d, 0x65, 0x20, 0x64, 0x61, 0x74, 0x61, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6d, 0x6f,
0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61,
- 0x2e, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x69, 0x64, 0x20,
- 0x21, 0x3d, 0x3d, 0x20, 0x75, 0x6e, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65,
- 0x64, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
- 0x74, 0x61, 0x74, 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x28, 0x27, 0x70, 0x72,
- 0x6f, 0x63, 0x65, 0x73, 0x73, 0x2d, 0x69, 0x64, 0x27, 0x2c, 0x20, 0x6d,
+ 0x2e, 0x64, 0x61, 0x74, 0x61, 0x20, 0x26, 0x26, 0x20, 0x41, 0x72, 0x72,
+ 0x61, 0x79, 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x28, 0x6d,
0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74,
- 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x69, 0x64,
- 0x2e, 0x74, 0x6f, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x29, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44,
- 0x61, 0x74, 0x61, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x5f, 0x75,
- 0x73, 0x61, 0x67, 0x65, 0x5f, 0x6d, 0x62, 0x20, 0x21, 0x3d, 0x3d, 0x20,
- 0x75, 0x6e, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x29, 0x20, 0x7b,
+ 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63,
+ 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x29, 0x29, 0x20, 0x7b,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73,
- 0x43, 0x65, 0x6c, 0x6c, 0x28, 0x27, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79,
- 0x2d, 0x75, 0x73, 0x61, 0x67, 0x65, 0x27, 0x2c, 0x20, 0x6d, 0x6f, 0x6e,
- 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e,
- 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x5f, 0x75, 0x73, 0x61, 0x67, 0x65,
- 0x5f, 0x6d, 0x62, 0x2e, 0x74, 0x6f, 0x46, 0x69, 0x78, 0x65, 0x64, 0x28,
- 0x31, 0x29, 0x20, 0x2b, 0x20, 0x27, 0x20, 0x4d, 0x42, 0x27, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
- 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61,
- 0x74, 0x61, 0x2e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x63,
- 0x70, 0x75, 0x5f, 0x63, 0x6f, 0x72, 0x65, 0x20, 0x21, 0x3d, 0x3d, 0x20,
- 0x75, 0x6e, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73,
- 0x43, 0x65, 0x6c, 0x6c, 0x28, 0x27, 0x63, 0x70, 0x75, 0x2d, 0x63, 0x6f,
- 0x72, 0x65, 0x27, 0x2c, 0x20, 0x27, 0x43, 0x6f, 0x72, 0x65, 0x20, 0x27,
- 0x20, 0x2b, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e,
- 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e,
- 0x74, 0x5f, 0x63, 0x70, 0x75, 0x5f, 0x63, 0x6f, 0x72, 0x65, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43,
- 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x43, 0x50, 0x55,
- 0x20, 0x75, 0x73, 0x61, 0x67, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65,
- 0x6e, 0x74, 0x61, 0x67, 0x65, 0x20, 0x69, 0x66, 0x20, 0x77, 0x65, 0x20,
- 0x68, 0x61, 0x76, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x64, 0x61, 0x74,
- 0x61, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67,
- 0x44, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
- 0x5f, 0x63, 0x70, 0x75, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x21, 0x3d,
- 0x3d, 0x20, 0x75, 0x6e, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x20,
- 0x26, 0x26, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e,
- 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d,
- 0x5f, 0x63, 0x70, 0x75, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x21, 0x3d,
- 0x3d, 0x20, 0x75, 0x6e, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x46, 0x6f, 0x72, 0x20, 0x6e, 0x6f,
- 0x77, 0x2c, 0x20, 0x6a, 0x75, 0x73, 0x74, 0x20, 0x73, 0x68, 0x6f, 0x77,
- 0x20, 0x74, 0x68, 0x65, 0x20, 0x72, 0x61, 0x77, 0x20, 0x70, 0x72, 0x6f,
- 0x63, 0x65, 0x73, 0x73, 0x20, 0x43, 0x50, 0x55, 0x20, 0x74, 0x69, 0x6d,
- 0x65, 0x20, 0x28, 0x73, 0x69, 0x6d, 0x70, 0x6c, 0x69, 0x66, 0x69, 0x65,
- 0x64, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x20, 0x61, 0x20, 0x72,
- 0x65, 0x61, 0x6c, 0x20, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x20, 0x79, 0x6f, 0x75, 0x27,
- 0x64, 0x20, 0x63, 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20,
- 0x64, 0x65, 0x6c, 0x74, 0x61, 0x73, 0x20, 0x6f, 0x76, 0x65, 0x72, 0x20,
- 0x74, 0x69, 0x6d, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
- 0x74, 0x61, 0x74, 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x28, 0x27, 0x63, 0x70,
- 0x75, 0x2d, 0x75, 0x73, 0x61, 0x67, 0x65, 0x27, 0x2c, 0x20, 0x6d, 0x6f,
+ 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x75, 0x62,
+ 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x74,
+ 0x61, 0x69, 0x6c, 0x73, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x28, 0x6d, 0x6f,
0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61,
- 0x2e, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x63, 0x70, 0x75,
- 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x2b, 0x20, 0x27, 0x20, 0x74, 0x69,
- 0x63, 0x6b, 0x73, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20,
- 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x75,
- 0x70, 0x64, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x43, 0x50, 0x55, 0x20,
- 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d,
+ 0x2e, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
+ 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x73,
+ 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20,
+ 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d,
0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20,
0x65, 0x76, 0x65, 0x6e, 0x74, 0x3a, 0x20, 0x24, 0x7b, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x7d, 0x60,
0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20,
- 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x20, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x6d, 0x6f, 0x6e, 0x69,
- 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x64, 0x61, 0x74, 0x61, 0x0a,
- 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x70, 0x6f, 0x70,
- 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x4b, 0x69,
- 0x6e, 0x64, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4d, 0x6f, 0x6e, 0x69, 0x74,
- 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x44,
- 0x61, 0x74, 0x61, 0x2c, 0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x76,
- 0x65, 0x6e, 0x74, 0x73, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42,
- 0x6f, 0x64, 0x79, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x73, 0x74, 0x61, 0x74, 0x73,
- 0x2d, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x2d, 0x62, 0x6f, 0x64, 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42,
- 0x6f, 0x64, 0x79, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b,
- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42,
- 0x6f, 0x64, 0x79, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d,
- 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x44, 0x61,
- 0x74, 0x61, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3d, 0x3d,
- 0x3d, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x6f, 0x77,
- 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x28, 0x27, 0x74, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x69, 0x6e, 0x6e,
- 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x3c, 0x74,
- 0x64, 0x20, 0x63, 0x6f, 0x6c, 0x73, 0x70, 0x61, 0x6e, 0x3d, 0x22, 0x33,
- 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x74, 0x65, 0x78,
- 0x74, 0x2d, 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x3a, 0x20, 0x63, 0x65, 0x6e,
- 0x74, 0x65, 0x72, 0x3b, 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74,
- 0x79, 0x6c, 0x65, 0x3a, 0x20, 0x69, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x3b,
- 0x22, 0x3e, 0x4e, 0x6f, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x64,
- 0x61, 0x74, 0x61, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x27, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x43,
- 0x68, 0x69, 0x6c, 0x64, 0x28, 0x72, 0x6f, 0x77, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72,
- 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e,
- 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x6b, 0x69, 0x6e, 0x64,
- 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x6f, 0x77, 0x20,
- 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x28, 0x27, 0x74, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x65,
- 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x20, 0x3d, 0x20, 0x74,
- 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x3e,
- 0x20, 0x30, 0x20, 0x3f, 0x20, 0x28, 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x2e,
- 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x2f, 0x20, 0x74, 0x6f, 0x74, 0x61,
- 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x29, 0x20, 0x2a, 0x20, 0x31,
- 0x30, 0x30, 0x29, 0x2e, 0x74, 0x6f, 0x46, 0x69, 0x78, 0x65, 0x64, 0x28,
- 0x31, 0x29, 0x20, 0x3a, 0x20, 0x27, 0x30, 0x2e, 0x30, 0x27, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x6f, 0x77, 0x2e,
- 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20,
- 0x60, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74,
- 0x64, 0x3e, 0x24, 0x7b, 0x6b, 0x69, 0x6e, 0x64, 0x2e, 0x6b, 0x69, 0x6e,
- 0x64, 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x24, 0x7b, 0x6b, 0x69,
- 0x6e, 0x64, 0x2e, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x7d, 0x3c, 0x2f, 0x74,
- 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x74, 0x64, 0x3e, 0x24, 0x7b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74,
- 0x61, 0x67, 0x65, 0x7d, 0x25, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x60, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e,
- 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28,
- 0x72, 0x6f, 0x77, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29,
- 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x50, 0x6f, 0x70, 0x75,
- 0x6c, 0x61, 0x74, 0x65, 0x20, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73,
- 0x65, 0x20, 0x6f, 0x76, 0x65, 0x72, 0x76, 0x69, 0x65, 0x77, 0x20, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
- 0x6e, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74,
- 0x61, 0x74, 0x73, 0x4f, 0x76, 0x65, 0x72, 0x76, 0x69, 0x65, 0x77, 0x28,
- 0x64, 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x66, 0x20, 0x28, 0x21, 0x64, 0x61, 0x74, 0x61, 0x29, 0x20, 0x72,
- 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x69, 0x6e,
- 0x64, 0x69, 0x76, 0x69, 0x64, 0x75, 0x61, 0x6c, 0x20, 0x63, 0x65, 0x6c,
- 0x6c, 0x73, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x66, 0x6c, 0x61, 0x73,
- 0x68, 0x20, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20,
- 0x66, 0x6f, 0x72, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x20,
- 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75,
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x43, 0x65,
- 0x6c, 0x6c, 0x28, 0x27, 0x64, 0x62, 0x2d, 0x73, 0x69, 0x7a, 0x65, 0x27,
- 0x2c, 0x20, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x62,
- 0x61, 0x73, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x62, 0x79, 0x74,
- 0x65, 0x73, 0x20, 0x3f, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x46,
- 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x28, 0x64, 0x61, 0x74, 0x61,
- 0x2e, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x73, 0x69,
- 0x7a, 0x65, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x29, 0x20, 0x3a, 0x20,
- 0x27, 0x2d, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70,
+ 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69,
+ 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
+ 0x79, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x43, 0x50, 0x55, 0x20, 0x6d,
+ 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74,
+ 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a,
+ 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64,
+ 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x46, 0x72, 0x6f, 0x6d,
+ 0x43, 0x70, 0x75, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e,
+ 0x67, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74,
+ 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6d,
+ 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74,
+ 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x20,
+ 0x21, 0x3d, 0x3d, 0x20, 0x27, 0x63, 0x70, 0x75, 0x5f, 0x6d, 0x65, 0x74,
+ 0x72, 0x69, 0x63, 0x73, 0x27, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74,
+ 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x43, 0x50,
+ 0x55, 0x20, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x20, 0x69, 0x6e,
+ 0x20, 0x74, 0x68, 0x65, 0x20, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73,
+ 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73,
+ 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6d, 0x6f, 0x6e, 0x69, 0x74,
+ 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x72,
+ 0x6f, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x69, 0x64, 0x20, 0x21, 0x3d, 0x3d,
+ 0x20, 0x75, 0x6e, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74,
+ 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x28, 0x27, 0x70, 0x72, 0x6f, 0x63, 0x65,
+ 0x73, 0x73, 0x2d, 0x69, 0x64, 0x27, 0x2c, 0x20, 0x6d, 0x6f, 0x6e, 0x69,
+ 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x70,
+ 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x69, 0x64, 0x2e, 0x74, 0x6f,
+ 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x29, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6d, 0x6f,
+ 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61,
+ 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x5f, 0x75, 0x73, 0x61, 0x67,
+ 0x65, 0x5f, 0x6d, 0x62, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x75, 0x6e, 0x64,
+ 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70,
0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x43, 0x65, 0x6c,
- 0x6c, 0x28, 0x27, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x2d, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x73, 0x27, 0x2c, 0x20, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x74,
- 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20,
- 0x7c, 0x7c, 0x20, 0x27, 0x2d, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73,
- 0x43, 0x65, 0x6c, 0x6c, 0x28, 0x27, 0x6f, 0x6c, 0x64, 0x65, 0x73, 0x74,
- 0x2d, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x27, 0x2c, 0x20, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x20, 0x3f, 0x20,
- 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
- 0x61, 0x6d, 0x70, 0x28, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x64, 0x61, 0x74,
- 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
- 0x64, 0x5f, 0x61, 0x74, 0x29, 0x20, 0x3a, 0x20, 0x27, 0x2d, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
- 0x53, 0x74, 0x61, 0x74, 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x28, 0x27, 0x6e,
- 0x65, 0x77, 0x65, 0x73, 0x74, 0x2d, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x27,
- 0x2c, 0x20, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x6c, 0x61, 0x74, 0x65, 0x73,
- 0x74, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x74, 0x20, 0x3f,
- 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x73,
- 0x74, 0x61, 0x6d, 0x70, 0x28, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x6c, 0x61,
- 0x74, 0x65, 0x73, 0x74, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x61,
- 0x74, 0x29, 0x20, 0x3a, 0x20, 0x27, 0x2d, 0x27, 0x29, 0x3b, 0x0a, 0x7d,
- 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74,
- 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x6b, 0x69, 0x6e, 0x64,
- 0x73, 0x20, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x66, 0x75, 0x6e,
+ 0x6c, 0x28, 0x27, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x2d, 0x75, 0x73,
+ 0x61, 0x67, 0x65, 0x27, 0x2c, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f,
+ 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x6d, 0x65, 0x6d,
+ 0x6f, 0x72, 0x79, 0x5f, 0x75, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x6d, 0x62,
+ 0x2e, 0x74, 0x6f, 0x46, 0x69, 0x78, 0x65, 0x64, 0x28, 0x31, 0x29, 0x20,
+ 0x2b, 0x20, 0x27, 0x20, 0x4d, 0x42, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6d, 0x6f, 0x6e,
+ 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e,
+ 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x70, 0x75, 0x5f,
+ 0x63, 0x6f, 0x72, 0x65, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x75, 0x6e, 0x64,
+ 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70,
+ 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x43, 0x65, 0x6c,
+ 0x6c, 0x28, 0x27, 0x63, 0x70, 0x75, 0x2d, 0x63, 0x6f, 0x72, 0x65, 0x27,
+ 0x2c, 0x20, 0x27, 0x43, 0x6f, 0x72, 0x65, 0x20, 0x27, 0x20, 0x2b, 0x20,
+ 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61,
+ 0x74, 0x61, 0x2e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x63,
+ 0x70, 0x75, 0x5f, 0x63, 0x6f, 0x72, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x61, 0x6c, 0x63,
+ 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x43, 0x50, 0x55, 0x20, 0x75, 0x73,
+ 0x61, 0x67, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61,
+ 0x67, 0x65, 0x20, 0x69, 0x66, 0x20, 0x77, 0x65, 0x20, 0x68, 0x61, 0x76,
+ 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x64, 0x61, 0x74, 0x61, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6d,
+ 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74,
+ 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x63, 0x70,
+ 0x75, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x75,
+ 0x6e, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x20, 0x26, 0x26, 0x20,
+ 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61,
+ 0x74, 0x61, 0x2e, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x5f, 0x63, 0x70,
+ 0x75, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x75,
+ 0x6e, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x46, 0x6f, 0x72, 0x20, 0x6e, 0x6f, 0x77, 0x2c, 0x20,
+ 0x6a, 0x75, 0x73, 0x74, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x20, 0x74, 0x68,
+ 0x65, 0x20, 0x72, 0x61, 0x77, 0x20, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73,
+ 0x73, 0x20, 0x43, 0x50, 0x55, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x28,
+ 0x73, 0x69, 0x6d, 0x70, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x64, 0x29, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x20, 0x61, 0x20, 0x72, 0x65, 0x61, 0x6c,
+ 0x20, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x2c, 0x20, 0x79, 0x6f, 0x75, 0x27, 0x64, 0x20, 0x63,
+ 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x64, 0x65, 0x6c,
+ 0x74, 0x61, 0x73, 0x20, 0x6f, 0x76, 0x65, 0x72, 0x20, 0x74, 0x69, 0x6d,
+ 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74,
+ 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x28, 0x27, 0x63, 0x70, 0x75, 0x2d, 0x75,
+ 0x73, 0x61, 0x67, 0x65, 0x27, 0x2c, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74,
+ 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x72,
+ 0x6f, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x63, 0x70, 0x75, 0x5f, 0x74, 0x69,
+ 0x6d, 0x65, 0x20, 0x2b, 0x20, 0x27, 0x20, 0x74, 0x69, 0x63, 0x6b, 0x73,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74,
+ 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67,
+ 0x28, 0x60, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x75, 0x70, 0x64, 0x61,
+ 0x74, 0x69, 0x6e, 0x67, 0x20, 0x43, 0x50, 0x55, 0x20, 0x6d, 0x65, 0x74,
+ 0x72, 0x69, 0x63, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x6d, 0x6f,
+ 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65,
+ 0x6e, 0x74, 0x3a, 0x20, 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
+ 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x7d, 0x60, 0x2c, 0x20, 0x27,
+ 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x50, 0x6f, 0x70,
+ 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20,
+ 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x20,
+ 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72,
+ 0x69, 0x6e, 0x67, 0x20, 0x64, 0x61, 0x74, 0x61, 0x0a, 0x66, 0x75, 0x6e,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61,
0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x4b, 0x69, 0x6e, 0x64, 0x73,
- 0x28, 0x64, 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x42, 0x6f, 0x64, 0x79, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x73, 0x74, 0x61, 0x74,
- 0x73, 0x2d, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x2d, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x2d, 0x62, 0x6f, 0x64, 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x42, 0x6f, 0x64, 0x79, 0x20, 0x7c, 0x7c, 0x20, 0x21, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x6b, 0x69, 0x6e, 0x64,
- 0x73, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x0a,
+ 0x46, 0x72, 0x6f, 0x6d, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69,
+ 0x6e, 0x67, 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x44, 0x61, 0x74, 0x61,
+ 0x2c, 0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74,
+ 0x73, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79,
+ 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
+ 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79,
+ 0x49, 0x64, 0x28, 0x27, 0x73, 0x74, 0x61, 0x74, 0x73, 0x2d, 0x6b, 0x69,
+ 0x6e, 0x64, 0x73, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x62, 0x6f,
+ 0x64, 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
+ 0x20, 0x28, 0x21, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79,
+ 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79,
+ 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d,
+ 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
+ 0x20, 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e,
+ 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x30,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x3d, 0x20,
+ 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65,
+ 0x61, 0x74, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27,
+ 0x74, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48,
+ 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x3c, 0x74, 0x64, 0x20, 0x63,
+ 0x6f, 0x6c, 0x73, 0x70, 0x61, 0x6e, 0x3d, 0x22, 0x33, 0x22, 0x20, 0x73,
+ 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x74, 0x65, 0x78, 0x74, 0x2d, 0x61,
+ 0x6c, 0x69, 0x67, 0x6e, 0x3a, 0x20, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72,
+ 0x3b, 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65,
+ 0x3a, 0x20, 0x69, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x3b, 0x22, 0x3e, 0x4e,
+ 0x6f, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x64, 0x61, 0x74, 0x61,
+ 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64,
- 0x79, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20,
- 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69,
- 0x66, 0x20, 0x28, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x65, 0x76, 0x65, 0x6e,
- 0x74, 0x5f, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67,
- 0x74, 0x68, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x74, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45,
- 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x74, 0x72, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x6f,
- 0x77, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20,
- 0x3d, 0x20, 0x27, 0x3c, 0x74, 0x64, 0x20, 0x63, 0x6f, 0x6c, 0x73, 0x70,
- 0x61, 0x6e, 0x3d, 0x22, 0x33, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65,
- 0x3d, 0x22, 0x74, 0x65, 0x78, 0x74, 0x2d, 0x61, 0x6c, 0x69, 0x67, 0x6e,
- 0x3a, 0x20, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x3b, 0x20, 0x66, 0x6f,
- 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3a, 0x20, 0x69, 0x74,
- 0x61, 0x6c, 0x69, 0x63, 0x3b, 0x22, 0x3e, 0x4e, 0x6f, 0x20, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x20, 0x64, 0x61, 0x74, 0x61, 0x3c, 0x2f, 0x74, 0x64,
- 0x3e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x61, 0x70,
- 0x70, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28, 0x72, 0x6f,
- 0x77, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x64, 0x61, 0x74, 0x61, 0x2e,
- 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x2e,
- 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x6b, 0x69, 0x6e, 0x64,
- 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x6f, 0x77, 0x20,
- 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x28, 0x27, 0x74, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x69, 0x6e, 0x6e, 0x65,
- 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x60, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x24, 0x7b,
- 0x6b, 0x69, 0x6e, 0x64, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x7d, 0x3c, 0x2f,
- 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x74, 0x64, 0x3e, 0x24, 0x7b, 0x6b, 0x69, 0x6e, 0x64, 0x2e, 0x63,
- 0x6f, 0x75, 0x6e, 0x74, 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20,
+ 0x79, 0x2e, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c,
+ 0x64, 0x28, 0x72, 0x6f, 0x77, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6b,
+ 0x69, 0x6e, 0x64, 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x66, 0x6f, 0x72,
+ 0x45, 0x61, 0x63, 0x68, 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x3d, 0x3e,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x64,
+ 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61,
+ 0x74, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x74,
+ 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65,
+ 0x6e, 0x74, 0x61, 0x67, 0x65, 0x20, 0x3d, 0x20, 0x74, 0x6f, 0x74, 0x61,
+ 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x3e, 0x20, 0x30, 0x20,
+ 0x3f, 0x20, 0x28, 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x2e, 0x63, 0x6f, 0x75,
+ 0x6e, 0x74, 0x20, 0x2f, 0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x76,
+ 0x65, 0x6e, 0x74, 0x73, 0x29, 0x20, 0x2a, 0x20, 0x31, 0x30, 0x30, 0x29,
+ 0x2e, 0x74, 0x6f, 0x46, 0x69, 0x78, 0x65, 0x64, 0x28, 0x31, 0x29, 0x20,
+ 0x3a, 0x20, 0x27, 0x30, 0x2e, 0x30, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x69, 0x6e, 0x6e,
+ 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x60, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x24,
- 0x7b, 0x6b, 0x69, 0x6e, 0x64, 0x2e, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e,
- 0x74, 0x61, 0x67, 0x65, 0x7d, 0x25, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a,
+ 0x7b, 0x6b, 0x69, 0x6e, 0x64, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x7d, 0x3c,
+ 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x60, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79,
- 0x2e, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64,
- 0x28, 0x72, 0x6f, 0x77, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x50, 0x6f, 0x70,
- 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x2d, 0x62,
- 0x61, 0x73, 0x65, 0x64, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74,
- 0x69, 0x63, 0x73, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x66, 0x75,
- 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c,
- 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x54, 0x69, 0x6d, 0x65,
- 0x28, 0x64, 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x64, 0x61, 0x74, 0x61, 0x29, 0x20,
- 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x20, 0x74,
- 0x68, 0x65, 0x20, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x20, 0x74, 0x69,
- 0x6d, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73, 0x20, 0x6f, 0x62, 0x6a,
- 0x65, 0x63, 0x74, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x62, 0x61, 0x63,
- 0x6b, 0x65, 0x6e, 0x64, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
- 0x74, 0x69, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x20, 0x3d, 0x20,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x74,
- 0x61, 0x74, 0x73, 0x20, 0x7c, 0x7c, 0x20, 0x7b, 0x7d, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20, 0x77, 0x69, 0x74, 0x68,
- 0x20, 0x66, 0x6c, 0x61, 0x73, 0x68, 0x20, 0x61, 0x6e, 0x69, 0x6d, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x63, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x64, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74,
- 0x61, 0x74, 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x28, 0x27, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x73, 0x2d, 0x32, 0x34, 0x68, 0x27, 0x2c, 0x20, 0x74, 0x69,
- 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x2e, 0x6c, 0x61, 0x73, 0x74,
- 0x5f, 0x32, 0x34, 0x68, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x30, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
- 0x53, 0x74, 0x61, 0x74, 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x28, 0x27, 0x65,
- 0x76, 0x65, 0x6e, 0x74, 0x73, 0x2d, 0x37, 0x64, 0x27, 0x2c, 0x20, 0x74,
- 0x69, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x2e, 0x6c, 0x61, 0x73,
- 0x74, 0x5f, 0x37, 0x64, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x30, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
- 0x53, 0x74, 0x61, 0x74, 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x28, 0x27, 0x65,
- 0x76, 0x65, 0x6e, 0x74, 0x73, 0x2d, 0x33, 0x30, 0x64, 0x27, 0x2c, 0x20,
- 0x74, 0x69, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x2e, 0x6c, 0x61,
- 0x73, 0x74, 0x5f, 0x33, 0x30, 0x64, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x30,
- 0x27, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x50, 0x6f,
- 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x74, 0x6f, 0x70, 0x20, 0x70,
- 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x70, 0x6f,
- 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x50,
- 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x28, 0x64, 0x61, 0x74, 0x61, 0x29,
+ 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x24, 0x7b, 0x6b, 0x69, 0x6e, 0x64, 0x2e,
+ 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e,
+ 0x24, 0x7b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65,
+ 0x7d, 0x25, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x60, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x61, 0x70, 0x70,
+ 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28, 0x72, 0x6f, 0x77,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x7d,
+ 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74,
+ 0x65, 0x20, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x20, 0x6f,
+ 0x76, 0x65, 0x72, 0x76, 0x69, 0x65, 0x77, 0x20, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x70,
+ 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73,
+ 0x4f, 0x76, 0x65, 0x72, 0x76, 0x69, 0x65, 0x77, 0x28, 0x64, 0x61, 0x74,
+ 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
+ 0x28, 0x21, 0x64, 0x61, 0x74, 0x61, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75,
+ 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x69, 0x6e, 0x64, 0x69, 0x76,
+ 0x69, 0x64, 0x75, 0x61, 0x6c, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20,
+ 0x77, 0x69, 0x74, 0x68, 0x20, 0x66, 0x6c, 0x61, 0x73, 0x68, 0x20, 0x61,
+ 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x6f, 0x72,
+ 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x20, 0x76, 0x61, 0x6c,
+ 0x75, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x42,
+ 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x73,
+ 0x3a, 0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x62, 0x79, 0x74, 0x65,
+ 0x73, 0x2c, 0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x62, 0x6c, 0x6f,
+ 0x62, 0x73, 0x2c, 0x20, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x75, 0x70,
+ 0x6c, 0x6f, 0x61, 0x64, 0x2c, 0x20, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75,
+ 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70,
+ 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x43, 0x65, 0x6c,
+ 0x6c, 0x28, 0x27, 0x64, 0x62, 0x2d, 0x73, 0x69, 0x7a, 0x65, 0x27, 0x2c,
+ 0x20, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f,
+ 0x62, 0x79, 0x74, 0x65, 0x73, 0x20, 0x3f, 0x20, 0x66, 0x6f, 0x72, 0x6d,
+ 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x28, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x62, 0x79,
+ 0x74, 0x65, 0x73, 0x29, 0x20, 0x3a, 0x20, 0x27, 0x2d, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
+ 0x74, 0x61, 0x74, 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x28, 0x27, 0x74, 0x6f,
+ 0x74, 0x61, 0x6c, 0x2d, 0x73, 0x69, 0x7a, 0x65, 0x27, 0x2c, 0x20, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x62, 0x79,
+ 0x74, 0x65, 0x73, 0x20, 0x3f, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
+ 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x28, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x62, 0x79, 0x74, 0x65,
+ 0x73, 0x29, 0x20, 0x3a, 0x20, 0x27, 0x2d, 0x27, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61,
+ 0x74, 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x28, 0x27, 0x74, 0x6f, 0x74, 0x61,
+ 0x6c, 0x2d, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x27, 0x2c, 0x20, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x62, 0x6c,
+ 0x6f, 0x62, 0x73, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x2d, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
+ 0x74, 0x61, 0x74, 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x28, 0x27, 0x6f, 0x6c,
+ 0x64, 0x65, 0x73, 0x74, 0x2d, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x27, 0x2c,
+ 0x20, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f,
+ 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x20, 0x3f, 0x20, 0x66, 0x6f, 0x72,
+ 0x6d, 0x61, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
+ 0x28, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f,
+ 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x29, 0x20, 0x3a, 0x20, 0x27, 0x2d,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61,
+ 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x28,
+ 0x27, 0x6e, 0x65, 0x77, 0x65, 0x73, 0x74, 0x2d, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x27, 0x2c, 0x20, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x6c, 0x61, 0x73,
+ 0x74, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x20, 0x3f, 0x20, 0x66,
+ 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
+ 0x6d, 0x70, 0x28, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x6c, 0x61, 0x73, 0x74,
+ 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x29, 0x20, 0x3a, 0x20, 0x27,
+ 0x2d, 0x27, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x50,
+ 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x20, 0x64, 0x69, 0x73, 0x74,
+ 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
+ 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74,
+ 0x73, 0x4b, 0x69, 0x6e, 0x64, 0x73, 0x28, 0x64, 0x61, 0x74, 0x61, 0x29,
0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x20, 0x3d,
0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65,
0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64,
- 0x28, 0x27, 0x73, 0x74, 0x61, 0x74, 0x73, 0x2d, 0x70, 0x75, 0x62, 0x6b,
- 0x65, 0x79, 0x73, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x62, 0x6f,
- 0x64, 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x21, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79,
- 0x20, 0x7c, 0x7c, 0x20, 0x21, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x74, 0x6f,
- 0x70, 0x5f, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x29, 0x20, 0x72,
- 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x69, 0x6e,
- 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x27,
- 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x75, 0x62, 0x6b,
- 0x65, 0x79, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3d,
- 0x3d, 0x3d, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x6f,
- 0x77, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x28, 0x27, 0x74, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x69, 0x6e,
- 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x3c,
- 0x74, 0x64, 0x20, 0x63, 0x6f, 0x6c, 0x73, 0x70, 0x61, 0x6e, 0x3d, 0x22,
- 0x34, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x74, 0x65,
- 0x78, 0x74, 0x2d, 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x3a, 0x20, 0x63, 0x65,
- 0x6e, 0x74, 0x65, 0x72, 0x3b, 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73,
- 0x74, 0x79, 0x6c, 0x65, 0x3a, 0x20, 0x69, 0x74, 0x61, 0x6c, 0x69, 0x63,
- 0x3b, 0x22, 0x3e, 0x4e, 0x6f, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
- 0x20, 0x64, 0x61, 0x74, 0x61, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x27, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x65, 0x6e,
- 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28, 0x72, 0x6f, 0x77, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74,
- 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x74, 0x6f, 0x70,
- 0x5f, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x2e, 0x66, 0x6f, 0x72,
- 0x45, 0x61, 0x63, 0x68, 0x28, 0x28, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
- 0x2c, 0x20, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x29, 0x20, 0x3d, 0x3e, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x64, 0x6f,
- 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74,
- 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x74, 0x72,
- 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x20, 0x68,
- 0x65, 0x78, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x74, 0x6f,
- 0x20, 0x6e, 0x70, 0x75, 0x62, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x64, 0x69,
- 0x73, 0x70, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
- 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x20, 0x70, 0x75,
- 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20,
- 0x7c, 0x7c, 0x20, 0x27, 0x2d, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x28, 0x27, 0x73, 0x74, 0x61, 0x74, 0x73, 0x2d, 0x6b, 0x69, 0x6e, 0x64,
+ 0x73, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x62, 0x6f, 0x64, 0x79,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x21, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x29, 0x20,
+ 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x69,
+ 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27,
+ 0x27, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x48,
+ 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x62, 0x6f, 0x74, 0x68, 0x20, 0x6f,
+ 0x6c, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x20, 0x28, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x6b, 0x69,
+ 0x6e, 0x64, 0x73, 0x29, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x6e, 0x65, 0x77,
+ 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x20, 0x28, 0x64, 0x69, 0x72,
+ 0x65, 0x63, 0x74, 0x20, 0x61, 0x72, 0x72, 0x61, 0x79, 0x20, 0x66, 0x72,
+ 0x6f, 0x6d, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x76, 0x69, 0x65,
+ 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
+ 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x44, 0x61, 0x74, 0x61, 0x20, 0x3d,
+ 0x20, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f,
+ 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x20, 0x7c, 0x7c, 0x20, 0x64, 0x61, 0x74,
+ 0x61, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x69, 0x66, 0x20, 0x28, 0x21, 0x41, 0x72, 0x72, 0x61, 0x79, 0x2e, 0x69,
+ 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x73,
+ 0x44, 0x61, 0x74, 0x61, 0x29, 0x20, 0x7c, 0x7c, 0x20, 0x6b, 0x69, 0x6e,
+ 0x64, 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74,
+ 0x68, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
+ 0x20, 0x72, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
+ 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6c,
+ 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x74, 0x72, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x6f, 0x77,
+ 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d,
+ 0x20, 0x27, 0x3c, 0x74, 0x64, 0x20, 0x63, 0x6f, 0x6c, 0x73, 0x70, 0x61,
+ 0x6e, 0x3d, 0x22, 0x33, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d,
+ 0x22, 0x74, 0x65, 0x78, 0x74, 0x2d, 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x3a,
+ 0x20, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x3b, 0x20, 0x66, 0x6f, 0x6e,
+ 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3a, 0x20, 0x69, 0x74, 0x61,
+ 0x6c, 0x69, 0x63, 0x3b, 0x22, 0x3e, 0x4e, 0x6f, 0x20, 0x62, 0x6c, 0x6f,
+ 0x62, 0x20, 0x74, 0x79, 0x70, 0x65, 0x20, 0x64, 0x61, 0x74, 0x61, 0x3c,
+ 0x2f, 0x74, 0x64, 0x3e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79,
+ 0x2e, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64,
+ 0x28, 0x72, 0x6f, 0x77, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x43, 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x74,
+ 0x6f, 0x74, 0x61, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x70, 0x65, 0x72,
+ 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x73, 0x20, 0x69, 0x66, 0x20,
+ 0x6e, 0x6f, 0x74, 0x20, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x64,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74,
+ 0x6f, 0x74, 0x61, 0x6c, 0x20, 0x3d, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x73,
+ 0x44, 0x61, 0x74, 0x61, 0x2e, 0x72, 0x65, 0x64, 0x75, 0x63, 0x65, 0x28,
+ 0x28, 0x73, 0x75, 0x6d, 0x2c, 0x20, 0x69, 0x74, 0x65, 0x6d, 0x29, 0x20,
+ 0x3d, 0x3e, 0x20, 0x73, 0x75, 0x6d, 0x20, 0x2b, 0x20, 0x28, 0x69, 0x74,
+ 0x65, 0x6d, 0x2e, 0x62, 0x6c, 0x6f, 0x62, 0x5f, 0x63, 0x6f, 0x75, 0x6e,
+ 0x74, 0x20, 0x7c, 0x7c, 0x20, 0x69, 0x74, 0x65, 0x6d, 0x2e, 0x63, 0x6f,
+ 0x75, 0x6e, 0x74, 0x20, 0x7c, 0x7c, 0x20, 0x30, 0x29, 0x2c, 0x20, 0x30,
+ 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x69, 0x6e, 0x64,
+ 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63,
+ 0x68, 0x28, 0x69, 0x74, 0x65, 0x6d, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
+ 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45,
+ 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x74, 0x72, 0x27, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x74, 0x20, 0x6d, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65,
+ 0x20, 0x3d, 0x20, 0x69, 0x74, 0x65, 0x6d, 0x2e, 0x6d, 0x69, 0x6d, 0x65,
+ 0x5f, 0x74, 0x79, 0x70, 0x65, 0x20, 0x7c, 0x7c, 0x20, 0x69, 0x74, 0x65,
+ 0x6d, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x2d,
+ 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x3d,
+ 0x20, 0x69, 0x74, 0x65, 0x6d, 0x2e, 0x62, 0x6c, 0x6f, 0x62, 0x5f, 0x63,
+ 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x7c, 0x7c, 0x20, 0x69, 0x74, 0x65, 0x6d,
+ 0x2e, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x7c, 0x7c, 0x20, 0x30, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67,
+ 0x65, 0x20, 0x3d, 0x20, 0x69, 0x74, 0x65, 0x6d, 0x2e, 0x70, 0x65, 0x72,
+ 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x20, 0x7c, 0x7c, 0x20, 0x28,
+ 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x20, 0x3e, 0x20, 0x30, 0x20, 0x3f, 0x20,
+ 0x28, 0x28, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x2f, 0x20, 0x74, 0x6f,
+ 0x74, 0x61, 0x6c, 0x29, 0x20, 0x2a, 0x20, 0x31, 0x30, 0x30, 0x29, 0x2e,
+ 0x74, 0x6f, 0x46, 0x69, 0x78, 0x65, 0x64, 0x28, 0x31, 0x29, 0x20, 0x3a,
+ 0x20, 0x30, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x6f,
+ 0x77, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20,
+ 0x3d, 0x20, 0x60, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x74, 0x64, 0x3e, 0x24, 0x7b, 0x6d, 0x69, 0x6d, 0x65, 0x54, 0x79,
+ 0x70, 0x65, 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x24, 0x7b, 0x63,
+ 0x6f, 0x75, 0x6e, 0x74, 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x24,
+ 0x7b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x7d,
+ 0x25, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x60,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61,
+ 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x65,
+ 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28, 0x72, 0x6f, 0x77, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x7d, 0x0a,
+ 0x0a, 0x2f, 0x2f, 0x20, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65,
+ 0x20, 0x74, 0x69, 0x6d, 0x65, 0x2d, 0x62, 0x61, 0x73, 0x65, 0x64, 0x20,
+ 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74,
+ 0x61, 0x74, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x28, 0x64, 0x61, 0x74, 0x61,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x21, 0x64, 0x61, 0x74, 0x61, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72,
+ 0x6e, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55,
+ 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x73, 0x20,
+ 0x77, 0x69, 0x74, 0x68, 0x20, 0x66, 0x6c, 0x61, 0x73, 0x68, 0x20, 0x61,
+ 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x6f, 0x72,
+ 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x20, 0x76, 0x61, 0x6c,
+ 0x75, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61,
+ 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x28,
+ 0x27, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x2d, 0x32, 0x34, 0x68, 0x27,
+ 0x2c, 0x20, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x62, 0x6c, 0x6f, 0x62, 0x73,
+ 0x5f, 0x32, 0x34, 0x68, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x30, 0x27, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
+ 0x53, 0x74, 0x61, 0x74, 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x28, 0x27, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x73, 0x2d, 0x37, 0x64, 0x27, 0x2c, 0x20, 0x64,
+ 0x61, 0x74, 0x61, 0x2e, 0x62, 0x6c, 0x6f, 0x62, 0x73, 0x5f, 0x37, 0x64,
+ 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x30, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74,
+ 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x28, 0x27, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x73, 0x2d, 0x33, 0x30, 0x64, 0x27, 0x2c, 0x20, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x62, 0x6c, 0x6f, 0x62, 0x73, 0x5f, 0x33, 0x30, 0x64, 0x20, 0x7c,
+ 0x7c, 0x20, 0x27, 0x30, 0x27, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f,
+ 0x2f, 0x20, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x74,
+ 0x6f, 0x70, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x20, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74,
+ 0x61, 0x74, 0x73, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x28, 0x64,
+ 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f,
+ 0x64, 0x79, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e,
+ 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
+ 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x73, 0x74, 0x61, 0x74, 0x73, 0x2d,
+ 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x2d, 0x74, 0x61, 0x62, 0x6c,
+ 0x65, 0x2d, 0x62, 0x6f, 0x64, 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x42, 0x6f, 0x64, 0x79, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54,
+ 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20,
+ 0x62, 0x6f, 0x74, 0x68, 0x20, 0x6f, 0x6c, 0x64, 0x20, 0x66, 0x6f, 0x72,
+ 0x6d, 0x61, 0x74, 0x20, 0x28, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x74, 0x6f,
+ 0x70, 0x5f, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x29, 0x20, 0x61,
+ 0x6e, 0x64, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61,
+ 0x74, 0x20, 0x28, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x20, 0x61, 0x72,
+ 0x72, 0x61, 0x79, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x71, 0x75, 0x65,
+ 0x72, 0x79, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x73, 0x44, 0x61, 0x74, 0x61, 0x20, 0x3d, 0x20, 0x64, 0x61, 0x74,
+ 0x61, 0x2e, 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x73, 0x20, 0x7c, 0x7c, 0x20, 0x64, 0x61, 0x74, 0x61, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x21, 0x41, 0x72, 0x72, 0x61, 0x79, 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72,
+ 0x61, 0x79, 0x28, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x44, 0x61,
+ 0x74, 0x61, 0x29, 0x20, 0x7c, 0x7c, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74,
+ 0x68, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
+ 0x20, 0x72, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
+ 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6c,
+ 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x74, 0x72, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x6f, 0x77,
+ 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d,
+ 0x20, 0x27, 0x3c, 0x74, 0x64, 0x20, 0x63, 0x6f, 0x6c, 0x73, 0x70, 0x61,
+ 0x6e, 0x3d, 0x22, 0x35, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d,
+ 0x22, 0x74, 0x65, 0x78, 0x74, 0x2d, 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x3a,
+ 0x20, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x3b, 0x20, 0x66, 0x6f, 0x6e,
+ 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3a, 0x20, 0x69, 0x74, 0x61,
+ 0x6c, 0x69, 0x63, 0x3b, 0x22, 0x3e, 0x4e, 0x6f, 0x20, 0x75, 0x70, 0x6c,
+ 0x6f, 0x61, 0x64, 0x65, 0x72, 0x20, 0x64, 0x61, 0x74, 0x61, 0x3c, 0x2f,
+ 0x74, 0x64, 0x3e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e,
+ 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28,
+ 0x72, 0x6f, 0x77, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x43, 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x74, 0x6f,
+ 0x74, 0x61, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x70, 0x65, 0x72, 0x63,
+ 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x73, 0x20, 0x69, 0x66, 0x20, 0x6e,
+ 0x6f, 0x74, 0x20, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x64, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x6f,
+ 0x74, 0x61, 0x6c, 0x20, 0x3d, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x72, 0x65, 0x64, 0x75, 0x63, 0x65,
+ 0x28, 0x28, 0x73, 0x75, 0x6d, 0x2c, 0x20, 0x69, 0x74, 0x65, 0x6d, 0x29,
+ 0x20, 0x3d, 0x3e, 0x20, 0x73, 0x75, 0x6d, 0x20, 0x2b, 0x20, 0x28, 0x69,
+ 0x74, 0x65, 0x6d, 0x2e, 0x62, 0x6c, 0x6f, 0x62, 0x5f, 0x63, 0x6f, 0x75,
+ 0x6e, 0x74, 0x20, 0x7c, 0x7c, 0x20, 0x30, 0x29, 0x2c, 0x20, 0x30, 0x29,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61,
+ 0x63, 0x68, 0x28, 0x28, 0x69, 0x74, 0x65, 0x6d, 0x2c, 0x20, 0x69, 0x6e,
+ 0x64, 0x65, 0x78, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x72, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
+ 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6c, 0x65,
+ 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x74, 0x72, 0x27, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x48,
+ 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x62, 0x6f, 0x74, 0x68, 0x20, 0x75,
+ 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x72, 0x5f, 0x70, 0x75, 0x62, 0x6b,
+ 0x65, 0x79, 0x20, 0x28, 0x6e, 0x65, 0x77, 0x29, 0x20, 0x61, 0x6e, 0x64,
+ 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x28, 0x6f, 0x6c, 0x64,
+ 0x29, 0x20, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x6e, 0x61, 0x6d, 0x65,
+ 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x74, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x56, 0x61,
+ 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x69, 0x74, 0x65, 0x6d, 0x2e, 0x75,
+ 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x72, 0x5f, 0x70, 0x75, 0x62, 0x6b,
+ 0x65, 0x79, 0x20, 0x7c, 0x7c, 0x20, 0x69, 0x74, 0x65, 0x6d, 0x2e, 0x70,
+ 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x2d, 0x27,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x74, 0x20, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x3d, 0x20,
+ 0x69, 0x74, 0x65, 0x6d, 0x2e, 0x62, 0x6c, 0x6f, 0x62, 0x5f, 0x63, 0x6f,
+ 0x75, 0x6e, 0x74, 0x20, 0x7c, 0x7c, 0x20, 0x30, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x42, 0x79, 0x74, 0x65, 0x73, 0x20, 0x3d,
+ 0x20, 0x69, 0x74, 0x65, 0x6d, 0x2e, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f,
+ 0x62, 0x79, 0x74, 0x65, 0x73, 0x20, 0x7c, 0x7c, 0x20, 0x30, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65,
+ 0x20, 0x3d, 0x20, 0x69, 0x74, 0x65, 0x6d, 0x2e, 0x70, 0x65, 0x72, 0x63,
+ 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x20, 0x7c, 0x7c, 0x20, 0x28, 0x74,
+ 0x6f, 0x74, 0x61, 0x6c, 0x20, 0x3e, 0x20, 0x30, 0x20, 0x3f, 0x20, 0x28,
+ 0x28, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x2f, 0x20, 0x74, 0x6f, 0x74,
+ 0x61, 0x6c, 0x29, 0x20, 0x2a, 0x20, 0x31, 0x30, 0x30, 0x29, 0x2e, 0x74,
+ 0x6f, 0x46, 0x69, 0x78, 0x65, 0x64, 0x28, 0x31, 0x29, 0x20, 0x3a, 0x20,
+ 0x30, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x20, 0x68, 0x65, 0x78, 0x20,
+ 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x6e, 0x70,
+ 0x75, 0x62, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c,
+ 0x61, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c,
+ 0x65, 0x74, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x50, 0x75,
+ 0x62, 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x6e, 0x70, 0x75, 0x62,
0x4c, 0x69, 0x6e, 0x6b, 0x20, 0x3d, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c,
0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3b, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x66, 0x20, 0x28, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x70,
- 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x26, 0x26, 0x20, 0x70, 0x75, 0x62,
- 0x6b, 0x65, 0x79, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x6c,
- 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x36, 0x34,
- 0x20, 0x26, 0x26, 0x20, 0x2f, 0x5e, 0x5b, 0x30, 0x2d, 0x39, 0x61, 0x2d,
- 0x66, 0x41, 0x2d, 0x46, 0x5d, 0x2b, 0x24, 0x2f, 0x2e, 0x74, 0x65, 0x73,
- 0x74, 0x28, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x70, 0x75, 0x62,
- 0x6b, 0x65, 0x79, 0x29, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x69, 0x66, 0x20, 0x28, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x56, 0x61,
+ 0x6c, 0x75, 0x65, 0x20, 0x26, 0x26, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74,
+ 0x68, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x36, 0x34, 0x20, 0x26, 0x26, 0x20,
+ 0x2f, 0x5e, 0x5b, 0x30, 0x2d, 0x39, 0x61, 0x2d, 0x66, 0x41, 0x2d, 0x46,
+ 0x5d, 0x2b, 0x24, 0x2f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x28, 0x70, 0x75,
+ 0x62, 0x6b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x29, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x6e, 0x70, 0x75, 0x62, 0x20, 0x3d, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f,
+ 0x77, 0x2e, 0x4e, 0x6f, 0x73, 0x74, 0x72, 0x54, 0x6f, 0x6f, 0x6c, 0x73,
+ 0x2e, 0x6e, 0x69, 0x70, 0x31, 0x39, 0x2e, 0x6e, 0x70, 0x75, 0x62, 0x45,
+ 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x28, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x56, 0x61, 0x6c, 0x75, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x20, 0x3d,
- 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x4e, 0x6f, 0x73, 0x74,
- 0x72, 0x54, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x6e, 0x69, 0x70, 0x31, 0x39,
- 0x2e, 0x6e, 0x70, 0x75, 0x62, 0x45, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x28,
- 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65,
- 0x79, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x69, 0x73, 0x70,
- 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x20,
- 0x6e, 0x70, 0x75, 0x62, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6e, 0x70,
- 0x75, 0x62, 0x4c, 0x69, 0x6e, 0x6b, 0x20, 0x3d, 0x20, 0x60, 0x3c, 0x61,
- 0x20, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x73,
- 0x3a, 0x2f, 0x2f, 0x6e, 0x6a, 0x75, 0x6d, 0x70, 0x2e, 0x6d, 0x65, 0x2f,
- 0x24, 0x7b, 0x6e, 0x70, 0x75, 0x62, 0x7d, 0x22, 0x20, 0x74, 0x61, 0x72,
- 0x67, 0x65, 0x74, 0x3d, 0x22, 0x5f, 0x62, 0x6c, 0x61, 0x6e, 0x6b, 0x22,
- 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x6e, 0x70, 0x75, 0x62,
- 0x2d, 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x3e, 0x24, 0x7b, 0x6e, 0x70, 0x75,
- 0x62, 0x7d, 0x3c, 0x2f, 0x61, 0x3e, 0x60, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74,
- 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b,
+ 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x20, 0x3d, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x4c, 0x69, 0x6e, 0x6b, 0x20, 0x3d,
+ 0x20, 0x60, 0x3c, 0x61, 0x20, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, 0x68,
+ 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x6e, 0x6a, 0x75, 0x6d, 0x70,
+ 0x2e, 0x6d, 0x65, 0x2f, 0x24, 0x7b, 0x6e, 0x70, 0x75, 0x62, 0x7d, 0x22,
+ 0x20, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x3d, 0x22, 0x5f, 0x62, 0x6c,
+ 0x61, 0x6e, 0x6b, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
+ 0x6e, 0x70, 0x75, 0x62, 0x2d, 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x3e, 0x24,
+ 0x7b, 0x6e, 0x70, 0x75, 0x62, 0x7d, 0x3c, 0x2f, 0x61, 0x3e, 0x60, 0x3b,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
- 0x28, 0x27, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20,
- 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65,
- 0x79, 0x20, 0x74, 0x6f, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x3a, 0x27, 0x2c,
- 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61,
- 0x67, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72,
- 0x6f, 0x77, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c,
- 0x20, 0x3d, 0x20, 0x60, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x24, 0x7b, 0x69, 0x6e, 0x64, 0x65, 0x78,
- 0x20, 0x2b, 0x20, 0x31, 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x20, 0x73,
- 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x66,
- 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x3a, 0x20, 0x27, 0x43, 0x6f, 0x75, 0x72,
- 0x69, 0x65, 0x72, 0x20, 0x4e, 0x65, 0x77, 0x27, 0x2c, 0x20, 0x6d, 0x6f,
- 0x6e, 0x6f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x3b, 0x20, 0x66, 0x6f, 0x6e,
- 0x74, 0x2d, 0x73, 0x69, 0x7a, 0x65, 0x3a, 0x20, 0x31, 0x32, 0x70, 0x78,
- 0x3b, 0x20, 0x77, 0x6f, 0x72, 0x64, 0x2d, 0x62, 0x72, 0x65, 0x61, 0x6b,
- 0x3a, 0x20, 0x62, 0x72, 0x65, 0x61, 0x6b, 0x2d, 0x61, 0x6c, 0x6c, 0x3b,
- 0x22, 0x3e, 0x24, 0x7b, 0x6e, 0x70, 0x75, 0x62, 0x4c, 0x69, 0x6e, 0x6b,
- 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x24, 0x7b, 0x70, 0x75, 0x62,
- 0x6b, 0x65, 0x79, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x6f,
- 0x75, 0x6e, 0x74, 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x24, 0x7b,
- 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x70, 0x65, 0x72, 0x63, 0x65,
- 0x6e, 0x74, 0x61, 0x67, 0x65, 0x7d, 0x25, 0x3c, 0x2f, 0x74, 0x64, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x60, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64,
- 0x79, 0x2e, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c,
- 0x64, 0x28, 0x72, 0x6f, 0x77, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x50, 0x6f,
- 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x74, 0x6f, 0x70, 0x20, 0x70,
- 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65,
- 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f,
- 0x72, 0x69, 0x6e, 0x67, 0x20, 0x64, 0x61, 0x74, 0x61, 0x0a, 0x66, 0x75,
- 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c,
- 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x50, 0x75, 0x62, 0x6b,
- 0x65, 0x79, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4d, 0x6f, 0x6e, 0x69, 0x74,
- 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
- 0x73, 0x44, 0x61, 0x74, 0x61, 0x2c, 0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c,
- 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x42, 0x6f, 0x64, 0x79, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x73, 0x74, 0x61,
- 0x74, 0x73, 0x2d, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x2d, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x62, 0x6f, 0x64, 0x79, 0x27, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x74, 0x61,
- 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x20, 0x7c, 0x7c, 0x20, 0x21,
- 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x44, 0x61, 0x74, 0x61, 0x20,
- 0x7c, 0x7c, 0x20, 0x21, 0x41, 0x72, 0x72, 0x61, 0x79, 0x2e, 0x69, 0x73,
- 0x41, 0x72, 0x72, 0x61, 0x79, 0x28, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
- 0x73, 0x44, 0x61, 0x74, 0x61, 0x29, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75,
- 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72,
- 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x75, 0x62, 0x6b,
- 0x65, 0x79, 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x6c, 0x65, 0x6e, 0x67,
- 0x74, 0x68, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x74, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45,
- 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x74, 0x72, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x6f,
- 0x77, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20,
- 0x3d, 0x20, 0x27, 0x3c, 0x74, 0x64, 0x20, 0x63, 0x6f, 0x6c, 0x73, 0x70,
- 0x61, 0x6e, 0x3d, 0x22, 0x34, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65,
- 0x3d, 0x22, 0x74, 0x65, 0x78, 0x74, 0x2d, 0x61, 0x6c, 0x69, 0x67, 0x6e,
- 0x3a, 0x20, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x3b, 0x20, 0x66, 0x6f,
- 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3a, 0x20, 0x69, 0x74,
- 0x61, 0x6c, 0x69, 0x63, 0x3b, 0x22, 0x3e, 0x4e, 0x6f, 0x20, 0x70, 0x75,
- 0x62, 0x6b, 0x65, 0x79, 0x20, 0x64, 0x61, 0x74, 0x61, 0x3c, 0x2f, 0x74,
- 0x64, 0x3e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x61,
- 0x70, 0x70, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28, 0x72,
- 0x6f, 0x77, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x70, 0x75, 0x62, 0x6b,
- 0x65, 0x79, 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x66, 0x6f, 0x72, 0x45,
- 0x61, 0x63, 0x68, 0x28, 0x28, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2c,
- 0x20, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x74, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63,
- 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
- 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x74, 0x72, 0x27,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x20, 0x68, 0x65,
- 0x78, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x74, 0x6f, 0x20,
- 0x6e, 0x70, 0x75, 0x62, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x64, 0x69, 0x73,
- 0x70, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x6c, 0x65, 0x74, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
- 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x20, 0x70, 0x75, 0x62,
- 0x6b, 0x65, 0x79, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x7c,
- 0x7c, 0x20, 0x27, 0x2d, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x4c,
- 0x69, 0x6e, 0x6b, 0x20, 0x3d, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
- 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
- 0x66, 0x20, 0x28, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x70, 0x75,
- 0x62, 0x6b, 0x65, 0x79, 0x20, 0x26, 0x26, 0x20, 0x70, 0x75, 0x62, 0x6b,
- 0x65, 0x79, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x6c, 0x65,
- 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x36, 0x34, 0x20,
- 0x26, 0x26, 0x20, 0x2f, 0x5e, 0x5b, 0x30, 0x2d, 0x39, 0x61, 0x2d, 0x66,
- 0x41, 0x2d, 0x46, 0x5d, 0x2b, 0x24, 0x2f, 0x2e, 0x74, 0x65, 0x73, 0x74,
- 0x28, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x70, 0x75, 0x62, 0x6b,
- 0x65, 0x79, 0x29, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x20, 0x3d, 0x20,
- 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x4e, 0x6f, 0x73, 0x74, 0x72,
- 0x54, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x6e, 0x69, 0x70, 0x31, 0x39, 0x2e,
- 0x6e, 0x70, 0x75, 0x62, 0x45, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x28, 0x70,
- 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c,
- 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x20, 0x6e,
- 0x70, 0x75, 0x62, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6e, 0x70, 0x75,
- 0x62, 0x4c, 0x69, 0x6e, 0x6b, 0x20, 0x3d, 0x20, 0x60, 0x3c, 0x61, 0x20,
- 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a,
- 0x2f, 0x2f, 0x6e, 0x6a, 0x75, 0x6d, 0x70, 0x2e, 0x6d, 0x65, 0x2f, 0x24,
- 0x7b, 0x6e, 0x70, 0x75, 0x62, 0x7d, 0x22, 0x20, 0x74, 0x61, 0x72, 0x67,
- 0x65, 0x74, 0x3d, 0x22, 0x5f, 0x62, 0x6c, 0x61, 0x6e, 0x6b, 0x22, 0x20,
- 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x6e, 0x70, 0x75, 0x62, 0x2d,
- 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x3e, 0x24, 0x7b, 0x6e, 0x70, 0x75, 0x62,
- 0x7d, 0x3c, 0x2f, 0x61, 0x3e, 0x60, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63,
- 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
- 0x27, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x65,
- 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
- 0x20, 0x74, 0x6f, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x3a, 0x27, 0x2c, 0x20,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
- 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x43, 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20,
- 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x20, 0x75,
- 0x73, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x76,
- 0x65, 0x6e, 0x74, 0x73, 0x20, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74,
- 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74,
- 0x61, 0x67, 0x65, 0x20, 0x3d, 0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x45,
- 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x3e, 0x20, 0x30, 0x20, 0x3f, 0x20,
- 0x28, 0x28, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x2f, 0x20, 0x74,
- 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x29, 0x20,
- 0x2a, 0x20, 0x31, 0x30, 0x30, 0x29, 0x2e, 0x74, 0x6f, 0x46, 0x69, 0x78,
- 0x65, 0x64, 0x28, 0x31, 0x29, 0x20, 0x3a, 0x20, 0x27, 0x30, 0x2e, 0x30,
- 0x27, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
+ 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64,
+ 0x20, 0x74, 0x6f, 0x20, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x20, 0x70,
+ 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x6e, 0x70, 0x75,
+ 0x62, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d,
+ 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x72, 0x6f, 0x77, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d,
0x4c, 0x20, 0x3d, 0x20, 0x60, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
@@ -17084,1562 +17099,1551 @@ static const unsigned char embedded_index_js[] = {
0x3b, 0x22, 0x3e, 0x24, 0x7b, 0x6e, 0x70, 0x75, 0x62, 0x4c, 0x69, 0x6e,
0x6b, 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x24, 0x7b, 0x70, 0x75,
- 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x63,
- 0x6f, 0x75, 0x6e, 0x74, 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x24, 0x7b, 0x63, 0x6f,
+ 0x75, 0x6e, 0x74, 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x24,
- 0x7b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x7d,
- 0x25, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x60,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61,
- 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x65,
- 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28, 0x72, 0x6f, 0x77, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x7d, 0x0a,
- 0x0a, 0x2f, 0x2f, 0x20, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65,
- 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x20, 0x74, 0x61,
- 0x62, 0x6c, 0x65, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x6d, 0x6f, 0x6e,
- 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x64, 0x61, 0x74, 0x61,
- 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x70, 0x6f,
- 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
- 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c,
- 0x73, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x28, 0x73, 0x75, 0x62, 0x73, 0x63,
- 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x44, 0x61, 0x74, 0x61,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x74, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x20,
- 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67,
- 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49,
- 0x64, 0x28, 0x27, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x2d, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x2d,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x62, 0x6f, 0x64, 0x79, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x20, 0x7c, 0x7c, 0x20,
- 0x21, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x73, 0x44, 0x61, 0x74, 0x61, 0x20, 0x7c, 0x7c, 0x20, 0x21, 0x41,
- 0x72, 0x72, 0x61, 0x79, 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79,
- 0x28, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x73, 0x44, 0x61, 0x74, 0x61, 0x29, 0x29, 0x20, 0x72, 0x65, 0x74,
- 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65,
- 0x6e, 0x74, 0x20, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x2f, 0x63, 0x6f,
- 0x6c, 0x6c, 0x61, 0x70, 0x73, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x65,
- 0x20, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x20, 0x72, 0x65, 0x62, 0x75,
- 0x69, 0x6c, 0x64, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65,
- 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x20, 0x3d, 0x20, 0x6e, 0x65,
- 0x77, 0x20, 0x53, 0x65, 0x74, 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65,
- 0x72, 0x52, 0x6f, 0x77, 0x73, 0x20, 0x3d, 0x20, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x53,
- 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x41, 0x6c, 0x6c, 0x28, 0x27,
- 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x2d, 0x68, 0x65, 0x61, 0x64,
- 0x65, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x68, 0x65,
- 0x61, 0x64, 0x65, 0x72, 0x52, 0x6f, 0x77, 0x73, 0x2e, 0x66, 0x6f, 0x72,
- 0x45, 0x61, 0x63, 0x68, 0x28, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x20,
- 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x77, 0x73, 0x69, 0x50, 0x6f,
- 0x69, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x3d, 0x20, 0x68, 0x65, 0x61, 0x64,
- 0x65, 0x72, 0x2e, 0x67, 0x65, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62,
- 0x75, 0x74, 0x65, 0x28, 0x27, 0x64, 0x61, 0x74, 0x61, 0x2d, 0x77, 0x73,
- 0x69, 0x2d, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x27, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x74, 0x20, 0x69, 0x73, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65,
- 0x64, 0x20, 0x3d, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x2e, 0x67,
- 0x65, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x28,
- 0x27, 0x64, 0x61, 0x74, 0x61, 0x2d, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64,
- 0x65, 0x64, 0x27, 0x29, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x74, 0x72,
- 0x75, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x69, 0x73, 0x45, 0x78, 0x70, 0x61, 0x6e,
- 0x64, 0x65, 0x64, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x78, 0x70, 0x61, 0x6e,
- 0x64, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e, 0x61, 0x64,
- 0x64, 0x28, 0x77, 0x73, 0x69, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e,
- 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20,
- 0x27, 0x27, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74,
- 0x68, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x72, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6c,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x74, 0x72, 0x27, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x6f, 0x77,
- 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d,
- 0x20, 0x27, 0x3c, 0x74, 0x64, 0x20, 0x63, 0x6f, 0x6c, 0x73, 0x70, 0x61,
- 0x6e, 0x3d, 0x22, 0x34, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d,
- 0x22, 0x74, 0x65, 0x78, 0x74, 0x2d, 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x3a,
- 0x20, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x3b, 0x20, 0x66, 0x6f, 0x6e,
- 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3a, 0x20, 0x69, 0x74, 0x61,
- 0x6c, 0x69, 0x63, 0x3b, 0x22, 0x3e, 0x4e, 0x6f, 0x20, 0x61, 0x63, 0x74,
- 0x69, 0x76, 0x65, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x27, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x65, 0x6e,
- 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28, 0x72, 0x6f, 0x77, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74,
- 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x6f, 0x72, 0x74, 0x20,
- 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
- 0x73, 0x20, 0x62, 0x79, 0x20, 0x77, 0x73, 0x69, 0x5f, 0x70, 0x6f, 0x69,
- 0x6e, 0x74, 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x72, 0x6f, 0x75,
- 0x70, 0x20, 0x74, 0x68, 0x65, 0x6d, 0x20, 0x74, 0x6f, 0x67, 0x65, 0x74,
- 0x68, 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x75, 0x62, 0x73,
- 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x44, 0x61, 0x74,
- 0x61, 0x2e, 0x73, 0x6f, 0x72, 0x74, 0x28, 0x28, 0x61, 0x2c, 0x20, 0x62,
- 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x77, 0x73, 0x69,
- 0x41, 0x20, 0x3d, 0x20, 0x61, 0x2e, 0x77, 0x73, 0x69, 0x5f, 0x70, 0x6f,
- 0x69, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x27, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x74, 0x20, 0x77, 0x73, 0x69, 0x42, 0x20, 0x3d, 0x20, 0x62, 0x2e,
- 0x77, 0x73, 0x69, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x20,
- 0x7c, 0x7c, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x77, 0x73,
- 0x69, 0x41, 0x2e, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x65, 0x43, 0x6f, 0x6d,
- 0x70, 0x61, 0x72, 0x65, 0x28, 0x77, 0x73, 0x69, 0x42, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x20, 0x73, 0x75,
- 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20,
- 0x62, 0x79, 0x20, 0x77, 0x73, 0x69, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74,
- 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73,
- 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x3d, 0x20,
- 0x7b, 0x7d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x75, 0x62, 0x73,
- 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x44, 0x61, 0x74,
- 0x61, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x73, 0x75,
- 0x62, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x77, 0x73, 0x69,
- 0x4b, 0x65, 0x79, 0x20, 0x3d, 0x20, 0x73, 0x75, 0x62, 0x2e, 0x77, 0x73,
- 0x69, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x7c, 0x7c,
- 0x20, 0x27, 0x4e, 0x2f, 0x41, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x67, 0x72, 0x6f,
- 0x75, 0x70, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5b, 0x77, 0x73, 0x69, 0x4b, 0x65, 0x79,
- 0x5d, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64,
- 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
- 0x73, 0x5b, 0x77, 0x73, 0x69, 0x4b, 0x65, 0x79, 0x5d, 0x20, 0x3d, 0x20,
- 0x5b, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, 0x72,
- 0x6f, 0x75, 0x70, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
- 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5b, 0x77, 0x73, 0x69, 0x4b, 0x65,
- 0x79, 0x5d, 0x2e, 0x70, 0x75, 0x73, 0x68, 0x28, 0x73, 0x75, 0x62, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
- 0x20, 0x72, 0x6f, 0x77, 0x73, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x65, 0x61,
- 0x63, 0x68, 0x20, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x65, 0x6e, 0x74, 0x72,
- 0x69, 0x65, 0x73, 0x28, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x53,
- 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
- 0x29, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x28, 0x5b,
- 0x77, 0x73, 0x69, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x2c, 0x20,
- 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
- 0x73, 0x5d, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x61, 0x6c, 0x63,
- 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x20,
- 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73, 0x75,
- 0x62, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x73, 0x75, 0x62,
- 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x6c,
- 0x65, 0x6e, 0x67, 0x74, 0x68, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x6f, 0x77,
- 0x20, 0x3d, 0x20, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f,
- 0x72, 0x28, 0x44, 0x61, 0x74, 0x65, 0x2e, 0x6e, 0x6f, 0x77, 0x28, 0x29,
- 0x20, 0x2f, 0x20, 0x31, 0x30, 0x30, 0x30, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
- 0x6f, 0x6c, 0x64, 0x65, 0x73, 0x74, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x6d, 0x61,
- 0x78, 0x28, 0x2e, 0x2e, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
- 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x6d, 0x61, 0x70, 0x28, 0x73,
- 0x20, 0x3d, 0x3e, 0x20, 0x6e, 0x6f, 0x77, 0x20, 0x2d, 0x20, 0x73, 0x2e,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x29, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x6f, 0x6c, 0x64, 0x65, 0x73, 0x74, 0x44, 0x75,
- 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x20, 0x3d, 0x20,
- 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x28, 0x6f, 0x6c, 0x64, 0x65, 0x73, 0x74, 0x44, 0x75, 0x72,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65, 0x61,
- 0x74, 0x65, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x20, 0x72, 0x6f,
- 0x77, 0x20, 0x28, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x29, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x74, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x6f, 0x77, 0x20,
- 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x28, 0x27, 0x74, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x6f,
- 0x77, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x20,
- 0x3d, 0x20, 0x27, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x2d, 0x68, 0x65,
- 0x61, 0x64, 0x65, 0x72, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x6f, 0x77,
- 0x2e, 0x73, 0x65, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74,
- 0x65, 0x28, 0x27, 0x64, 0x61, 0x74, 0x61, 0x2d, 0x77, 0x73, 0x69, 0x2d,
- 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x27, 0x2c, 0x20, 0x77, 0x73,
- 0x69, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x77, 0x61, 0x73, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64,
- 0x20, 0x3d, 0x20, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x47,
- 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e, 0x68, 0x61, 0x73, 0x28, 0x77, 0x73,
- 0x69, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65,
- 0x72, 0x52, 0x6f, 0x77, 0x2e, 0x73, 0x65, 0x74, 0x41, 0x74, 0x74, 0x72,
- 0x69, 0x62, 0x75, 0x74, 0x65, 0x28, 0x27, 0x64, 0x61, 0x74, 0x61, 0x2d,
- 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x27, 0x2c, 0x20, 0x77,
- 0x61, 0x73, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x20, 0x3f,
- 0x20, 0x27, 0x74, 0x72, 0x75, 0x65, 0x27, 0x20, 0x3a, 0x20, 0x27, 0x66,
- 0x61, 0x6c, 0x73, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52,
- 0x6f, 0x77, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c,
- 0x20, 0x3d, 0x20, 0x60, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x20, 0x63, 0x6f, 0x6c,
- 0x73, 0x70, 0x61, 0x6e, 0x3d, 0x22, 0x34, 0x22, 0x20, 0x73, 0x74, 0x79,
- 0x6c, 0x65, 0x3d, 0x22, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a,
- 0x20, 0x38, 0x70, 0x78, 0x3b, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x24, 0x7b,
+ 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69,
+ 0x7a, 0x65, 0x28, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x42, 0x79, 0x74, 0x65,
+ 0x73, 0x29, 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x73, 0x70, 0x61, 0x6e, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
- 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x2d, 0x69, 0x63, 0x6f, 0x6e,
- 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x64, 0x69, 0x73,
- 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x69, 0x6e, 0x6c, 0x69, 0x6e, 0x65,
- 0x2d, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x3b, 0x20, 0x77, 0x69, 0x64, 0x74,
- 0x68, 0x3a, 0x20, 0x32, 0x30, 0x70, 0x78, 0x3b, 0x20, 0x74, 0x72, 0x61,
- 0x6e, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x20, 0x74, 0x72, 0x61,
- 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x20, 0x30, 0x2e, 0x32, 0x73, 0x3b,
- 0x22, 0x3e, 0xe2, 0x96, 0xb6, 0x3c, 0x2f, 0x73, 0x70, 0x61, 0x6e, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74, 0x72, 0x6f, 0x6e, 0x67,
- 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66, 0x6f, 0x6e, 0x74,
- 0x2d, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x3a, 0x20, 0x27, 0x43, 0x6f,
- 0x75, 0x72, 0x69, 0x65, 0x72, 0x20, 0x4e, 0x65, 0x77, 0x27, 0x2c, 0x20,
- 0x6d, 0x6f, 0x6e, 0x6f, 0x73, 0x70, 0x61, 0x63, 0x65, 0x3b, 0x20, 0x66,
- 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x69, 0x7a, 0x65, 0x3a, 0x20, 0x31, 0x32,
- 0x70, 0x78, 0x3b, 0x22, 0x3e, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b,
- 0x65, 0x74, 0x3a, 0x20, 0x24, 0x7b, 0x77, 0x73, 0x69, 0x50, 0x6f, 0x69,
- 0x6e, 0x74, 0x65, 0x72, 0x7d, 0x3c, 0x2f, 0x73, 0x74, 0x72, 0x6f, 0x6e,
- 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x70, 0x61, 0x6e,
- 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x63, 0x6f, 0x6c, 0x6f,
- 0x72, 0x3a, 0x20, 0x23, 0x36, 0x36, 0x36, 0x3b, 0x20, 0x6d, 0x61, 0x72,
- 0x67, 0x69, 0x6e, 0x2d, 0x6c, 0x65, 0x66, 0x74, 0x3a, 0x20, 0x31, 0x35,
- 0x70, 0x78, 0x3b, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
- 0x6f, 0x6e, 0x73, 0x3a, 0x20, 0x24, 0x7b, 0x73, 0x75, 0x62, 0x43, 0x6f,
- 0x75, 0x6e, 0x74, 0x7d, 0x20, 0x7c, 0x20, 0x4f, 0x6c, 0x64, 0x65, 0x73,
- 0x74, 0x3a, 0x20, 0x24, 0x7b, 0x6f, 0x6c, 0x64, 0x65, 0x73, 0x74, 0x44,
- 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x7d, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x73, 0x70, 0x61, 0x6e, 0x3e, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x60, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x41, 0x64, 0x64, 0x20, 0x63, 0x6c, 0x69,
- 0x63, 0x6b, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x20, 0x74,
- 0x6f, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x65, 0x78, 0x70,
- 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x6f, 0x77,
- 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73,
- 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b,
- 0x27, 0x2c, 0x20, 0x28, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x74, 0x6f, 0x67,
- 0x67, 0x6c, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x28, 0x77, 0x73, 0x69,
- 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x29, 0x29, 0x3b, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x24, 0x7b, 0x70,
+ 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x7d, 0x25, 0x3c,
+ 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x60, 0x3b, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c,
0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64,
- 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72,
- 0x52, 0x6f, 0x77, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
- 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x20, 0x72, 0x6f, 0x77, 0x73,
- 0x20, 0x28, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x6c, 0x79, 0x20,
- 0x68, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63,
- 0x68, 0x28, 0x28, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x2c, 0x20, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x29, 0x20,
+ 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28, 0x72, 0x6f, 0x77, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f,
+ 0x2f, 0x20, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x74,
+ 0x6f, 0x70, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x20, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x6d, 0x6f,
+ 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x64, 0x61, 0x74,
+ 0x61, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x70,
+ 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73,
+ 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4d,
+ 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x70, 0x75,
+ 0x62, 0x6b, 0x65, 0x79, 0x73, 0x44, 0x61, 0x74, 0x61, 0x2c, 0x20, 0x74,
+ 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x20, 0x3d, 0x20,
+ 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74,
+ 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28,
+ 0x27, 0x73, 0x74, 0x61, 0x74, 0x73, 0x2d, 0x70, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x73, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x62, 0x6f, 0x64,
+ 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
+ 0x28, 0x21, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x20,
+ 0x7c, 0x7c, 0x20, 0x21, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x44,
+ 0x61, 0x74, 0x61, 0x20, 0x7c, 0x7c, 0x20, 0x21, 0x41, 0x72, 0x72, 0x61,
+ 0x79, 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x28, 0x70, 0x75,
+ 0x62, 0x6b, 0x65, 0x79, 0x73, 0x44, 0x61, 0x74, 0x61, 0x29, 0x29, 0x20,
+ 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x69,
+ 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27,
+ 0x27, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e,
+ 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x30,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x3d, 0x20,
+ 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65,
+ 0x61, 0x74, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27,
+ 0x74, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48,
+ 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x3c, 0x74, 0x64, 0x20, 0x63,
+ 0x6f, 0x6c, 0x73, 0x70, 0x61, 0x6e, 0x3d, 0x22, 0x34, 0x22, 0x20, 0x73,
+ 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x74, 0x65, 0x78, 0x74, 0x2d, 0x61,
+ 0x6c, 0x69, 0x67, 0x6e, 0x3a, 0x20, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72,
+ 0x3b, 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65,
+ 0x3a, 0x20, 0x69, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x3b, 0x22, 0x3e, 0x4e,
+ 0x6f, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x64, 0x61, 0x74,
+ 0x61, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f,
+ 0x64, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69,
+ 0x6c, 0x64, 0x28, 0x72, 0x6f, 0x77, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e,
+ 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x28, 0x70, 0x75, 0x62,
+ 0x6b, 0x65, 0x79, 0x2c, 0x20, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x29, 0x20,
0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x64,
- 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x64,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x3d,
+ 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72,
+ 0x65, 0x61, 0x74, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28,
+ 0x27, 0x74, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72,
+ 0x74, 0x20, 0x68, 0x65, 0x78, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x20, 0x74, 0x6f, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x20, 0x66, 0x6f, 0x72,
+ 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x64, 0x69, 0x73,
+ 0x70, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x3d,
+ 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x70, 0x75, 0x62, 0x6b,
+ 0x65, 0x79, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x2d, 0x27, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x6e,
+ 0x70, 0x75, 0x62, 0x4c, 0x69, 0x6e, 0x6b, 0x20, 0x3d, 0x20, 0x64, 0x69,
+ 0x73, 0x70, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x26, 0x26, 0x20,
+ 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x70, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3d, 0x3d, 0x3d,
+ 0x20, 0x36, 0x34, 0x20, 0x26, 0x26, 0x20, 0x2f, 0x5e, 0x5b, 0x30, 0x2d,
+ 0x39, 0x61, 0x2d, 0x66, 0x41, 0x2d, 0x46, 0x5d, 0x2b, 0x24, 0x2f, 0x2e,
+ 0x74, 0x65, 0x73, 0x74, 0x28, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e,
+ 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x70, 0x75,
+ 0x62, 0x20, 0x3d, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x4e,
+ 0x6f, 0x73, 0x74, 0x72, 0x54, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x6e, 0x69,
+ 0x70, 0x31, 0x39, 0x2e, 0x6e, 0x70, 0x75, 0x62, 0x45, 0x6e, 0x63, 0x6f,
+ 0x64, 0x65, 0x28, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x70, 0x75,
+ 0x62, 0x6b, 0x65, 0x79, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64,
+ 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x20, 0x3d, 0x20, 0x6e, 0x70, 0x75, 0x62, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x6e, 0x70, 0x75, 0x62, 0x4c, 0x69, 0x6e, 0x6b, 0x20, 0x3d, 0x20,
+ 0x60, 0x3c, 0x61, 0x20, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, 0x68, 0x74,
+ 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x6e, 0x6a, 0x75, 0x6d, 0x70, 0x2e,
+ 0x6d, 0x65, 0x2f, 0x24, 0x7b, 0x6e, 0x70, 0x75, 0x62, 0x7d, 0x22, 0x20,
+ 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x3d, 0x22, 0x5f, 0x62, 0x6c, 0x61,
+ 0x6e, 0x6b, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x6e,
+ 0x70, 0x75, 0x62, 0x2d, 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x3e, 0x24, 0x7b,
+ 0x6e, 0x70, 0x75, 0x62, 0x7d, 0x3c, 0x2f, 0x61, 0x3e, 0x60, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20,
+ 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
+ 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20,
+ 0x74, 0x6f, 0x20, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x20, 0x70, 0x75,
+ 0x62, 0x6b, 0x65, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x6e, 0x70, 0x75, 0x62,
+ 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65,
+ 0x73, 0x73, 0x61, 0x67, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x61, 0x6c, 0x63, 0x75, 0x6c,
+ 0x61, 0x74, 0x65, 0x20, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61,
+ 0x67, 0x65, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x74,
+ 0x61, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x70, 0x61, 0x72,
+ 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x65, 0x72,
+ 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x20, 0x3d, 0x20, 0x74, 0x6f,
+ 0x74, 0x61, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x3e, 0x20,
+ 0x30, 0x20, 0x3f, 0x20, 0x28, 0x28, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x2e, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74,
+ 0x20, 0x2f, 0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x76, 0x65, 0x6e,
+ 0x74, 0x73, 0x29, 0x20, 0x2a, 0x20, 0x31, 0x30, 0x30, 0x29, 0x2e, 0x74,
+ 0x6f, 0x46, 0x69, 0x78, 0x65, 0x64, 0x28, 0x31, 0x29, 0x20, 0x3a, 0x20,
+ 0x27, 0x30, 0x2e, 0x30, 0x27, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x69, 0x6e, 0x6e, 0x65,
+ 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x60, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x24, 0x7b,
+ 0x69, 0x6e, 0x64, 0x65, 0x78, 0x20, 0x2b, 0x20, 0x31, 0x7d, 0x3c, 0x2f,
+ 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x74, 0x64, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66,
+ 0x6f, 0x6e, 0x74, 0x2d, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x3a, 0x20,
+ 0x27, 0x43, 0x6f, 0x75, 0x72, 0x69, 0x65, 0x72, 0x20, 0x4e, 0x65, 0x77,
+ 0x27, 0x2c, 0x20, 0x6d, 0x6f, 0x6e, 0x6f, 0x73, 0x70, 0x61, 0x63, 0x65,
+ 0x3b, 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x69, 0x7a, 0x65, 0x3a,
+ 0x20, 0x31, 0x32, 0x70, 0x78, 0x3b, 0x20, 0x77, 0x6f, 0x72, 0x64, 0x2d,
+ 0x62, 0x72, 0x65, 0x61, 0x6b, 0x3a, 0x20, 0x62, 0x72, 0x65, 0x61, 0x6b,
+ 0x2d, 0x61, 0x6c, 0x6c, 0x3b, 0x22, 0x3e, 0x24, 0x7b, 0x6e, 0x70, 0x75,
+ 0x62, 0x4c, 0x69, 0x6e, 0x6b, 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e,
+ 0x24, 0x7b, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2e, 0x65, 0x76, 0x65,
+ 0x6e, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x7d, 0x3c, 0x2f, 0x74,
+ 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
+ 0x74, 0x64, 0x3e, 0x24, 0x7b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74,
+ 0x61, 0x67, 0x65, 0x7d, 0x25, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x60, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e,
+ 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28,
+ 0x72, 0x6f, 0x77, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29,
+ 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x50, 0x6f, 0x70, 0x75,
+ 0x6c, 0x61, 0x74, 0x65, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
+ 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c,
+ 0x73, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x66, 0x72, 0x6f, 0x6d,
+ 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20,
+ 0x64, 0x61, 0x74, 0x61, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x53, 0x75,
+ 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65,
+ 0x74, 0x61, 0x69, 0x6c, 0x73, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x28, 0x73,
+ 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
+ 0x44, 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42,
+ 0x6f, 0x64, 0x79, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
+ 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
+ 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x73, 0x75, 0x62, 0x73, 0x63,
+ 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x64, 0x65, 0x74, 0x61,
+ 0x69, 0x6c, 0x73, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x62, 0x6f,
+ 0x64, 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
+ 0x20, 0x28, 0x21, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79,
+ 0x20, 0x7c, 0x7c, 0x20, 0x21, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
+ 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x44, 0x61, 0x74, 0x61, 0x20, 0x7c,
+ 0x7c, 0x20, 0x21, 0x41, 0x72, 0x72, 0x61, 0x79, 0x2e, 0x69, 0x73, 0x41,
+ 0x72, 0x72, 0x61, 0x79, 0x28, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
+ 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x44, 0x61, 0x74, 0x61, 0x29, 0x29,
+ 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x20, 0x63,
+ 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x20, 0x65, 0x78, 0x70, 0x61, 0x6e,
+ 0x64, 0x2f, 0x63, 0x6f, 0x6c, 0x6c, 0x61, 0x70, 0x73, 0x65, 0x20, 0x73,
+ 0x74, 0x61, 0x74, 0x65, 0x20, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x20,
+ 0x72, 0x65, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x69, 0x6e, 0x67, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x65, 0x78, 0x70,
+ 0x61, 0x6e, 0x64, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x20,
+ 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x53, 0x65, 0x74, 0x28, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x68,
+ 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x6f, 0x77, 0x73, 0x20, 0x3d, 0x20,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x71, 0x75,
+ 0x65, 0x72, 0x79, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x41,
+ 0x6c, 0x6c, 0x28, 0x27, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
+ 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x2d,
+ 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x6f, 0x77, 0x73,
+ 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x68, 0x65, 0x61,
+ 0x64, 0x65, 0x72, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x77,
+ 0x73, 0x69, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x3d, 0x20,
+ 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x2e, 0x67, 0x65, 0x74, 0x41, 0x74,
+ 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x28, 0x27, 0x64, 0x61, 0x74,
+ 0x61, 0x2d, 0x77, 0x73, 0x69, 0x2d, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65,
+ 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x69, 0x73, 0x45, 0x78, 0x70,
+ 0x61, 0x6e, 0x64, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x68, 0x65, 0x61, 0x64,
+ 0x65, 0x72, 0x2e, 0x67, 0x65, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62,
+ 0x75, 0x74, 0x65, 0x28, 0x27, 0x64, 0x61, 0x74, 0x61, 0x2d, 0x65, 0x78,
+ 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x27, 0x29, 0x20, 0x3d, 0x3d, 0x3d,
+ 0x20, 0x27, 0x74, 0x72, 0x75, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x69, 0x73, 0x45,
+ 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65,
+ 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70,
+ 0x73, 0x2e, 0x61, 0x64, 0x64, 0x28, 0x77, 0x73, 0x69, 0x50, 0x6f, 0x69,
+ 0x6e, 0x74, 0x65, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42,
+ 0x6f, 0x64, 0x79, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d,
+ 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
+ 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x6c,
+ 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x30, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x64,
0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61,
0x74, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x74,
0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52,
- 0x6f, 0x77, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65,
- 0x20, 0x3d, 0x20, 0x27, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x2d,
- 0x72, 0x6f, 0x77, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c,
- 0x52, 0x6f, 0x77, 0x2e, 0x73, 0x65, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69,
- 0x62, 0x75, 0x74, 0x65, 0x28, 0x27, 0x64, 0x61, 0x74, 0x61, 0x2d, 0x77,
- 0x73, 0x69, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x27, 0x2c, 0x20, 0x77,
- 0x73, 0x69, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x29, 0x3b, 0x0a,
+ 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54,
+ 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x3c, 0x74, 0x64, 0x20, 0x63, 0x6f,
+ 0x6c, 0x73, 0x70, 0x61, 0x6e, 0x3d, 0x22, 0x34, 0x22, 0x20, 0x73, 0x74,
+ 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x74, 0x65, 0x78, 0x74, 0x2d, 0x61, 0x6c,
+ 0x69, 0x67, 0x6e, 0x3a, 0x20, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x3b,
+ 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3a,
+ 0x20, 0x69, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x3b, 0x22, 0x3e, 0x4e, 0x6f,
+ 0x20, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x20, 0x73, 0x75, 0x62, 0x73,
+ 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3c, 0x2f, 0x74,
+ 0x64, 0x3e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x61,
+ 0x70, 0x70, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28, 0x72,
+ 0x6f, 0x77, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53,
+ 0x6f, 0x72, 0x74, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
+ 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x62, 0x79, 0x20, 0x77, 0x73, 0x69,
+ 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20,
+ 0x67, 0x72, 0x6f, 0x75, 0x70, 0x20, 0x74, 0x68, 0x65, 0x6d, 0x20, 0x74,
+ 0x6f, 0x67, 0x65, 0x74, 0x68, 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
+ 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x73, 0x6f, 0x72, 0x74, 0x28, 0x28,
+ 0x61, 0x2c, 0x20, 0x62, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
+ 0x20, 0x77, 0x73, 0x69, 0x41, 0x20, 0x3d, 0x20, 0x61, 0x2e, 0x77, 0x73,
+ 0x69, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x7c, 0x7c,
+ 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x77, 0x73, 0x69, 0x42, 0x20,
+ 0x3d, 0x20, 0x62, 0x2e, 0x77, 0x73, 0x69, 0x5f, 0x70, 0x6f, 0x69, 0x6e,
+ 0x74, 0x65, 0x72, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72,
+ 0x6e, 0x20, 0x77, 0x73, 0x69, 0x41, 0x2e, 0x6c, 0x6f, 0x63, 0x61, 0x6c,
+ 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x65, 0x28, 0x77, 0x73, 0x69,
+ 0x42, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x47, 0x72, 0x6f, 0x75,
+ 0x70, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
+ 0x6f, 0x6e, 0x73, 0x20, 0x62, 0x79, 0x20, 0x77, 0x73, 0x69, 0x5f, 0x70,
+ 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64,
+ 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
+ 0x73, 0x20, 0x3d, 0x20, 0x7b, 0x7d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
+ 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63,
+ 0x68, 0x28, 0x73, 0x75, 0x62, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
+ 0x20, 0x77, 0x73, 0x69, 0x4b, 0x65, 0x79, 0x20, 0x3d, 0x20, 0x73, 0x75,
+ 0x62, 0x2e, 0x77, 0x73, 0x69, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65,
+ 0x72, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x4e, 0x2f, 0x41, 0x27, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x21, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73,
+ 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5b, 0x77, 0x73,
+ 0x69, 0x4b, 0x65, 0x79, 0x5d, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, 0x72, 0x6f,
+ 0x75, 0x70, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
+ 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5b, 0x77, 0x73, 0x69, 0x4b, 0x65, 0x79,
+ 0x5d, 0x20, 0x3d, 0x20, 0x5b, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x53, 0x75, 0x62,
+ 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5b, 0x77,
+ 0x73, 0x69, 0x4b, 0x65, 0x79, 0x5d, 0x2e, 0x70, 0x75, 0x73, 0x68, 0x28,
+ 0x73, 0x75, 0x62, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72,
+ 0x65, 0x61, 0x74, 0x65, 0x20, 0x72, 0x6f, 0x77, 0x73, 0x20, 0x66, 0x6f,
+ 0x72, 0x20, 0x65, 0x61, 0x63, 0x68, 0x20, 0x67, 0x72, 0x6f, 0x75, 0x70,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x2e,
+ 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x28, 0x67, 0x72, 0x6f, 0x75,
+ 0x70, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
+ 0x69, 0x6f, 0x6e, 0x73, 0x29, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63,
+ 0x68, 0x28, 0x28, 0x5b, 0x77, 0x73, 0x69, 0x50, 0x6f, 0x69, 0x6e, 0x74,
+ 0x65, 0x72, 0x2c, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
+ 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5d, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x43, 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x67, 0x72,
+ 0x6f, 0x75, 0x70, 0x20, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x73, 0x75, 0x62, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x3d,
+ 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
+ 0x6e, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
+ 0x20, 0x6e, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x4d, 0x61, 0x74, 0x68, 0x2e,
+ 0x66, 0x6c, 0x6f, 0x6f, 0x72, 0x28, 0x44, 0x61, 0x74, 0x65, 0x2e, 0x6e,
+ 0x6f, 0x77, 0x28, 0x29, 0x20, 0x2f, 0x20, 0x31, 0x30, 0x30, 0x30, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x74, 0x20, 0x6f, 0x6c, 0x64, 0x65, 0x73, 0x74, 0x44, 0x75,
+ 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x4d, 0x61, 0x74,
+ 0x68, 0x2e, 0x6d, 0x61, 0x78, 0x28, 0x2e, 0x2e, 0x2e, 0x73, 0x75, 0x62,
+ 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x6d,
+ 0x61, 0x70, 0x28, 0x73, 0x20, 0x3d, 0x3e, 0x20, 0x6e, 0x6f, 0x77, 0x20,
+ 0x2d, 0x20, 0x73, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
+ 0x61, 0x74, 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6f, 0x6c, 0x64, 0x65,
+ 0x73, 0x74, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,
+ 0x72, 0x20, 0x3d, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x44, 0x75,
+ 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x6f, 0x6c, 0x64, 0x65, 0x73,
+ 0x74, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x29, 0x3b, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65,
+ 0x72, 0x20, 0x72, 0x6f, 0x77, 0x20, 0x28, 0x73, 0x75, 0x6d, 0x6d, 0x61,
+ 0x72, 0x79, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72,
+ 0x52, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
+ 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6c, 0x65,
+ 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x74, 0x72, 0x27, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x65, 0x61, 0x64,
+ 0x65, 0x72, 0x52, 0x6f, 0x77, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e,
+ 0x61, 0x6d, 0x65, 0x20, 0x3d, 0x20, 0x27, 0x73, 0x75, 0x62, 0x73, 0x63,
+ 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x67, 0x72, 0x6f, 0x75,
+ 0x70, 0x2d, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x27, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65,
+ 0x72, 0x52, 0x6f, 0x77, 0x2e, 0x73, 0x65, 0x74, 0x41, 0x74, 0x74, 0x72,
+ 0x69, 0x62, 0x75, 0x74, 0x65, 0x28, 0x27, 0x64, 0x61, 0x74, 0x61, 0x2d,
+ 0x77, 0x73, 0x69, 0x2d, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x27,
+ 0x2c, 0x20, 0x77, 0x73, 0x69, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x77, 0x61, 0x73, 0x45, 0x78, 0x70, 0x61,
+ 0x6e, 0x64, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x65, 0x78, 0x70, 0x61, 0x6e,
+ 0x64, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2e, 0x68, 0x61,
+ 0x73, 0x28, 0x77, 0x73, 0x69, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68,
+ 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x6f, 0x77, 0x2e, 0x73, 0x65, 0x74,
+ 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x28, 0x27, 0x64,
+ 0x61, 0x74, 0x61, 0x2d, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64,
+ 0x27, 0x2c, 0x20, 0x77, 0x61, 0x73, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x64,
+ 0x65, 0x64, 0x20, 0x3f, 0x20, 0x27, 0x74, 0x72, 0x75, 0x65, 0x27, 0x20,
+ 0x3a, 0x20, 0x27, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x27, 0x29, 0x3b, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x65, 0x61,
+ 0x64, 0x65, 0x72, 0x52, 0x6f, 0x77, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72,
+ 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x60, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64,
+ 0x20, 0x63, 0x6f, 0x6c, 0x73, 0x70, 0x61, 0x6e, 0x3d, 0x22, 0x34, 0x22,
+ 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x70, 0x61, 0x64, 0x64,
+ 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x38, 0x70, 0x78, 0x3b, 0x22, 0x3e, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x6f, 0x77, 0x2e, 0x73, 0x74,
- 0x79, 0x6c, 0x65, 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20,
- 0x3d, 0x20, 0x27, 0x6e, 0x6f, 0x6e, 0x65, 0x27, 0x3b, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x43, 0x61, 0x6c, 0x63, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20,
- 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x74, 0x20, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20,
- 0x3d, 0x20, 0x6e, 0x6f, 0x77, 0x20, 0x2d, 0x20, 0x73, 0x75, 0x62, 0x73,
- 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x63, 0x72, 0x65,
- 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x74, 0x20, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53,
- 0x74, 0x72, 0x20, 0x3d, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x44,
- 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x64, 0x75, 0x72, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x46,
- 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72,
- 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72,
- 0x73, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27,
- 0x4e, 0x6f, 0x6e, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x73,
- 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
- 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x20, 0x26, 0x26, 0x20, 0x73,
- 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
- 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67,
- 0x74, 0x68, 0x20, 0x3e, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x70, 0x61, 0x6e, 0x20, 0x63, 0x6c,
+ 0x61, 0x73, 0x73, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x2d,
+ 0x69, 0x63, 0x6f, 0x6e, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d,
+ 0x22, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x69, 0x6e,
+ 0x6c, 0x69, 0x6e, 0x65, 0x2d, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x3b, 0x20,
+ 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x20, 0x32, 0x30, 0x70, 0x78, 0x3b,
+ 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x3a,
+ 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x20, 0x30,
+ 0x2e, 0x32, 0x73, 0x3b, 0x22, 0x3e, 0xe2, 0x96, 0xb6, 0x3c, 0x2f, 0x73,
+ 0x70, 0x61, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x74,
+ 0x72, 0x6f, 0x6e, 0x67, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22,
+ 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x3a,
+ 0x20, 0x27, 0x43, 0x6f, 0x75, 0x72, 0x69, 0x65, 0x72, 0x20, 0x4e, 0x65,
+ 0x77, 0x27, 0x2c, 0x20, 0x6d, 0x6f, 0x6e, 0x6f, 0x73, 0x70, 0x61, 0x63,
+ 0x65, 0x3b, 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x69, 0x7a, 0x65,
+ 0x3a, 0x20, 0x31, 0x32, 0x70, 0x78, 0x3b, 0x22, 0x3e, 0x57, 0x65, 0x62,
+ 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x3a, 0x20, 0x24, 0x7b, 0x77, 0x73,
+ 0x69, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x7d, 0x3c, 0x2f, 0x73,
+ 0x74, 0x72, 0x6f, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
+ 0x73, 0x70, 0x61, 0x6e, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22,
+ 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x20, 0x23, 0x36, 0x36, 0x36, 0x3b,
+ 0x20, 0x6d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x2d, 0x6c, 0x65, 0x66, 0x74,
+ 0x3a, 0x20, 0x31, 0x35, 0x70, 0x78, 0x3b, 0x22, 0x3e, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x66, 0x69, 0x6c, 0x74,
- 0x65, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x20, 0x3d, 0x20,
- 0x5b, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
+ 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x20, 0x24, 0x7b, 0x73,
+ 0x75, 0x62, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x7d, 0x20, 0x7c, 0x20, 0x4f,
+ 0x6c, 0x64, 0x65, 0x73, 0x74, 0x3a, 0x20, 0x24, 0x7b, 0x6f, 0x6c, 0x64,
+ 0x65, 0x73, 0x74, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53,
+ 0x74, 0x72, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x73, 0x70,
+ 0x61, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x60, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x41, 0x64, 0x64,
+ 0x20, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c,
+ 0x65, 0x72, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65,
+ 0x20, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65,
+ 0x72, 0x52, 0x6f, 0x77, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e,
+ 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63,
+ 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x28, 0x29, 0x20, 0x3d, 0x3e,
+ 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63,
+ 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70,
+ 0x28, 0x77, 0x73, 0x69, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x29,
+ 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x61, 0x70,
+ 0x70, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28, 0x68, 0x65,
+ 0x61, 0x64, 0x65, 0x72, 0x52, 0x6f, 0x77, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72,
+ 0x65, 0x61, 0x74, 0x65, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x20,
+ 0x72, 0x6f, 0x77, 0x73, 0x20, 0x28, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61,
+ 0x6c, 0x6c, 0x79, 0x20, 0x68, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x29, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x75, 0x62, 0x73,
- 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x66, 0x69, 0x6c,
- 0x74, 0x65, 0x72, 0x73, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68,
- 0x28, 0x28, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x29, 0x20, 0x3d, 0x3e,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x61, 0x72, 0x74, 0x73, 0x20, 0x3d,
- 0x20, 0x5b, 0x5d, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x66, 0x6f,
+ 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x28, 0x73, 0x75, 0x62, 0x73, 0x63,
+ 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x20, 0x69, 0x6e, 0x64,
+ 0x65, 0x78, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x6f, 0x77,
+ 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
+ 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
+ 0x74, 0x28, 0x27, 0x74, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x65, 0x74,
+ 0x61, 0x69, 0x6c, 0x52, 0x6f, 0x77, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73,
+ 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x3d, 0x20, 0x27, 0x73, 0x75, 0x62, 0x73,
+ 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x64, 0x65, 0x74,
+ 0x61, 0x69, 0x6c, 0x2d, 0x72, 0x6f, 0x77, 0x27, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x65,
+ 0x74, 0x61, 0x69, 0x6c, 0x52, 0x6f, 0x77, 0x2e, 0x73, 0x65, 0x74, 0x41,
+ 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x28, 0x27, 0x64, 0x61,
+ 0x74, 0x61, 0x2d, 0x77, 0x73, 0x69, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70,
+ 0x27, 0x2c, 0x20, 0x77, 0x73, 0x69, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65,
+ 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x6f,
+ 0x77, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64, 0x69, 0x73, 0x70,
+ 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27, 0x6e, 0x6f, 0x6e, 0x65, 0x27,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x61, 0x6c, 0x63, 0x75, 0x6c,
+ 0x61, 0x74, 0x65, 0x20, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x64, 0x75, 0x72, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x6e, 0x6f, 0x77, 0x20, 0x2d, 0x20,
+ 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
+ 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x64, 0x75, 0x72, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x20, 0x3d, 0x20, 0x66, 0x6f, 0x72,
+ 0x6d, 0x61, 0x74, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x28,
+ 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x29, 0x3b, 0x0a, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72,
- 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x20, 0x26, 0x26, 0x20, 0x41, 0x72,
- 0x72, 0x61, 0x79, 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x28,
- 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x73,
- 0x29, 0x20, 0x26, 0x26, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e,
- 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68,
+ 0x2f, 0x2f, 0x20, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x20, 0x66, 0x69,
+ 0x6c, 0x74, 0x65, 0x72, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x66, 0x69,
+ 0x6c, 0x74, 0x65, 0x72, 0x73, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
+ 0x20, 0x3d, 0x20, 0x27, 0x4e, 0x6f, 0x6e, 0x65, 0x27, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
+ 0x66, 0x20, 0x28, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
+ 0x69, 0x6f, 0x6e, 0x2e, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x20,
+ 0x26, 0x26, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
+ 0x69, 0x6f, 0x6e, 0x2e, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x2e,
+ 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3e, 0x20, 0x30, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c,
+ 0x73, 0x20, 0x3d, 0x20, 0x5b, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
+ 0x2e, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x2e, 0x66, 0x6f, 0x72,
+ 0x45, 0x61, 0x63, 0x68, 0x28, 0x28, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72,
+ 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x61, 0x72,
+ 0x74, 0x73, 0x20, 0x3d, 0x20, 0x5b, 0x5d, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x66, 0x69,
+ 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x20, 0x26,
+ 0x26, 0x20, 0x41, 0x72, 0x72, 0x61, 0x79, 0x2e, 0x69, 0x73, 0x41, 0x72,
+ 0x72, 0x61, 0x79, 0x28, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x6b,
+ 0x69, 0x6e, 0x64, 0x73, 0x29, 0x20, 0x26, 0x26, 0x20, 0x66, 0x69, 0x6c,
+ 0x74, 0x65, 0x72, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x2e, 0x6c, 0x65,
+ 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3e, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x70, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x70, 0x75, 0x73, 0x68, 0x28, 0x60,
+ 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x3a, 0x5b, 0x24, 0x7b, 0x66, 0x69, 0x6c,
+ 0x74, 0x65, 0x72, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x2e, 0x6a, 0x6f,
+ 0x69, 0x6e, 0x28, 0x27, 0x2c, 0x27, 0x29, 0x7d, 0x5d, 0x60, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x6f,
+ 0x72, 0x73, 0x20, 0x26, 0x26, 0x20, 0x41, 0x72, 0x72, 0x61, 0x79, 0x2e,
+ 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x28, 0x66, 0x69, 0x6c, 0x74,
+ 0x65, 0x72, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x73, 0x29, 0x20,
+ 0x26, 0x26, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x61, 0x75,
+ 0x74, 0x68, 0x6f, 0x72, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68,
0x20, 0x3e, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x61, 0x72, 0x74,
- 0x73, 0x2e, 0x70, 0x75, 0x73, 0x68, 0x28, 0x60, 0x6b, 0x69, 0x6e, 0x64,
- 0x73, 0x3a, 0x5b, 0x24, 0x7b, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e,
- 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x2e, 0x6a, 0x6f, 0x69, 0x6e, 0x28, 0x27,
- 0x2c, 0x27, 0x29, 0x7d, 0x5d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x43, 0x6f, 0x75, 0x6e,
+ 0x74, 0x20, 0x3d, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x61,
+ 0x75, 0x74, 0x68, 0x6f, 0x72, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74,
+ 0x68, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x66, 0x69, 0x6c, 0x74,
- 0x65, 0x72, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x73, 0x20, 0x26,
- 0x26, 0x20, 0x41, 0x72, 0x72, 0x61, 0x79, 0x2e, 0x69, 0x73, 0x41, 0x72,
- 0x72, 0x61, 0x79, 0x28, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x61,
- 0x75, 0x74, 0x68, 0x6f, 0x72, 0x73, 0x29, 0x20, 0x26, 0x26, 0x20, 0x66,
- 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72,
- 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3e, 0x20, 0x30,
+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x61, 0x75, 0x74, 0x68, 0x6f,
+ 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x31,
0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x61, 0x75,
- 0x74, 0x68, 0x6f, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x3d, 0x20,
- 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x6f,
- 0x72, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
- 0x66, 0x20, 0x28, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x43, 0x6f, 0x75,
- 0x6e, 0x74, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x31, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x50, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x20, 0x3d, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x61,
+ 0x75, 0x74, 0x68, 0x6f, 0x72, 0x73, 0x5b, 0x30, 0x5d, 0x2e, 0x73, 0x75,
+ 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x30, 0x2c, 0x20, 0x38,
+ 0x29, 0x20, 0x2b, 0x20, 0x27, 0x2e, 0x2e, 0x2e, 0x27, 0x3b, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73, 0x68,
- 0x6f, 0x72, 0x74, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x20,
- 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x61, 0x75, 0x74, 0x68, 0x6f,
- 0x72, 0x73, 0x5b, 0x30, 0x5d, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72,
- 0x69, 0x6e, 0x67, 0x28, 0x30, 0x2c, 0x20, 0x38, 0x29, 0x20, 0x2b, 0x20,
- 0x27, 0x2e, 0x2e, 0x2e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x70, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x70, 0x75, 0x73,
+ 0x68, 0x28, 0x60, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x73, 0x3a, 0x5b,
+ 0x24, 0x7b, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x50, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x7d, 0x5d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70,
- 0x61, 0x72, 0x74, 0x73, 0x2e, 0x70, 0x75, 0x73, 0x68, 0x28, 0x60, 0x61,
- 0x75, 0x74, 0x68, 0x6f, 0x72, 0x73, 0x3a, 0x5b, 0x24, 0x7b, 0x73, 0x68,
- 0x6f, 0x72, 0x74, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x7d, 0x5d, 0x60,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73,
+ 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x61, 0x72, 0x74,
+ 0x73, 0x2e, 0x70, 0x75, 0x73, 0x68, 0x28, 0x60, 0x61, 0x75, 0x74, 0x68,
+ 0x6f, 0x72, 0x73, 0x3a, 0x5b, 0x24, 0x7b, 0x61, 0x75, 0x74, 0x68, 0x6f,
+ 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x7d, 0x20, 0x70, 0x75, 0x62, 0x6b,
+ 0x65, 0x79, 0x73, 0x5d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x66, 0x69, 0x6c,
+ 0x74, 0x65, 0x72, 0x2e, 0x69, 0x64, 0x73, 0x20, 0x26, 0x26, 0x20, 0x41,
+ 0x72, 0x72, 0x61, 0x79, 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79,
+ 0x28, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x69, 0x64, 0x73, 0x29,
+ 0x20, 0x26, 0x26, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x69,
+ 0x64, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3e, 0x20,
+ 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x69,
+ 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x69, 0x6c,
+ 0x74, 0x65, 0x72, 0x2e, 0x69, 0x64, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67,
+ 0x74, 0x68, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x70, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x70, 0x75,
+ 0x73, 0x68, 0x28, 0x60, 0x69, 0x64, 0x73, 0x3a, 0x5b, 0x24, 0x7b, 0x69,
+ 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x7d, 0x20, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x24, 0x7b, 0x69, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x3e,
+ 0x20, 0x31, 0x20, 0x3f, 0x20, 0x27, 0x73, 0x27, 0x20, 0x3a, 0x20, 0x27,
+ 0x27, 0x7d, 0x5d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x69, 0x6d, 0x65,
+ 0x50, 0x61, 0x72, 0x74, 0x73, 0x20, 0x3d, 0x20, 0x5b, 0x5d, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x73, 0x69, 0x6e, 0x63, 0x65,
+ 0x20, 0x26, 0x26, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x73,
+ 0x69, 0x6e, 0x63, 0x65, 0x20, 0x3e, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x44,
+ 0x61, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x44, 0x61,
+ 0x74, 0x65, 0x28, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x73, 0x69,
+ 0x6e, 0x63, 0x65, 0x20, 0x2a, 0x20, 0x31, 0x30, 0x30, 0x30, 0x29, 0x2e,
+ 0x74, 0x6f, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x65, 0x53, 0x74, 0x72, 0x69,
+ 0x6e, 0x67, 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x50, 0x61,
+ 0x72, 0x74, 0x73, 0x2e, 0x70, 0x75, 0x73, 0x68, 0x28, 0x60, 0x73, 0x69,
+ 0x6e, 0x63, 0x65, 0x3a, 0x24, 0x7b, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x44,
+ 0x61, 0x74, 0x65, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72,
+ 0x2e, 0x75, 0x6e, 0x74, 0x69, 0x6c, 0x20, 0x26, 0x26, 0x20, 0x66, 0x69,
+ 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x75, 0x6e, 0x74, 0x69, 0x6c, 0x20, 0x3e,
+ 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x75, 0x6e, 0x74, 0x69, 0x6c, 0x44, 0x61, 0x74, 0x65, 0x20, 0x3d, 0x20,
+ 0x6e, 0x65, 0x77, 0x20, 0x44, 0x61, 0x74, 0x65, 0x28, 0x66, 0x69, 0x6c,
+ 0x74, 0x65, 0x72, 0x2e, 0x75, 0x6e, 0x74, 0x69, 0x6c, 0x20, 0x2a, 0x20,
+ 0x31, 0x30, 0x30, 0x30, 0x29, 0x2e, 0x74, 0x6f, 0x4c, 0x6f, 0x63, 0x61,
+ 0x6c, 0x65, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x74, 0x69, 0x6d, 0x65, 0x50, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x70, 0x75,
+ 0x73, 0x68, 0x28, 0x60, 0x75, 0x6e, 0x74, 0x69, 0x6c, 0x3a, 0x24, 0x7b,
+ 0x75, 0x6e, 0x74, 0x69, 0x6c, 0x44, 0x61, 0x74, 0x65, 0x7d, 0x60, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x74, 0x69, 0x6d, 0x65, 0x50, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x6c, 0x65,
+ 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3e, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x70, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x70, 0x75, 0x73, 0x68, 0x28, 0x74,
+ 0x69, 0x6d, 0x65, 0x50, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x6a, 0x6f, 0x69,
+ 0x6e, 0x28, 0x27, 0x2c, 0x20, 0x27, 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x66, 0x69, 0x6c,
+ 0x74, 0x65, 0x72, 0x2e, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x20, 0x26, 0x26,
+ 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x6c, 0x69, 0x6d, 0x69,
+ 0x74, 0x20, 0x3e, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x61, 0x72,
+ 0x74, 0x73, 0x2e, 0x70, 0x75, 0x73, 0x68, 0x28, 0x60, 0x6c, 0x69, 0x6d,
+ 0x69, 0x74, 0x3a, 0x24, 0x7b, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e,
+ 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x66, 0x69, 0x6c,
+ 0x74, 0x65, 0x72, 0x2e, 0x74, 0x61, 0x67, 0x5f, 0x66, 0x69, 0x6c, 0x74,
+ 0x65, 0x72, 0x73, 0x20, 0x26, 0x26, 0x20, 0x41, 0x72, 0x72, 0x61, 0x79,
+ 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x28, 0x66, 0x69, 0x6c,
+ 0x74, 0x65, 0x72, 0x2e, 0x74, 0x61, 0x67, 0x5f, 0x66, 0x69, 0x6c, 0x74,
+ 0x65, 0x72, 0x73, 0x29, 0x20, 0x26, 0x26, 0x20, 0x66, 0x69, 0x6c, 0x74,
+ 0x65, 0x72, 0x2e, 0x74, 0x61, 0x67, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65,
+ 0x72, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3e, 0x20,
+ 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x70,
+ 0x75, 0x73, 0x68, 0x28, 0x60, 0x74, 0x61, 0x67, 0x73, 0x3a, 0x5b, 0x24,
+ 0x7b, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x74, 0x61, 0x67, 0x5f,
+ 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67,
+ 0x74, 0x68, 0x7d, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x24, 0x7b,
+ 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x74, 0x61, 0x67, 0x5f, 0x66,
+ 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74,
+ 0x68, 0x20, 0x3e, 0x20, 0x31, 0x20, 0x3f, 0x20, 0x27, 0x73, 0x27, 0x20,
+ 0x3a, 0x20, 0x27, 0x27, 0x7d, 0x5d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x61, 0x72,
+ 0x74, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3e, 0x20,
+ 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x44,
+ 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x2e, 0x70, 0x75, 0x73, 0x68, 0x28,
+ 0x70, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x6a, 0x6f, 0x69, 0x6e, 0x28, 0x27,
+ 0x2c, 0x20, 0x27, 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x70, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x70, 0x75,
- 0x73, 0x68, 0x28, 0x60, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x73, 0x3a,
- 0x5b, 0x24, 0x7b, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x43, 0x6f, 0x75,
- 0x6e, 0x74, 0x7d, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x5d,
- 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e,
- 0x69, 0x64, 0x73, 0x20, 0x26, 0x26, 0x20, 0x41, 0x72, 0x72, 0x61, 0x79,
- 0x2e, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x28, 0x66, 0x69, 0x6c,
- 0x74, 0x65, 0x72, 0x2e, 0x69, 0x64, 0x73, 0x29, 0x20, 0x26, 0x26, 0x20,
- 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x69, 0x64, 0x73, 0x2e, 0x6c,
- 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3e, 0x20, 0x30, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x69, 0x64, 0x43, 0x6f, 0x75,
- 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e,
- 0x69, 0x64, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x70, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x70, 0x75, 0x73, 0x68, 0x28, 0x60,
- 0x69, 0x64, 0x73, 0x3a, 0x5b, 0x24, 0x7b, 0x69, 0x64, 0x43, 0x6f, 0x75,
- 0x6e, 0x74, 0x7d, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x24, 0x7b, 0x69,
- 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x3e, 0x20, 0x31, 0x20, 0x3f,
- 0x20, 0x27, 0x73, 0x27, 0x20, 0x3a, 0x20, 0x27, 0x27, 0x7d, 0x5d, 0x60,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x50, 0x61, 0x72, 0x74,
- 0x73, 0x20, 0x3d, 0x20, 0x5b, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x66, 0x69, 0x6c, 0x74,
- 0x65, 0x72, 0x2e, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x20, 0x26, 0x26, 0x20,
- 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x73, 0x69, 0x6e, 0x63, 0x65,
- 0x20, 0x3e, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x74, 0x20, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x44, 0x61, 0x74, 0x65, 0x20,
- 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x44, 0x61, 0x74, 0x65, 0x28, 0x66,
- 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x20,
- 0x2a, 0x20, 0x31, 0x30, 0x30, 0x30, 0x29, 0x2e, 0x74, 0x6f, 0x4c, 0x6f,
- 0x63, 0x61, 0x6c, 0x65, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x50, 0x61, 0x72, 0x74, 0x73, 0x2e,
- 0x70, 0x75, 0x73, 0x68, 0x28, 0x60, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x3a,
- 0x24, 0x7b, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x44, 0x61, 0x74, 0x65, 0x7d,
- 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x75, 0x6e, 0x74,
- 0x69, 0x6c, 0x20, 0x26, 0x26, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72,
- 0x2e, 0x75, 0x6e, 0x74, 0x69, 0x6c, 0x20, 0x3e, 0x20, 0x30, 0x29, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x75, 0x6e, 0x74, 0x69,
- 0x6c, 0x44, 0x61, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x20,
- 0x44, 0x61, 0x74, 0x65, 0x28, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e,
- 0x75, 0x6e, 0x74, 0x69, 0x6c, 0x20, 0x2a, 0x20, 0x31, 0x30, 0x30, 0x30,
- 0x29, 0x2e, 0x74, 0x6f, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x65, 0x53, 0x74,
- 0x72, 0x69, 0x6e, 0x67, 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x69, 0x6d, 0x65,
- 0x50, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x70, 0x75, 0x73, 0x68, 0x28, 0x60,
- 0x75, 0x6e, 0x74, 0x69, 0x6c, 0x3a, 0x24, 0x7b, 0x75, 0x6e, 0x74, 0x69,
- 0x6c, 0x44, 0x61, 0x74, 0x65, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x69, 0x6d, 0x65,
- 0x50, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68,
- 0x20, 0x3e, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x61, 0x72, 0x74,
- 0x73, 0x2e, 0x70, 0x75, 0x73, 0x68, 0x28, 0x74, 0x69, 0x6d, 0x65, 0x50,
- 0x61, 0x72, 0x74, 0x73, 0x2e, 0x6a, 0x6f, 0x69, 0x6e, 0x28, 0x27, 0x2c,
- 0x20, 0x27, 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e,
- 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x20, 0x26, 0x26, 0x20, 0x66, 0x69, 0x6c,
- 0x74, 0x65, 0x72, 0x2e, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x20, 0x3e, 0x20,
- 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x70,
- 0x75, 0x73, 0x68, 0x28, 0x60, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x3a, 0x24,
- 0x7b, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x6c, 0x69, 0x6d, 0x69,
- 0x74, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e,
- 0x74, 0x61, 0x67, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x20,
- 0x26, 0x26, 0x20, 0x41, 0x72, 0x72, 0x61, 0x79, 0x2e, 0x69, 0x73, 0x41,
- 0x72, 0x72, 0x61, 0x79, 0x28, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e,
- 0x74, 0x61, 0x67, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x29,
- 0x20, 0x26, 0x26, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x2e, 0x74,
- 0x61, 0x67, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x2e, 0x6c,
- 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3e, 0x20, 0x30, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x70, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x70, 0x75, 0x73, 0x68, 0x28,
- 0x60, 0x74, 0x61, 0x67, 0x73, 0x3a, 0x5b, 0x24, 0x7b, 0x66, 0x69, 0x6c,
- 0x74, 0x65, 0x72, 0x2e, 0x74, 0x61, 0x67, 0x5f, 0x66, 0x69, 0x6c, 0x74,
- 0x65, 0x72, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x7d, 0x20,
- 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x24, 0x7b, 0x66, 0x69, 0x6c, 0x74,
- 0x65, 0x72, 0x2e, 0x74, 0x61, 0x67, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65,
- 0x72, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3e, 0x20,
- 0x31, 0x20, 0x3f, 0x20, 0x27, 0x73, 0x27, 0x20, 0x3a, 0x20, 0x27, 0x27,
- 0x7d, 0x5d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x61, 0x72, 0x74, 0x73, 0x2e, 0x6c,
- 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3e, 0x20, 0x30, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69,
- 0x6c, 0x73, 0x2e, 0x70, 0x75, 0x73, 0x68, 0x28, 0x70, 0x61, 0x72, 0x74,
- 0x73, 0x2e, 0x6a, 0x6f, 0x69, 0x6e, 0x28, 0x27, 0x2c, 0x20, 0x27, 0x29,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x69, 0x6c, 0x74,
- 0x65, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x2e, 0x70, 0x75,
- 0x73, 0x68, 0x28, 0x27, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x20, 0x66, 0x69,
- 0x6c, 0x74, 0x65, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29,
- 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65,
- 0x72, 0x73, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20,
0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c,
- 0x73, 0x2e, 0x6a, 0x6f, 0x69, 0x6e, 0x28, 0x27, 0x20, 0x7c, 0x20, 0x27,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c,
- 0x52, 0x6f, 0x77, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d,
- 0x4c, 0x20, 0x3d, 0x20, 0x60, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74,
- 0x64, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x73, 0x75, 0x62,
- 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x64, 0x65,
- 0x74, 0x61, 0x69, 0x6c, 0x2d, 0x70, 0x72, 0x65, 0x66, 0x69, 0x78, 0x22,
- 0x3e, 0xe2, 0x94, 0x94, 0xe2, 0x94, 0x80, 0x3c, 0x2f, 0x74, 0x64, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x20, 0x63, 0x6c, 0x61,
- 0x73, 0x73, 0x3d, 0x22, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x2d,
- 0x69, 0x64, 0x22, 0x3e, 0x24, 0x7b, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
- 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x69, 0x64, 0x20, 0x7c, 0x7c,
- 0x20, 0x27, 0x4e, 0x2f, 0x41, 0x27, 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x20, 0x63, 0x6c, 0x61,
- 0x73, 0x73, 0x3d, 0x22, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x2d,
- 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x24, 0x7b,
- 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x7d,
- 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74,
- 0x64, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x73, 0x75, 0x62,
- 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x64, 0x65,
- 0x74, 0x61, 0x69, 0x6c, 0x2d, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73,
- 0x22, 0x3e, 0x24, 0x7b, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x44,
- 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x60, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f,
- 0x64, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69,
- 0x6c, 0x64, 0x28, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x6f, 0x77,
- 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x52, 0x65, 0x73, 0x74, 0x6f,
- 0x72, 0x65, 0x20, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x2f, 0x63, 0x6f,
- 0x6c, 0x6c, 0x61, 0x70, 0x73, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x65,
- 0x20, 0x61, 0x66, 0x74, 0x65, 0x72, 0x20, 0x61, 0x64, 0x64, 0x69, 0x6e,
- 0x67, 0x20, 0x61, 0x6c, 0x6c, 0x20, 0x72, 0x6f, 0x77, 0x73, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
- 0x66, 0x20, 0x28, 0x77, 0x61, 0x73, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x64,
- 0x65, 0x64, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x6f,
- 0x77, 0x73, 0x20, 0x3d, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x6f,
- 0x64, 0x79, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x6c, 0x65,
- 0x63, 0x74, 0x6f, 0x72, 0x41, 0x6c, 0x6c, 0x28, 0x60, 0x2e, 0x73, 0x75,
- 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x64,
- 0x65, 0x74, 0x61, 0x69, 0x6c, 0x2d, 0x72, 0x6f, 0x77, 0x5b, 0x64, 0x61,
- 0x74, 0x61, 0x2d, 0x77, 0x73, 0x69, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70,
- 0x3d, 0x22, 0x24, 0x7b, 0x77, 0x73, 0x69, 0x50, 0x6f, 0x69, 0x6e, 0x74,
- 0x65, 0x72, 0x7d, 0x22, 0x5d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x73, 0x2e, 0x70, 0x75, 0x73, 0x68, 0x28, 0x27, 0x65, 0x6d, 0x70, 0x74,
+ 0x79, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x27, 0x29, 0x3b, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x6f, 0x77, 0x73, 0x2e,
- 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x72, 0x6f, 0x77, 0x20,
- 0x3d, 0x3e, 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65,
- 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x72, 0x6f, 0x77, 0x27, 0x29, 0x3b,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66,
+ 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61,
+ 0x79, 0x20, 0x3d, 0x20, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x44, 0x65,
+ 0x74, 0x61, 0x69, 0x6c, 0x73, 0x2e, 0x6a, 0x6f, 0x69, 0x6e, 0x28, 0x27,
+ 0x20, 0x7c, 0x20, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x65,
+ 0x74, 0x61, 0x69, 0x6c, 0x52, 0x6f, 0x77, 0x2e, 0x69, 0x6e, 0x6e, 0x65,
+ 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x60, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x74, 0x64, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
+ 0x22, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
+ 0x6e, 0x2d, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x2d, 0x70, 0x72, 0x65,
+ 0x66, 0x69, 0x78, 0x22, 0x3e, 0xe2, 0x94, 0x94, 0xe2, 0x94, 0x80, 0x3c,
+ 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64,
+ 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x73, 0x75, 0x62, 0x73,
+ 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x64, 0x65, 0x74,
+ 0x61, 0x69, 0x6c, 0x2d, 0x69, 0x64, 0x22, 0x3e, 0x24, 0x7b, 0x73, 0x75,
+ 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x69,
+ 0x64, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x4e, 0x2f, 0x41, 0x27, 0x7d, 0x3c,
+ 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64,
+ 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x73, 0x75, 0x62, 0x73,
+ 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x64, 0x65, 0x74,
+ 0x61, 0x69, 0x6c, 0x2d, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x22, 0x3e, 0x24, 0x7b, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x53, 0x74, 0x72, 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x74, 0x64, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
+ 0x22, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
+ 0x6e, 0x2d, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x2d, 0x66, 0x69, 0x6c,
+ 0x74, 0x65, 0x72, 0x73, 0x22, 0x3e, 0x24, 0x7b, 0x66, 0x69, 0x6c, 0x74,
+ 0x65, 0x72, 0x73, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x7d, 0x3c,
+ 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x60, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x65, 0x6e,
+ 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28, 0x64, 0x65, 0x74, 0x61, 0x69,
+ 0x6c, 0x52, 0x6f, 0x77, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x52,
+ 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x20, 0x65, 0x78, 0x70, 0x61, 0x6e,
+ 0x64, 0x2f, 0x63, 0x6f, 0x6c, 0x6c, 0x61, 0x70, 0x73, 0x65, 0x20, 0x73,
+ 0x74, 0x61, 0x74, 0x65, 0x20, 0x61, 0x66, 0x74, 0x65, 0x72, 0x20, 0x61,
+ 0x64, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x6c, 0x6c, 0x20, 0x72, 0x6f,
+ 0x77, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x77, 0x61, 0x73, 0x45, 0x78,
+ 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x64, 0x65, 0x74, 0x61,
+ 0x69, 0x6c, 0x52, 0x6f, 0x77, 0x73, 0x20, 0x3d, 0x20, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79,
+ 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x41, 0x6c, 0x6c, 0x28,
+ 0x60, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
+ 0x6f, 0x6e, 0x2d, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x2d, 0x72, 0x6f,
+ 0x77, 0x5b, 0x64, 0x61, 0x74, 0x61, 0x2d, 0x77, 0x73, 0x69, 0x2d, 0x67,
+ 0x72, 0x6f, 0x75, 0x70, 0x3d, 0x22, 0x24, 0x7b, 0x77, 0x73, 0x69, 0x50,
+ 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x7d, 0x22, 0x5d, 0x60, 0x29, 0x3b,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x65,
- 0x78, 0x70, 0x61, 0x6e, 0x64, 0x49, 0x63, 0x6f, 0x6e, 0x20, 0x3d, 0x20,
- 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x6f, 0x77, 0x2e, 0x71, 0x75,
- 0x65, 0x72, 0x79, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x28,
- 0x27, 0x2e, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x2d, 0x69, 0x63, 0x6f,
- 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x49, 0x63, 0x6f, 0x6e, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65,
- 0x78, 0x70, 0x61, 0x6e, 0x64, 0x49, 0x63, 0x6f, 0x6e, 0x2e, 0x74, 0x65,
- 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20,
- 0x27, 0xe2, 0x96, 0xbc, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52,
+ 0x6f, 0x77, 0x73, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28,
+ 0x72, 0x6f, 0x77, 0x20, 0x3d, 0x3e, 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x73,
+ 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
+ 0x20, 0x3d, 0x20, 0x27, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x72, 0x6f,
+ 0x77, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x49, 0x63, 0x6f,
+ 0x6e, 0x20, 0x3d, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x6f,
+ 0x77, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x6c, 0x65, 0x63,
+ 0x74, 0x6f, 0x72, 0x28, 0x27, 0x2e, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64,
+ 0x2d, 0x69, 0x63, 0x6f, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x49,
+ 0x63, 0x6f, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x49, 0x63, 0x6f,
- 0x6e, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x74, 0x72, 0x61, 0x6e,
- 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x20, 0x3d, 0x20, 0x27, 0x72, 0x6f, 0x74,
- 0x61, 0x74, 0x65, 0x28, 0x39, 0x30, 0x64, 0x65, 0x67, 0x29, 0x27, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x54,
- 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x65, 0x78, 0x70, 0x61, 0x6e,
- 0x64, 0x69, 0x6e, 0x67, 0x2f, 0x63, 0x6f, 0x6c, 0x6c, 0x61, 0x70, 0x73,
- 0x69, 0x6e, 0x67, 0x20, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x0a, 0x66,
- 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x67, 0x67,
- 0x6c, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
- 0x6f, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x28, 0x77, 0x73, 0x69, 0x50,
- 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x68, 0x65, 0x61, 0x64,
- 0x65, 0x72, 0x52, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65,
- 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x28, 0x60, 0x2e, 0x73, 0x75, 0x62,
- 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x67, 0x72,
- 0x6f, 0x75, 0x70, 0x2d, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x5b, 0x64,
- 0x61, 0x74, 0x61, 0x2d, 0x77, 0x73, 0x69, 0x2d, 0x70, 0x6f, 0x69, 0x6e,
- 0x74, 0x65, 0x72, 0x3d, 0x22, 0x24, 0x7b, 0x77, 0x73, 0x69, 0x50, 0x6f,
- 0x69, 0x6e, 0x74, 0x65, 0x72, 0x7d, 0x22, 0x5d, 0x60, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x64, 0x65,
- 0x74, 0x61, 0x69, 0x6c, 0x52, 0x6f, 0x77, 0x73, 0x20, 0x3d, 0x20, 0x64,
- 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x71, 0x75, 0x65, 0x72,
- 0x79, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x41, 0x6c, 0x6c,
- 0x28, 0x60, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x2d, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x2d, 0x72,
- 0x6f, 0x77, 0x5b, 0x64, 0x61, 0x74, 0x61, 0x2d, 0x77, 0x73, 0x69, 0x2d,
- 0x67, 0x72, 0x6f, 0x75, 0x70, 0x3d, 0x22, 0x24, 0x7b, 0x77, 0x73, 0x69,
- 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x7d, 0x22, 0x5d, 0x60, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
- 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x49, 0x63, 0x6f, 0x6e, 0x20, 0x3d,
- 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x6f, 0x77, 0x2e, 0x71,
- 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72,
- 0x28, 0x27, 0x2e, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x2d, 0x69, 0x63,
- 0x6f, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x69, 0x73, 0x45, 0x78, 0x70, 0x61, 0x6e,
- 0x64, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72,
- 0x52, 0x6f, 0x77, 0x2e, 0x67, 0x65, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69,
- 0x62, 0x75, 0x74, 0x65, 0x28, 0x27, 0x64, 0x61, 0x74, 0x61, 0x2d, 0x65,
- 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x27, 0x29, 0x20, 0x3d, 0x3d,
- 0x3d, 0x20, 0x27, 0x74, 0x72, 0x75, 0x65, 0x27, 0x3b, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x69, 0x73, 0x45, 0x78, 0x70,
- 0x61, 0x6e, 0x64, 0x65, 0x64, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x6f, 0x6c, 0x6c,
- 0x61, 0x70, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x6f, 0x77, 0x73, 0x2e,
- 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x72, 0x6f, 0x77, 0x20,
- 0x3d, 0x3e, 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65,
- 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27,
- 0x6e, 0x6f, 0x6e, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x49, 0x63,
- 0x6f, 0x6e, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65,
- 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27, 0xe2, 0x96, 0xb6, 0x27, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x78, 0x70, 0x61,
- 0x6e, 0x64, 0x49, 0x63, 0x6f, 0x6e, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65,
- 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x20, 0x3d,
- 0x20, 0x27, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x28, 0x30, 0x64, 0x65,
+ 0x6e, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
+ 0x74, 0x20, 0x3d, 0x20, 0x27, 0xe2, 0x96, 0xbc, 0x27, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x78, 0x70, 0x61, 0x6e,
+ 0x64, 0x49, 0x63, 0x6f, 0x6e, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e,
+ 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x20, 0x3d, 0x20,
+ 0x27, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x28, 0x39, 0x30, 0x64, 0x65,
0x67, 0x29, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x6f, 0x77, 0x2e, 0x73,
- 0x65, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x28,
- 0x27, 0x64, 0x61, 0x74, 0x61, 0x2d, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64,
- 0x65, 0x64, 0x27, 0x2c, 0x20, 0x27, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x27,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73,
- 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c,
- 0x52, 0x6f, 0x77, 0x73, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68,
- 0x28, 0x72, 0x6f, 0x77, 0x20, 0x3d, 0x3e, 0x20, 0x72, 0x6f, 0x77, 0x2e,
- 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
- 0x79, 0x20, 0x3d, 0x20, 0x27, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2d, 0x72,
- 0x6f, 0x77, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x49, 0x63, 0x6f, 0x6e,
- 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
- 0x20, 0x3d, 0x20, 0x27, 0xe2, 0x96, 0xbc, 0x27, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a,
+ 0x2f, 0x2f, 0x20, 0x54, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x66, 0x75,
+ 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x65,
+ 0x78, 0x70, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x2f, 0x63, 0x6f, 0x6c,
+ 0x6c, 0x61, 0x70, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x67, 0x72, 0x6f, 0x75,
+ 0x70, 0x73, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
+ 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
+ 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x28,
+ 0x77, 0x73, 0x69, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x6f, 0x77, 0x20, 0x3d, 0x20,
+ 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x71, 0x75, 0x65,
+ 0x72, 0x79, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x28, 0x60,
+ 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
+ 0x6e, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x2d, 0x68, 0x65, 0x61, 0x64,
+ 0x65, 0x72, 0x5b, 0x64, 0x61, 0x74, 0x61, 0x2d, 0x77, 0x73, 0x69, 0x2d,
+ 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x3d, 0x22, 0x24, 0x7b, 0x77,
+ 0x73, 0x69, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x7d, 0x22, 0x5d,
+ 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x6f, 0x77, 0x73,
+ 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
+ 0x71, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f,
+ 0x72, 0x41, 0x6c, 0x6c, 0x28, 0x60, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63,
+ 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x64, 0x65, 0x74, 0x61,
+ 0x69, 0x6c, 0x2d, 0x72, 0x6f, 0x77, 0x5b, 0x64, 0x61, 0x74, 0x61, 0x2d,
+ 0x77, 0x73, 0x69, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x3d, 0x22, 0x24,
+ 0x7b, 0x77, 0x73, 0x69, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x7d,
+ 0x22, 0x5d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x74, 0x20, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x49, 0x63,
+ 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52,
+ 0x6f, 0x77, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x6c, 0x65,
+ 0x63, 0x74, 0x6f, 0x72, 0x28, 0x27, 0x2e, 0x65, 0x78, 0x70, 0x61, 0x6e,
+ 0x64, 0x2d, 0x69, 0x63, 0x6f, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x69, 0x73, 0x45,
+ 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x68, 0x65,
+ 0x61, 0x64, 0x65, 0x72, 0x52, 0x6f, 0x77, 0x2e, 0x67, 0x65, 0x74, 0x41,
+ 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x28, 0x27, 0x64, 0x61,
+ 0x74, 0x61, 0x2d, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x27,
+ 0x29, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x74, 0x72, 0x75, 0x65, 0x27,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x69,
+ 0x73, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x43, 0x6f, 0x6c, 0x6c, 0x61, 0x70, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52,
+ 0x6f, 0x77, 0x73, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28,
+ 0x72, 0x6f, 0x77, 0x20, 0x3d, 0x3e, 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x73,
+ 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
+ 0x20, 0x3d, 0x20, 0x27, 0x6e, 0x6f, 0x6e, 0x65, 0x27, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x78, 0x70, 0x61,
+ 0x6e, 0x64, 0x49, 0x63, 0x6f, 0x6e, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43,
+ 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27, 0xe2, 0x96,
+ 0xb6, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x49, 0x63, 0x6f, 0x6e, 0x2e, 0x73,
+ 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f,
+ 0x72, 0x6d, 0x20, 0x3d, 0x20, 0x27, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x65,
+ 0x28, 0x30, 0x64, 0x65, 0x67, 0x29, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52,
+ 0x6f, 0x77, 0x2e, 0x73, 0x65, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62,
+ 0x75, 0x74, 0x65, 0x28, 0x27, 0x64, 0x61, 0x74, 0x61, 0x2d, 0x65, 0x78,
+ 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x27, 0x2c, 0x20, 0x27, 0x66, 0x61,
+ 0x6c, 0x73, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x45, 0x78, 0x70, 0x61, 0x6e,
+ 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x65,
+ 0x74, 0x61, 0x69, 0x6c, 0x52, 0x6f, 0x77, 0x73, 0x2e, 0x66, 0x6f, 0x72,
+ 0x45, 0x61, 0x63, 0x68, 0x28, 0x72, 0x6f, 0x77, 0x20, 0x3d, 0x3e, 0x20,
+ 0x72, 0x6f, 0x77, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64, 0x69,
+ 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x2d, 0x72, 0x6f, 0x77, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64,
- 0x49, 0x63, 0x6f, 0x6e, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x74,
- 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x20, 0x3d, 0x20, 0x27,
- 0x72, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x28, 0x39, 0x30, 0x64, 0x65, 0x67,
- 0x29, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x6f, 0x77, 0x2e, 0x73, 0x65,
- 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x28, 0x27,
- 0x64, 0x61, 0x74, 0x61, 0x2d, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65,
- 0x64, 0x27, 0x2c, 0x20, 0x27, 0x74, 0x72, 0x75, 0x65, 0x27, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f,
- 0x20, 0x48, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x20, 0x66, 0x75, 0x6e, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x66, 0x6f, 0x72, 0x6d,
- 0x61, 0x74, 0x20, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20,
- 0x69, 0x6e, 0x20, 0x68, 0x75, 0x6d, 0x61, 0x6e, 0x2d, 0x72, 0x65, 0x61,
- 0x64, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
- 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x6f,
- 0x72, 0x6d, 0x61, 0x74, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x28, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x29, 0x20, 0x7b, 0x0a,
+ 0x49, 0x63, 0x6f, 0x6e, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e,
+ 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27, 0xe2, 0x96, 0xbc, 0x27,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x78,
+ 0x70, 0x61, 0x6e, 0x64, 0x49, 0x63, 0x6f, 0x6e, 0x2e, 0x73, 0x74, 0x79,
+ 0x6c, 0x65, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d,
+ 0x20, 0x3d, 0x20, 0x27, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x28, 0x39,
+ 0x30, 0x64, 0x65, 0x67, 0x29, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x6f,
+ 0x77, 0x2e, 0x73, 0x65, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75,
+ 0x74, 0x65, 0x28, 0x27, 0x64, 0x61, 0x74, 0x61, 0x2d, 0x65, 0x78, 0x70,
+ 0x61, 0x6e, 0x64, 0x65, 0x64, 0x27, 0x2c, 0x20, 0x27, 0x74, 0x72, 0x75,
+ 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d,
+ 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x48, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x20,
+ 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20,
+ 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x20, 0x64, 0x75, 0x72, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x20, 0x68, 0x75, 0x6d, 0x61, 0x6e,
+ 0x2d, 0x72, 0x65, 0x61, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x66, 0x6f,
+ 0x72, 0x6d, 0x61, 0x74, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x44, 0x75, 0x72, 0x61,
+ 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x20, 0x3c, 0x20, 0x36, 0x30,
+ 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x60, 0x24, 0x7b,
+ 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x7d, 0x73, 0x60, 0x3b, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x65, 0x63, 0x6f,
- 0x6e, 0x64, 0x73, 0x20, 0x3c, 0x20, 0x36, 0x30, 0x29, 0x20, 0x72, 0x65,
- 0x74, 0x75, 0x72, 0x6e, 0x20, 0x60, 0x24, 0x7b, 0x73, 0x65, 0x63, 0x6f,
- 0x6e, 0x64, 0x73, 0x7d, 0x73, 0x60, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x6e, 0x64, 0x73, 0x20, 0x3c, 0x20, 0x33, 0x36, 0x30, 0x30, 0x29, 0x20,
+ 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x60, 0x24, 0x7b, 0x4d, 0x61,
+ 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f, 0x72, 0x28, 0x73, 0x65, 0x63,
+ 0x6f, 0x6e, 0x64, 0x73, 0x20, 0x2f, 0x20, 0x36, 0x30, 0x29, 0x7d, 0x6d,
+ 0x20, 0x24, 0x7b, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x20, 0x25,
+ 0x20, 0x36, 0x30, 0x7d, 0x73, 0x60, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x69, 0x66, 0x20, 0x28, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x20,
- 0x3c, 0x20, 0x33, 0x36, 0x30, 0x30, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75,
+ 0x3c, 0x20, 0x38, 0x36, 0x34, 0x30, 0x30, 0x29, 0x20, 0x72, 0x65, 0x74,
+ 0x75, 0x72, 0x6e, 0x20, 0x60, 0x24, 0x7b, 0x4d, 0x61, 0x74, 0x68, 0x2e,
+ 0x66, 0x6c, 0x6f, 0x6f, 0x72, 0x28, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64,
+ 0x73, 0x20, 0x2f, 0x20, 0x33, 0x36, 0x30, 0x30, 0x29, 0x7d, 0x68, 0x20,
+ 0x24, 0x7b, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f, 0x72,
+ 0x28, 0x28, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x20, 0x25, 0x20,
+ 0x33, 0x36, 0x30, 0x30, 0x29, 0x20, 0x2f, 0x20, 0x36, 0x30, 0x29, 0x7d,
+ 0x6d, 0x60, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75,
0x72, 0x6e, 0x20, 0x60, 0x24, 0x7b, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66,
0x6c, 0x6f, 0x6f, 0x72, 0x28, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73,
- 0x20, 0x2f, 0x20, 0x36, 0x30, 0x29, 0x7d, 0x6d, 0x20, 0x24, 0x7b, 0x73,
- 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x20, 0x25, 0x20, 0x36, 0x30, 0x7d,
- 0x73, 0x60, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
- 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x20, 0x3c, 0x20, 0x38, 0x36,
- 0x34, 0x30, 0x30, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20,
- 0x60, 0x24, 0x7b, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f,
- 0x72, 0x28, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x20, 0x2f, 0x20,
- 0x33, 0x36, 0x30, 0x30, 0x29, 0x7d, 0x68, 0x20, 0x24, 0x7b, 0x4d, 0x61,
- 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f, 0x72, 0x28, 0x28, 0x73, 0x65,
- 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x20, 0x25, 0x20, 0x33, 0x36, 0x30, 0x30,
- 0x29, 0x20, 0x2f, 0x20, 0x36, 0x30, 0x29, 0x7d, 0x6d, 0x60, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x60,
+ 0x20, 0x2f, 0x20, 0x38, 0x36, 0x34, 0x30, 0x30, 0x29, 0x7d, 0x64, 0x20,
0x24, 0x7b, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f, 0x72,
- 0x28, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x20, 0x2f, 0x20, 0x38,
- 0x36, 0x34, 0x30, 0x30, 0x29, 0x7d, 0x64, 0x20, 0x24, 0x7b, 0x4d, 0x61,
- 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f, 0x72, 0x28, 0x28, 0x73, 0x65,
- 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x20, 0x25, 0x20, 0x38, 0x36, 0x34, 0x30,
- 0x30, 0x29, 0x20, 0x2f, 0x20, 0x33, 0x36, 0x30, 0x30, 0x29, 0x7d, 0x68,
- 0x60, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
- 0x63, 0x73, 0x20, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x20, 0x69, 0x6e,
- 0x64, 0x69, 0x63, 0x61, 0x74, 0x6f, 0x72, 0x20, 0x28, 0x64, 0x69, 0x73,
- 0x61, 0x62, 0x6c, 0x65, 0x64, 0x20, 0x2d, 0x20, 0x73, 0x74, 0x61, 0x74,
- 0x75, 0x73, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x72,
- 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x29, 0x0a, 0x66, 0x75, 0x6e, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
- 0x74, 0x61, 0x74, 0x73, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x73,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x2c, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61,
- 0x67, 0x65, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x68, 0x61, 0x73,
- 0x20, 0x62, 0x65, 0x65, 0x6e, 0x20, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65,
- 0x64, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x74, 0x68, 0x65, 0x20, 0x55,
- 0x49, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e,
- 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x55, 0x74, 0x69, 0x6c,
- 0x69, 0x74, 0x79, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x74, 0x6f, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x20, 0x66,
- 0x69, 0x6c, 0x65, 0x20, 0x73, 0x69, 0x7a, 0x65, 0x0a, 0x66, 0x75, 0x6e,
- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
- 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x28, 0x62, 0x79, 0x74,
- 0x65, 0x73, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x21, 0x62, 0x79, 0x74, 0x65, 0x73, 0x20, 0x7c, 0x7c, 0x20,
- 0x62, 0x79, 0x74, 0x65, 0x73, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x30, 0x29,
- 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x27, 0x30, 0x20, 0x42,
- 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x6b, 0x20, 0x3d, 0x20, 0x31, 0x30, 0x32, 0x34, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73, 0x69, 0x7a,
- 0x65, 0x73, 0x20, 0x3d, 0x20, 0x5b, 0x27, 0x42, 0x27, 0x2c, 0x20, 0x27,
- 0x4b, 0x42, 0x27, 0x2c, 0x20, 0x27, 0x4d, 0x42, 0x27, 0x2c, 0x20, 0x27,
- 0x47, 0x42, 0x27, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x69, 0x20, 0x3d, 0x20, 0x4d, 0x61, 0x74, 0x68,
- 0x2e, 0x66, 0x6c, 0x6f, 0x6f, 0x72, 0x28, 0x4d, 0x61, 0x74, 0x68, 0x2e,
- 0x6c, 0x6f, 0x67, 0x28, 0x62, 0x79, 0x74, 0x65, 0x73, 0x29, 0x20, 0x2f,
- 0x20, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x6b, 0x29,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72,
- 0x6e, 0x20, 0x70, 0x61, 0x72, 0x73, 0x65, 0x46, 0x6c, 0x6f, 0x61, 0x74,
- 0x28, 0x28, 0x62, 0x79, 0x74, 0x65, 0x73, 0x20, 0x2f, 0x20, 0x4d, 0x61,
- 0x74, 0x68, 0x2e, 0x70, 0x6f, 0x77, 0x28, 0x6b, 0x2c, 0x20, 0x69, 0x29,
- 0x29, 0x2e, 0x74, 0x6f, 0x46, 0x69, 0x78, 0x65, 0x64, 0x28, 0x31, 0x29,
- 0x29, 0x20, 0x2b, 0x20, 0x27, 0x20, 0x27, 0x20, 0x2b, 0x20, 0x73, 0x69,
- 0x7a, 0x65, 0x73, 0x5b, 0x69, 0x5d, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f,
- 0x2f, 0x20, 0x55, 0x74, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x20, 0x66, 0x75,
- 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x66, 0x6f,
- 0x72, 0x6d, 0x61, 0x74, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
- 0x6d, 0x70, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
- 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
- 0x61, 0x6d, 0x70, 0x28, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
- 0x70, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x21, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x29,
- 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x27, 0x2d, 0x27, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x64,
- 0x61, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x44, 0x61,
- 0x74, 0x65, 0x28, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
- 0x20, 0x2a, 0x20, 0x31, 0x30, 0x30, 0x30, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x64, 0x61, 0x74,
- 0x65, 0x2e, 0x74, 0x6f, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x65, 0x53, 0x74,
- 0x72, 0x69, 0x6e, 0x67, 0x28, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f,
- 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x73, 0x74, 0x61,
- 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x63, 0x65, 0x6c, 0x6c,
- 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x66, 0x6c, 0x61, 0x73, 0x68, 0x20,
- 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x66,
- 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67,
- 0x65, 0x64, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
- 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x43,
- 0x65, 0x6c, 0x6c, 0x28, 0x63, 0x65, 0x6c, 0x6c, 0x49, 0x64, 0x2c, 0x20,
- 0x6e, 0x65, 0x77, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x65,
- 0x6c, 0x6c, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x42, 0x79, 0x49, 0x64, 0x28, 0x63, 0x65, 0x6c, 0x6c, 0x49, 0x64, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x63,
- 0x65, 0x6c, 0x6c, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b,
- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
- 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65,
- 0x20, 0x3d, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x2e, 0x74, 0x65, 0x78, 0x74,
- 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f,
- 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x56,
- 0x61, 0x6c, 0x75, 0x65, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x46, 0x6c, 0x61, 0x73, 0x68, 0x20, 0x69, 0x66, 0x20, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x63, 0x75, 0x72,
- 0x72, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x21, 0x3d,
- 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x26,
- 0x26, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x6c,
- 0x75, 0x65, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x27, 0x2d, 0x27, 0x29, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x65,
- 0x6c, 0x6c, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74,
- 0x2e, 0x61, 0x64, 0x64, 0x28, 0x27, 0x66, 0x6c, 0x61, 0x73, 0x68, 0x2d,
- 0x76, 0x61, 0x6c, 0x75, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65, 0x74, 0x54, 0x69, 0x6d, 0x65,
- 0x6f, 0x75, 0x74, 0x28, 0x28, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x65, 0x6c, 0x6c, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69,
- 0x73, 0x74, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x28, 0x27, 0x66,
- 0x6c, 0x61, 0x73, 0x68, 0x2d, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x2c,
- 0x20, 0x35, 0x30, 0x30, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x61, 0x72, 0x74,
- 0x20, 0x61, 0x75, 0x74, 0x6f, 0x2d, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73,
- 0x68, 0x69, 0x6e, 0x67, 0x20, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73,
- 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73,
- 0x20, 0x65, 0x76, 0x65, 0x72, 0x79, 0x20, 0x31, 0x30, 0x20, 0x73, 0x65,
- 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x73, 0x74, 0x61, 0x72, 0x74, 0x53, 0x74, 0x61, 0x74,
- 0x73, 0x41, 0x75, 0x74, 0x6f, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68,
- 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x44, 0x49, 0x53, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x20, 0x2d, 0x20, 0x55,
- 0x73, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x65, 0x61, 0x6c, 0x2d, 0x74, 0x69,
- 0x6d, 0x65, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e,
- 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x69, 0x6e, 0x73,
- 0x74, 0x65, 0x61, 0x64, 0x20, 0x6f, 0x66, 0x20, 0x70, 0x6f, 0x6c, 0x6c,
- 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x54,
- 0x68, 0x69, 0x73, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x69, 0x73, 0x20, 0x6b, 0x65, 0x70, 0x74, 0x20, 0x66, 0x6f, 0x72,
- 0x20, 0x62, 0x61, 0x63, 0x6b, 0x77, 0x61, 0x72, 0x64, 0x20, 0x63, 0x6f,
- 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x20,
- 0x62, 0x75, 0x74, 0x20, 0x6e, 0x6f, 0x20, 0x6c, 0x6f, 0x6e, 0x67, 0x65,
- 0x72, 0x20, 0x73, 0x74, 0x61, 0x72, 0x74, 0x73, 0x20, 0x61, 0x75, 0x74,
- 0x6f, 0x2d, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x44, 0x61, 0x74, 0x61, 0x62,
- 0x61, 0x73, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
- 0x63, 0x73, 0x20, 0x61, 0x75, 0x74, 0x6f, 0x2d, 0x72, 0x65, 0x66, 0x72,
- 0x65, 0x73, 0x68, 0x20, 0x44, 0x49, 0x53, 0x41, 0x42, 0x4c, 0x45, 0x44,
- 0x20, 0x2d, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x65, 0x61,
- 0x6c, 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74,
- 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73,
- 0x27, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a,
- 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x6f, 0x70, 0x20, 0x61,
- 0x75, 0x74, 0x6f, 0x2d, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x69,
- 0x6e, 0x67, 0x20, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x20,
- 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x0a, 0x66,
- 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x74, 0x6f, 0x70,
- 0x53, 0x74, 0x61, 0x74, 0x73, 0x41, 0x75, 0x74, 0x6f, 0x52, 0x65, 0x66,
- 0x72, 0x65, 0x73, 0x68, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x74, 0x61, 0x74, 0x73, 0x41, 0x75,
- 0x74, 0x6f, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x49, 0x6e, 0x74,
- 0x65, 0x72, 0x76, 0x61, 0x6c, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x49, 0x6e,
- 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x28, 0x73, 0x74, 0x61, 0x74, 0x73,
+ 0x28, 0x28, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x20, 0x25, 0x20,
+ 0x38, 0x36, 0x34, 0x30, 0x30, 0x29, 0x20, 0x2f, 0x20, 0x33, 0x36, 0x30,
+ 0x30, 0x29, 0x7d, 0x68, 0x60, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f,
+ 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74,
+ 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x73, 0x74, 0x61, 0x74, 0x75,
+ 0x73, 0x20, 0x69, 0x6e, 0x64, 0x69, 0x63, 0x61, 0x74, 0x6f, 0x72, 0x20,
+ 0x28, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x20, 0x2d, 0x20,
+ 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c,
+ 0x61, 0x79, 0x20, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x29, 0x0a,
+ 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64,
+ 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x73, 0x53, 0x74, 0x61, 0x74,
+ 0x75, 0x73, 0x28, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2c, 0x20, 0x6d,
+ 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74,
+ 0x61, 0x74, 0x75, 0x73, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
+ 0x20, 0x68, 0x61, 0x73, 0x20, 0x62, 0x65, 0x65, 0x6e, 0x20, 0x72, 0x65,
+ 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x74,
+ 0x68, 0x65, 0x20, 0x55, 0x49, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
+ 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20,
+ 0x55, 0x74, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x20, 0x66, 0x75, 0x6e, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x66, 0x6f, 0x72, 0x6d,
+ 0x61, 0x74, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x73, 0x69, 0x7a, 0x65,
+ 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x6f,
+ 0x72, 0x6d, 0x61, 0x74, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65,
+ 0x28, 0x62, 0x79, 0x74, 0x65, 0x73, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x62, 0x79, 0x74, 0x65, 0x73,
+ 0x20, 0x7c, 0x7c, 0x20, 0x62, 0x79, 0x74, 0x65, 0x73, 0x20, 0x3d, 0x3d,
+ 0x3d, 0x20, 0x30, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20,
+ 0x27, 0x30, 0x20, 0x42, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6b, 0x20, 0x3d, 0x20, 0x31, 0x30, 0x32,
+ 0x34, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
+ 0x20, 0x73, 0x69, 0x7a, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x5b, 0x27, 0x42,
+ 0x27, 0x2c, 0x20, 0x27, 0x4b, 0x42, 0x27, 0x2c, 0x20, 0x27, 0x4d, 0x42,
+ 0x27, 0x2c, 0x20, 0x27, 0x47, 0x42, 0x27, 0x5d, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x69, 0x20, 0x3d, 0x20,
+ 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f, 0x72, 0x28, 0x4d,
+ 0x61, 0x74, 0x68, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x62, 0x79, 0x74, 0x65,
+ 0x73, 0x29, 0x20, 0x2f, 0x20, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x6c, 0x6f,
+ 0x67, 0x28, 0x6b, 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72,
+ 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x70, 0x61, 0x72, 0x73, 0x65, 0x46,
+ 0x6c, 0x6f, 0x61, 0x74, 0x28, 0x28, 0x62, 0x79, 0x74, 0x65, 0x73, 0x20,
+ 0x2f, 0x20, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x70, 0x6f, 0x77, 0x28, 0x6b,
+ 0x2c, 0x20, 0x69, 0x29, 0x29, 0x2e, 0x74, 0x6f, 0x46, 0x69, 0x78, 0x65,
+ 0x64, 0x28, 0x31, 0x29, 0x29, 0x20, 0x2b, 0x20, 0x27, 0x20, 0x27, 0x20,
+ 0x2b, 0x20, 0x73, 0x69, 0x7a, 0x65, 0x73, 0x5b, 0x69, 0x5d, 0x3b, 0x0a,
+ 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x55, 0x74, 0x69, 0x6c, 0x69, 0x74,
+ 0x79, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74,
+ 0x6f, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x20, 0x74, 0x69, 0x6d,
+ 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x54, 0x69,
+ 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x28, 0x74, 0x69, 0x6d, 0x65,
+ 0x73, 0x74, 0x61, 0x6d, 0x70, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74,
+ 0x61, 0x6d, 0x70, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20,
+ 0x27, 0x2d, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x64, 0x61, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x6e, 0x65,
+ 0x77, 0x20, 0x44, 0x61, 0x74, 0x65, 0x28, 0x74, 0x69, 0x6d, 0x65, 0x73,
+ 0x74, 0x61, 0x6d, 0x70, 0x20, 0x2a, 0x20, 0x31, 0x30, 0x30, 0x30, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e,
+ 0x20, 0x64, 0x61, 0x74, 0x65, 0x2e, 0x74, 0x6f, 0x4c, 0x6f, 0x63, 0x61,
+ 0x6c, 0x65, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x29, 0x3b, 0x0a,
+ 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
+ 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x20,
+ 0x63, 0x65, 0x6c, 0x6c, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x66, 0x6c,
+ 0x61, 0x73, 0x68, 0x20, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x69, 0x66, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x63,
+ 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74,
+ 0x61, 0x74, 0x73, 0x43, 0x65, 0x6c, 0x6c, 0x28, 0x63, 0x65, 0x6c, 0x6c,
+ 0x49, 0x64, 0x2c, 0x20, 0x6e, 0x65, 0x77, 0x56, 0x61, 0x6c, 0x75, 0x65,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63,
+ 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65,
+ 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x63, 0x65, 0x6c,
+ 0x6c, 0x49, 0x64, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
+ 0x20, 0x28, 0x21, 0x63, 0x65, 0x6c, 0x6c, 0x29, 0x20, 0x72, 0x65, 0x74,
+ 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x74, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x56,
+ 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x2e,
+ 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x2e, 0x74, 0x65,
+ 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20,
+ 0x6e, 0x65, 0x77, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x46, 0x6c, 0x61, 0x73, 0x68, 0x20,
+ 0x69, 0x66, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x63, 0x68, 0x61,
+ 0x6e, 0x67, 0x65, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
+ 0x28, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x6c, 0x75,
+ 0x65, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x56, 0x61, 0x6c,
+ 0x75, 0x65, 0x20, 0x26, 0x26, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e,
+ 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x27,
+ 0x2d, 0x27, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73,
+ 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x61, 0x64, 0x64, 0x28, 0x27, 0x66, 0x6c,
+ 0x61, 0x73, 0x68, 0x2d, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65, 0x74,
+ 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x28, 0x28, 0x29, 0x20, 0x3d,
+ 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x2e, 0x63, 0x6c, 0x61,
+ 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76,
+ 0x65, 0x28, 0x27, 0x66, 0x6c, 0x61, 0x73, 0x68, 0x2d, 0x76, 0x61, 0x6c,
+ 0x75, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x2c, 0x20, 0x35, 0x30, 0x30, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x53,
+ 0x74, 0x61, 0x72, 0x74, 0x20, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67,
+ 0x20, 0x66, 0x6f, 0x72, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74,
+ 0x69, 0x63, 0x73, 0x20, 0x28, 0x65, 0x76, 0x65, 0x72, 0x79, 0x20, 0x31,
+ 0x30, 0x20, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x29, 0x0a, 0x66,
+ 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x74, 0x61, 0x72,
+ 0x74, 0x53, 0x74, 0x61, 0x74, 0x73, 0x50, 0x6f, 0x6c, 0x6c, 0x69, 0x6e,
+ 0x67, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x3d,
+ 0x3d, 0x3d, 0x20, 0x53, 0x54, 0x41, 0x52, 0x54, 0x49, 0x4e, 0x47, 0x20,
+ 0x53, 0x54, 0x41, 0x54, 0x49, 0x53, 0x54, 0x49, 0x43, 0x53, 0x20, 0x50,
+ 0x4f, 0x4c, 0x4c, 0x49, 0x4e, 0x47, 0x20, 0x3d, 0x3d, 0x3d, 0x27, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
+ 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x75, 0x72, 0x72, 0x65,
+ 0x6e, 0x74, 0x20, 0x70, 0x61, 0x67, 0x65, 0x3a, 0x27, 0x2c, 0x20, 0x63,
+ 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x50, 0x61, 0x67, 0x65, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
+ 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x49, 0x73, 0x20, 0x6c, 0x6f, 0x67,
+ 0x67, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x3a, 0x27, 0x2c, 0x20, 0x69, 0x73,
+ 0x4c, 0x6f, 0x67, 0x67, 0x65, 0x64, 0x49, 0x6e, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
+ 0x6f, 0x67, 0x28, 0x27, 0x55, 0x73, 0x65, 0x72, 0x20, 0x70, 0x75, 0x62,
+ 0x6b, 0x65, 0x79, 0x3a, 0x27, 0x2c, 0x20, 0x75, 0x73, 0x65, 0x72, 0x50,
+ 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
+ 0x27, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x3a, 0x27, 0x2c, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75,
+ 0x62, 0x6b, 0x65, 0x79, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x6f, 0x70, 0x20,
+ 0x61, 0x6e, 0x79, 0x20, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67,
+ 0x20, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x66, 0x69, 0x72,
+ 0x73, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x6f, 0x70, 0x53,
+ 0x74, 0x61, 0x74, 0x73, 0x50, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x28,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x46, 0x65, 0x74, 0x63, 0x68, 0x20, 0x69, 0x6d, 0x6d,
+ 0x65, 0x64, 0x69, 0x61, 0x74, 0x65, 0x6c, 0x79, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
+ 0x28, 0x27, 0x46, 0x65, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x20, 0x73,
+ 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x69, 0x6d,
+ 0x6d, 0x65, 0x64, 0x69, 0x61, 0x74, 0x65, 0x6c, 0x79, 0x2e, 0x2e, 0x2e,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65, 0x6e, 0x64,
+ 0x53, 0x74, 0x61, 0x74, 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x28, 0x29,
+ 0x2e, 0x63, 0x61, 0x74, 0x63, 0x68, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x28, 0x27, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c,
+ 0x20, 0x73, 0x74, 0x61, 0x74, 0x73, 0x20, 0x66, 0x65, 0x74, 0x63, 0x68,
+ 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x3a, 0x27, 0x2c, 0x20, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x53, 0x65, 0x74, 0x20, 0x75, 0x70, 0x20, 0x70, 0x6f,
+ 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76,
+ 0x61, 0x6c, 0x20, 0x28, 0x31, 0x30, 0x20, 0x73, 0x65, 0x63, 0x6f, 0x6e,
+ 0x64, 0x73, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x53, 0x65, 0x74,
+ 0x74, 0x69, 0x6e, 0x67, 0x20, 0x75, 0x70, 0x20, 0x31, 0x30, 0x2d, 0x73,
+ 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x20, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e,
+ 0x67, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x2e, 0x2e,
+ 0x2e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x61,
+ 0x74, 0x73, 0x41, 0x75, 0x74, 0x6f, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73,
+ 0x68, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x20, 0x3d, 0x20,
+ 0x73, 0x65, 0x74, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x28,
+ 0x28, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
+ 0x6c, 0x6f, 0x67, 0x28, 0x27, 0xe2, 0x8f, 0xb0, 0x20, 0x50, 0x6f, 0x6c,
+ 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61,
+ 0x6c, 0x20, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x65, 0x64, 0x20,
+ 0x2d, 0x20, 0x66, 0x65, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x20, 0x73,
+ 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x2e, 0x2e,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x73, 0x65, 0x6e, 0x64, 0x53, 0x74, 0x61, 0x74, 0x73, 0x51, 0x75, 0x65,
+ 0x72, 0x79, 0x28, 0x29, 0x2e, 0x63, 0x61, 0x74, 0x63, 0x68, 0x28, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28,
+ 0x27, 0x50, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x73, 0x74, 0x61,
+ 0x74, 0x73, 0x20, 0x66, 0x65, 0x74, 0x63, 0x68, 0x20, 0x66, 0x61, 0x69,
+ 0x6c, 0x65, 0x64, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x2c, 0x20, 0x31, 0x30,
+ 0x30, 0x30, 0x30, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
+ 0x6f, 0x67, 0x28, 0x27, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
+ 0x63, 0x73, 0x20, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x73,
+ 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65,
+ 0x73, 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
+ 0x6f, 0x67, 0x28, 0x27, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c,
+ 0x20, 0x49, 0x44, 0x3a, 0x27, 0x2c, 0x20, 0x73, 0x74, 0x61, 0x74, 0x73,
0x41, 0x75, 0x74, 0x6f, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x49,
0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x61, 0x74, 0x73, 0x41,
+ 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x53, 0x74, 0x61, 0x74, 0x69,
+ 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e,
+ 0x67, 0x20, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x20, 0x28, 0x31,
+ 0x30, 0x20, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x20, 0x69, 0x6e, 0x74,
+ 0x65, 0x72, 0x76, 0x61, 0x6c, 0x29, 0x27, 0x2c, 0x20, 0x27, 0x49, 0x4e,
+ 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20,
+ 0x53, 0x74, 0x6f, 0x70, 0x20, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67,
+ 0x20, 0x66, 0x6f, 0x72, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74,
+ 0x69, 0x63, 0x73, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x20, 0x73, 0x74, 0x6f, 0x70, 0x53, 0x74, 0x61, 0x74, 0x73, 0x50, 0x6f,
+ 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x74, 0x61, 0x74, 0x73, 0x41,
0x75, 0x74, 0x6f, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x49, 0x6e,
- 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x20, 0x3d, 0x20, 0x6e, 0x75, 0x6c,
- 0x6c, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f,
- 0x77, 0x6e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x29, 0x20,
+ 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x49,
+ 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x28, 0x73, 0x74, 0x61, 0x74,
+ 0x73, 0x41, 0x75, 0x74, 0x6f, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68,
+ 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x61, 0x74, 0x73,
+ 0x41, 0x75, 0x74, 0x6f, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x49,
+ 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x20, 0x3d, 0x20, 0x6e, 0x75,
+ 0x6c, 0x6c, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74,
+ 0x69, 0x63, 0x73, 0x20, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x20,
+ 0x73, 0x74, 0x6f, 0x70, 0x70, 0x65, 0x64, 0x27, 0x2c, 0x20, 0x27, 0x49,
+ 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x63, 0x6f,
+ 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x49, 0x6e, 0x74, 0x65, 0x72,
+ 0x76, 0x61, 0x6c, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x49, 0x6e, 0x74, 0x65,
+ 0x72, 0x76, 0x61, 0x6c, 0x28, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f,
+ 0x77, 0x6e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x75,
+ 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76,
+ 0x61, 0x6c, 0x20, 0x3d, 0x20, 0x6e, 0x75, 0x6c, 0x6c, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x52, 0x65, 0x73, 0x65, 0x74, 0x20, 0x63, 0x6f, 0x75, 0x6e, 0x74,
+ 0x64, 0x6f, 0x77, 0x6e, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43,
+ 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x44, 0x69, 0x73, 0x70,
+ 0x6c, 0x61, 0x79, 0x28, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f,
+ 0x20, 0x4c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x20, 0x66, 0x75, 0x6e, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x2d, 0x20, 0x6b, 0x65, 0x70, 0x74, 0x20,
+ 0x66, 0x6f, 0x72, 0x20, 0x62, 0x61, 0x63, 0x6b, 0x77, 0x61, 0x72, 0x64,
+ 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69,
+ 0x74, 0x79, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
+ 0x73, 0x74, 0x61, 0x72, 0x74, 0x53, 0x74, 0x61, 0x74, 0x73, 0x41, 0x75,
+ 0x74, 0x6f, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x28, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x44, 0x49, 0x53,
+ 0x41, 0x42, 0x4c, 0x45, 0x44, 0x20, 0x2d, 0x20, 0x55, 0x73, 0x69, 0x6e,
+ 0x67, 0x20, 0x72, 0x65, 0x61, 0x6c, 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x20,
+ 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x65, 0x61,
+ 0x64, 0x20, 0x6f, 0x66, 0x20, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x54, 0x68, 0x69, 0x73,
+ 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x73,
+ 0x20, 0x6b, 0x65, 0x70, 0x74, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x62, 0x61,
+ 0x63, 0x6b, 0x77, 0x61, 0x72, 0x64, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61,
+ 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x20, 0x62, 0x75, 0x74,
+ 0x20, 0x6e, 0x6f, 0x20, 0x6c, 0x6f, 0x6e, 0x67, 0x65, 0x72, 0x20, 0x73,
+ 0x74, 0x61, 0x72, 0x74, 0x73, 0x20, 0x61, 0x75, 0x74, 0x6f, 0x2d, 0x72,
+ 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c,
+ 0x6f, 0x67, 0x28, 0x27, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65,
+ 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x20,
+ 0x61, 0x75, 0x74, 0x6f, 0x2d, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68,
+ 0x20, 0x44, 0x49, 0x53, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x20, 0x2d, 0x20,
+ 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x65, 0x61, 0x6c, 0x2d, 0x74,
+ 0x69, 0x6d, 0x65, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69,
+ 0x6e, 0x67, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x27, 0x2c, 0x20,
+ 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a,
+ 0x2f, 0x2f, 0x20, 0x4c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x20, 0x66, 0x75,
+ 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x2d, 0x20, 0x6b, 0x65, 0x70,
+ 0x74, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x62, 0x61, 0x63, 0x6b, 0x77, 0x61,
+ 0x72, 0x64, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x69,
+ 0x6c, 0x69, 0x74, 0x79, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x73, 0x74, 0x6f, 0x70, 0x53, 0x74, 0x61, 0x74, 0x73, 0x41,
+ 0x75, 0x74, 0x6f, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x28, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x6f, 0x70, 0x53,
+ 0x74, 0x61, 0x74, 0x73, 0x50, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x28,
+ 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x4f, 0x72, 0x69,
+ 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x20, 0x73, 0x74, 0x6f, 0x70, 0x53, 0x74,
+ 0x61, 0x74, 0x73, 0x41, 0x75, 0x74, 0x6f, 0x52, 0x65, 0x66, 0x72, 0x65,
+ 0x73, 0x68, 0x20, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x6e, 0x6f, 0x77, 0x20, 0x75,
+ 0x6e, 0x75, 0x73, 0x65, 0x64, 0x29, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x74, 0x6f, 0x70, 0x53, 0x74, 0x61, 0x74,
+ 0x73, 0x41, 0x75, 0x74, 0x6f, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68,
+ 0x5f, 0x4f, 0x52, 0x49, 0x47, 0x49, 0x4e, 0x41, 0x4c, 0x28, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x74,
+ 0x61, 0x74, 0x73, 0x41, 0x75, 0x74, 0x6f, 0x52, 0x65, 0x66, 0x72, 0x65,
+ 0x73, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x29, 0x20,
0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6c,
0x65, 0x61, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x28,
- 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x49, 0x6e, 0x74,
- 0x65, 0x72, 0x76, 0x61, 0x6c, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77,
- 0x6e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x20, 0x3d, 0x20,
- 0x6e, 0x75, 0x6c, 0x6c, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x52, 0x65, 0x73, 0x65, 0x74,
- 0x20, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x20, 0x64,
- 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75,
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f,
- 0x77, 0x6e, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x28, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x44, 0x61,
- 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69,
- 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x61, 0x75, 0x74, 0x6f, 0x2d, 0x72,
- 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x20, 0x73, 0x74, 0x6f, 0x70, 0x70,
- 0x65, 0x64, 0x27, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29,
- 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x20, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e,
- 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x69, 0x6e, 0x20,
- 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x20, 0x62, 0x75, 0x74, 0x74,
- 0x6f, 0x6e, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
- 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x64,
- 0x6f, 0x77, 0x6e, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x28, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x42, 0x74, 0x6e, 0x20,
- 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67,
- 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49,
- 0x64, 0x28, 0x27, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x2d, 0x73,
- 0x74, 0x61, 0x74, 0x73, 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x72, 0x65, 0x66,
- 0x72, 0x65, 0x73, 0x68, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x72, 0x65, 0x74,
- 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x44, 0x49, 0x53, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x20, 0x2d, 0x20,
- 0x4e, 0x6f, 0x20, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e,
- 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x77, 0x68, 0x65,
- 0x6e, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x65, 0x61, 0x6c,
- 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f,
- 0x72, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x53, 0x68, 0x6f, 0x77, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x20, 0x62,
- 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x74, 0x65, 0x78, 0x74, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x42, 0x74,
- 0x6e, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
- 0x74, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f,
- 0x2f, 0x20, 0x46, 0x6c, 0x61, 0x73, 0x68, 0x20, 0x72, 0x65, 0x66, 0x72,
- 0x65, 0x73, 0x68, 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x72,
- 0x65, 0x64, 0x20, 0x6f, 0x6e, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73,
- 0x73, 0x66, 0x75, 0x6c, 0x20, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68,
- 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x6c,
- 0x61, 0x73, 0x68, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x42, 0x75,
- 0x74, 0x74, 0x6f, 0x6e, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x65, 0x66, 0x72, 0x65,
- 0x73, 0x68, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x72, 0x65, 0x66,
- 0x72, 0x65, 0x73, 0x68, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x73, 0x2d, 0x62,
- 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x21, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x42, 0x74,
- 0x6e, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x44, 0x49, 0x53, 0x41, 0x42,
- 0x4c, 0x45, 0x44, 0x20, 0x2d, 0x20, 0x4e, 0x6f, 0x20, 0x66, 0x6c, 0x61,
- 0x73, 0x68, 0x69, 0x6e, 0x67, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x75,
- 0x73, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x65, 0x61, 0x6c, 0x2d, 0x74, 0x69,
- 0x6d, 0x65, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e,
- 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x54, 0x68, 0x69,
- 0x73, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69,
- 0x73, 0x20, 0x6b, 0x65, 0x70, 0x74, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x62,
- 0x61, 0x63, 0x6b, 0x77, 0x61, 0x72, 0x64, 0x20, 0x63, 0x6f, 0x6d, 0x70,
- 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x0a, 0x7d, 0x0a,
- 0x0a, 0x2f, 0x2f, 0x20, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x68, 0x61,
- 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x73, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74,
- 0x65, 0x73, 0x74, 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73, 0x0a,
- 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x64, 0x64,
- 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65,
- 0x72, 0x28, 0x27, 0x44, 0x4f, 0x4d, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
- 0x74, 0x4c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x27, 0x2c, 0x20, 0x28, 0x29,
- 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x54, 0x65, 0x73, 0x74, 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e,
- 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c,
- 0x65, 0x72, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x74, 0x20, 0x74, 0x65, 0x73, 0x74, 0x47, 0x65, 0x74, 0x41, 0x75, 0x74,
- 0x68, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20,
- 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74,
- 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28,
- 0x27, 0x74, 0x65, 0x73, 0x74, 0x2d, 0x67, 0x65, 0x74, 0x2d, 0x61, 0x75,
- 0x74, 0x68, 0x2d, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x2d, 0x62, 0x74, 0x6e,
- 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x74, 0x20, 0x74, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x41,
- 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x42, 0x74, 0x6e, 0x20,
- 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67,
- 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49,
- 0x64, 0x28, 0x27, 0x74, 0x65, 0x73, 0x74, 0x2d, 0x63, 0x6c, 0x65, 0x61,
- 0x72, 0x2d, 0x61, 0x75, 0x74, 0x68, 0x2d, 0x72, 0x75, 0x6c, 0x65, 0x73,
- 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x65, 0x73, 0x74, 0x41, 0x64,
- 0x64, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x6c, 0x69, 0x73, 0x74, 0x42, 0x74,
- 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42,
- 0x79, 0x49, 0x64, 0x28, 0x27, 0x74, 0x65, 0x73, 0x74, 0x2d, 0x61, 0x64,
- 0x64, 0x2d, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x6c, 0x69, 0x73, 0x74, 0x2d,
- 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x65, 0x73, 0x74, 0x41, 0x64, 0x64,
- 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x42, 0x74, 0x6e,
- 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79,
- 0x49, 0x64, 0x28, 0x27, 0x74, 0x65, 0x73, 0x74, 0x2d, 0x61, 0x64, 0x64,
- 0x2d, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x2d, 0x62,
- 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x74, 0x65, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x66,
- 0x69, 0x67, 0x51, 0x75, 0x65, 0x72, 0x79, 0x42, 0x74, 0x6e, 0x20, 0x3d,
+ 0x73, 0x74, 0x61, 0x74, 0x73, 0x41, 0x75, 0x74, 0x6f, 0x52, 0x65, 0x66,
+ 0x72, 0x65, 0x73, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73,
+ 0x74, 0x61, 0x74, 0x73, 0x41, 0x75, 0x74, 0x6f, 0x52, 0x65, 0x66, 0x72,
+ 0x65, 0x73, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x20,
+ 0x3d, 0x20, 0x6e, 0x75, 0x6c, 0x6c, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x63, 0x6f,
+ 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x49, 0x6e, 0x74, 0x65, 0x72,
+ 0x76, 0x61, 0x6c, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x49, 0x6e, 0x74, 0x65,
+ 0x72, 0x76, 0x61, 0x6c, 0x28, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f,
+ 0x77, 0x6e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x75,
+ 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76,
+ 0x61, 0x6c, 0x20, 0x3d, 0x20, 0x6e, 0x75, 0x6c, 0x6c, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x52, 0x65, 0x73, 0x65, 0x74, 0x20, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x64,
+ 0x6f, 0x77, 0x6e, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f,
+ 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x44, 0x69, 0x73, 0x70, 0x6c,
+ 0x61, 0x79, 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f,
+ 0x67, 0x28, 0x27, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x20,
+ 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x61,
+ 0x75, 0x74, 0x6f, 0x2d, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x20,
+ 0x73, 0x74, 0x6f, 0x70, 0x70, 0x65, 0x64, 0x27, 0x2c, 0x20, 0x27, 0x49,
+ 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f,
+ 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x63, 0x6f, 0x75, 0x6e,
+ 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
+ 0x79, 0x20, 0x69, 0x6e, 0x20, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68,
+ 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x0a, 0x66, 0x75, 0x6e, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43,
+ 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x44, 0x69, 0x73, 0x70,
+ 0x6c, 0x61, 0x79, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73,
+ 0x68, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
+ 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65,
+ 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x72, 0x65, 0x66, 0x72,
+ 0x65, 0x73, 0x68, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x73, 0x2d, 0x62, 0x74,
+ 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
+ 0x28, 0x21, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x42, 0x74, 0x6e,
+ 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x44, 0x49, 0x53, 0x41, 0x42, 0x4c,
+ 0x45, 0x44, 0x20, 0x2d, 0x20, 0x4e, 0x6f, 0x20, 0x63, 0x6f, 0x75, 0x6e,
+ 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
+ 0x79, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67,
+ 0x20, 0x72, 0x65, 0x61, 0x6c, 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x6d,
+ 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x68, 0x6f, 0x77, 0x20, 0x65, 0x6d,
+ 0x70, 0x74, 0x79, 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x74,
+ 0x65, 0x78, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x66, 0x72,
+ 0x65, 0x73, 0x68, 0x42, 0x74, 0x6e, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43,
+ 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b,
+ 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x46, 0x6c, 0x61, 0x73, 0x68,
+ 0x20, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x20, 0x62, 0x75, 0x74,
+ 0x74, 0x6f, 0x6e, 0x20, 0x72, 0x65, 0x64, 0x20, 0x6f, 0x6e, 0x20, 0x73,
+ 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x66, 0x75, 0x6c, 0x20, 0x72, 0x65,
+ 0x66, 0x72, 0x65, 0x73, 0x68, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x20, 0x66, 0x6c, 0x61, 0x73, 0x68, 0x52, 0x65, 0x66, 0x72,
+ 0x65, 0x73, 0x68, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x28, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x42, 0x74, 0x6e, 0x20, 0x3d,
0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65,
0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64,
- 0x28, 0x27, 0x74, 0x65, 0x73, 0x74, 0x2d, 0x63, 0x6f, 0x6e, 0x66, 0x69,
- 0x67, 0x2d, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2d, 0x62, 0x74, 0x6e, 0x27,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x74, 0x65, 0x73, 0x74, 0x50, 0x6f, 0x73, 0x74, 0x45, 0x76, 0x65,
- 0x6e, 0x74, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
+ 0x28, 0x27, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x2d, 0x73, 0x74,
+ 0x61, 0x74, 0x73, 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x72, 0x65, 0x66, 0x72,
+ 0x65, 0x73, 0x68, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75,
+ 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x44, 0x49, 0x53, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x20, 0x2d, 0x20, 0x4e,
+ 0x6f, 0x20, 0x66, 0x6c, 0x61, 0x73, 0x68, 0x69, 0x6e, 0x67, 0x20, 0x77,
+ 0x68, 0x65, 0x6e, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x65,
+ 0x61, 0x6c, 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x6d, 0x6f, 0x6e, 0x69,
+ 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f,
+ 0x2f, 0x20, 0x54, 0x68, 0x69, 0x73, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x73, 0x20, 0x6b, 0x65, 0x70, 0x74, 0x20,
+ 0x66, 0x6f, 0x72, 0x20, 0x62, 0x61, 0x63, 0x6b, 0x77, 0x61, 0x72, 0x64,
+ 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69,
+ 0x74, 0x79, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x45, 0x76, 0x65,
+ 0x6e, 0x74, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x73, 0x20,
+ 0x66, 0x6f, 0x72, 0x20, 0x74, 0x65, 0x73, 0x74, 0x20, 0x62, 0x75, 0x74,
+ 0x74, 0x6f, 0x6e, 0x73, 0x0a, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e,
+ 0x74, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69,
+ 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x44, 0x4f, 0x4d, 0x43,
+ 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4c, 0x6f, 0x61, 0x64, 0x65, 0x64,
+ 0x27, 0x2c, 0x20, 0x28, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x54, 0x65, 0x73, 0x74, 0x20, 0x62,
+ 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20,
+ 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x73, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x65, 0x73, 0x74, 0x47,
+ 0x65, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x42,
+ 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e,
+ 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
+ 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x74, 0x65, 0x73, 0x74, 0x2d, 0x67,
+ 0x65, 0x74, 0x2d, 0x61, 0x75, 0x74, 0x68, 0x2d, 0x72, 0x75, 0x6c, 0x65,
+ 0x73, 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x65, 0x73, 0x74, 0x43,
+ 0x6c, 0x65, 0x61, 0x72, 0x41, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65,
+ 0x73, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
+ 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65,
+ 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x74, 0x65, 0x73, 0x74,
+ 0x2d, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x2d, 0x61, 0x75, 0x74, 0x68, 0x2d,
+ 0x72, 0x75, 0x6c, 0x65, 0x73, 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74,
+ 0x65, 0x73, 0x74, 0x41, 0x64, 0x64, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x6c,
+ 0x69, 0x73, 0x74, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63,
+ 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65,
+ 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x74, 0x65,
+ 0x73, 0x74, 0x2d, 0x61, 0x64, 0x64, 0x2d, 0x62, 0x6c, 0x61, 0x63, 0x6b,
+ 0x6c, 0x69, 0x73, 0x74, 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x65,
+ 0x73, 0x74, 0x41, 0x64, 0x64, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69,
+ 0x73, 0x74, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d,
0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x74, 0x65, 0x73,
- 0x74, 0x2d, 0x70, 0x6f, 0x73, 0x74, 0x2d, 0x65, 0x76, 0x65, 0x6e, 0x74,
- 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x54,
- 0x65, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20,
- 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74,
- 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28,
- 0x27, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x2d, 0x74, 0x65, 0x73, 0x74, 0x2d,
- 0x6c, 0x6f, 0x67, 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x67, 0x65, 0x6e,
- 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x65, 0x73, 0x74, 0x4b, 0x65, 0x79,
+ 0x74, 0x2d, 0x61, 0x64, 0x64, 0x2d, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6c,
+ 0x69, 0x73, 0x74, 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x65, 0x73,
+ 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x51, 0x75, 0x65, 0x72, 0x79,
0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x67, 0x65, 0x6e, 0x65, 0x72,
- 0x61, 0x74, 0x65, 0x2d, 0x74, 0x65, 0x73, 0x74, 0x2d, 0x6b, 0x65, 0x79,
- 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x65, 0x73, 0x74, 0x47, 0x65, 0x74,
- 0x41, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x42, 0x74, 0x6e,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x74, 0x65, 0x73, 0x74, 0x47, 0x65, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52,
- 0x75, 0x6c, 0x65, 0x73, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45,
- 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72,
- 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x74, 0x65,
- 0x73, 0x74, 0x47, 0x65, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c,
- 0x65, 0x73, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x65, 0x73, 0x74,
- 0x43, 0x6c, 0x65, 0x61, 0x72, 0x41, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c,
- 0x65, 0x73, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x65,
- 0x61, 0x72, 0x41, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x42,
- 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c,
- 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69,
- 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x74, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x65,
- 0x61, 0x72, 0x41, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x65, 0x73, 0x74, 0x41, 0x64, 0x64,
- 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x6c, 0x69, 0x73, 0x74, 0x42, 0x74, 0x6e,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x74, 0x65, 0x73, 0x74, 0x41, 0x64, 0x64, 0x42, 0x6c, 0x61, 0x63, 0x6b,
- 0x6c, 0x69, 0x73, 0x74, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45,
- 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72,
- 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x74, 0x65,
- 0x73, 0x74, 0x41, 0x64, 0x64, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x6c, 0x69,
- 0x73, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x65, 0x73, 0x74,
- 0x41, 0x64, 0x64, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74,
- 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x74, 0x65, 0x73, 0x74, 0x41, 0x64, 0x64, 0x57, 0x68,
- 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x42, 0x74, 0x6e, 0x2e, 0x61,
- 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65,
- 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c,
- 0x20, 0x74, 0x65, 0x73, 0x74, 0x41, 0x64, 0x64, 0x57, 0x68, 0x69, 0x74,
- 0x65, 0x6c, 0x69, 0x73, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x74,
- 0x65, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x51, 0x75, 0x65,
- 0x72, 0x79, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x65, 0x73, 0x74, 0x43, 0x6f, 0x6e,
- 0x66, 0x69, 0x67, 0x51, 0x75, 0x65, 0x72, 0x79, 0x42, 0x74, 0x6e, 0x2e,
- 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74,
- 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27,
- 0x2c, 0x20, 0x74, 0x65, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
- 0x51, 0x75, 0x65, 0x72, 0x79, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x74,
- 0x65, 0x73, 0x74, 0x50, 0x6f, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74,
- 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x74, 0x65, 0x73, 0x74, 0x50, 0x6f, 0x73, 0x74, 0x45,
- 0x76, 0x65, 0x6e, 0x74, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45,
- 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72,
- 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x74, 0x65,
- 0x73, 0x74, 0x50, 0x6f, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x54, 0x65,
- 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6c, 0x65, 0x61,
- 0x72, 0x54, 0x65, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x42, 0x74, 0x6e, 0x2e,
- 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74,
- 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27,
- 0x2c, 0x20, 0x28, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x74, 0x65, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x20,
- 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67,
- 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49,
- 0x64, 0x28, 0x27, 0x74, 0x65, 0x73, 0x74, 0x2d, 0x65, 0x76, 0x65, 0x6e,
- 0x74, 0x2d, 0x6c, 0x6f, 0x67, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x74, 0x65, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x74, 0x65, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x2e,
- 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20,
- 0x27, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
- 0x22, 0x6c, 0x6f, 0x67, 0x2d, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x22, 0x3e,
- 0x3c, 0x73, 0x70, 0x61, 0x6e, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
- 0x22, 0x6c, 0x6f, 0x67, 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
- 0x6d, 0x70, 0x22, 0x3e, 0x53, 0x59, 0x53, 0x54, 0x45, 0x4d, 0x3a, 0x3c,
- 0x2f, 0x73, 0x70, 0x61, 0x6e, 0x3e, 0x20, 0x54, 0x65, 0x73, 0x74, 0x20,
- 0x6c, 0x6f, 0x67, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x65, 0x64, 0x2e,
- 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x65,
- 0x73, 0x74, 0x4b, 0x65, 0x79, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x67, 0x65, 0x6e, 0x65,
- 0x72, 0x61, 0x74, 0x65, 0x54, 0x65, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x42,
- 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c,
- 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69,
- 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74,
- 0x65, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x54, 0x65, 0x73, 0x74, 0x4b,
- 0x65, 0x79, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x68, 0x6f, 0x77, 0x20,
- 0x74, 0x65, 0x73, 0x74, 0x20, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x73,
- 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20,
- 0x6e, 0x65, 0x65, 0x64, 0x65, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x65, 0x73, 0x74, 0x49, 0x6e, 0x70,
- 0x75, 0x74, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20,
- 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74,
- 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28,
- 0x27, 0x74, 0x65, 0x73, 0x74, 0x2d, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x2d,
- 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x65, 0x73, 0x74, 0x49,
- 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74,
- 0x65, 0x73, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64, 0x69,
- 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27, 0x62, 0x6c, 0x6f,
- 0x63, 0x6b, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x44, 0x61, 0x74, 0x61, 0x62,
- 0x61, 0x73, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
- 0x63, 0x73, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x68, 0x61, 0x6e,
- 0x64, 0x6c, 0x65, 0x72, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x53,
- 0x74, 0x61, 0x74, 0x73, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f,
- 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x72,
- 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x73,
+ 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x74, 0x65, 0x73, 0x74, 0x2d,
+ 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x71, 0x75, 0x65, 0x72, 0x79,
0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x53,
- 0x74, 0x61, 0x74, 0x73, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x66, 0x72, 0x65,
- 0x73, 0x68, 0x53, 0x74, 0x61, 0x74, 0x73, 0x42, 0x74, 0x6e, 0x2e, 0x61,
- 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65,
- 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c,
- 0x20, 0x73, 0x65, 0x6e, 0x64, 0x53, 0x74, 0x61, 0x74, 0x73, 0x51, 0x75,
- 0x65, 0x72, 0x79, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x75, 0x62, 0x73,
- 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x64, 0x65, 0x74,
- 0x61, 0x69, 0x6c, 0x73, 0x20, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x69, 0x73, 0x20, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x20, 0x76,
- 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20,
- 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65,
- 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4e, 0x49,
- 0x50, 0x2d, 0x31, 0x37, 0x20, 0x44, 0x4d, 0x20, 0x65, 0x76, 0x65, 0x6e,
- 0x74, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x73, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x65, 0x6e, 0x64, 0x44,
- 0x6d, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x44, 0x6d, 0x42, 0x74,
- 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69,
- 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63,
- 0x6b, 0x27, 0x2c, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x4e, 0x49, 0x50, 0x31,
- 0x37, 0x44, 0x4d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x51, 0x4c, 0x20,
- 0x51, 0x75, 0x65, 0x72, 0x79, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20,
- 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x73, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75,
- 0x74, 0x65, 0x53, 0x71, 0x6c, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64,
- 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45,
- 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27,
- 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x2d, 0x73, 0x71, 0x6c, 0x2d,
- 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x53, 0x71,
- 0x6c, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x63, 0x6c, 0x65, 0x61,
- 0x72, 0x2d, 0x73, 0x71, 0x6c, 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x65, 0x73, 0x74, 0x50, 0x6f,
+ 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x42, 0x74, 0x6e, 0x20, 0x3d,
+ 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65,
+ 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64,
+ 0x28, 0x27, 0x74, 0x65, 0x73, 0x74, 0x2d, 0x70, 0x6f, 0x73, 0x74, 0x2d,
+ 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63,
- 0x6c, 0x65, 0x61, 0x72, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x42,
+ 0x6c, 0x65, 0x61, 0x72, 0x54, 0x65, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x42,
0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e,
0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x2d,
- 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x2d, 0x62, 0x74, 0x6e, 0x27,
- 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
- 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x53, 0x71, 0x6c, 0x42, 0x74,
- 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x53, 0x71, 0x6c, 0x42,
- 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c,
- 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69,
- 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65,
- 0x53, 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x53, 0x71, 0x6c, 0x42, 0x74,
- 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x53, 0x71, 0x6c, 0x42, 0x74, 0x6e,
- 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73,
- 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b,
- 0x27, 0x2c, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x53, 0x71, 0x6c, 0x51,
- 0x75, 0x65, 0x72, 0x79, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x63, 0x6c,
- 0x65, 0x61, 0x72, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x42, 0x74,
- 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72,
- 0x79, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e,
- 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63,
- 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72,
- 0x51, 0x75, 0x65, 0x72, 0x79, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x29, 0x3b,
- 0x0a, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x44, 0x61, 0x72, 0x6b, 0x20, 0x6d,
- 0x6f, 0x64, 0x65, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x61, 0x6c, 0x69, 0x74, 0x79, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x44, 0x61, 0x72,
- 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x62, 0x6f, 0x64, 0x79,
- 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x62, 0x6f, 0x64, 0x79, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x69, 0x73, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f,
- 0x64, 0x65, 0x20, 0x3d, 0x20, 0x62, 0x6f, 0x64, 0x79, 0x2e, 0x63, 0x6c,
- 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x63, 0x6f, 0x6e, 0x74,
- 0x61, 0x69, 0x6e, 0x73, 0x28, 0x27, 0x64, 0x61, 0x72, 0x6b, 0x2d, 0x6d,
- 0x6f, 0x64, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x66, 0x20, 0x28, 0x69, 0x73, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f,
- 0x64, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x62, 0x6f, 0x64, 0x79, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73,
- 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x28,
- 0x27, 0x64, 0x61, 0x72, 0x6b, 0x2d, 0x6d, 0x6f, 0x64, 0x65, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f,
- 0x63, 0x61, 0x6c, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x2e, 0x73,
- 0x65, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x28, 0x27, 0x64, 0x61, 0x72, 0x6b,
- 0x4d, 0x6f, 0x64, 0x65, 0x27, 0x2c, 0x20, 0x27, 0x66, 0x61, 0x6c, 0x73,
- 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x44, 0x61, 0x72, 0x6b, 0x4d,
- 0x6f, 0x64, 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x28, 0x66, 0x61,
- 0x6c, 0x73, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x53, 0x77, 0x69, 0x74, 0x63,
- 0x68, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74,
- 0x20, 0x6d, 0x6f, 0x64, 0x65, 0x27, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46,
- 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65,
- 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x62, 0x6f, 0x64, 0x79, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73,
- 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x61, 0x64, 0x64, 0x28, 0x27, 0x64, 0x61,
- 0x72, 0x6b, 0x2d, 0x6d, 0x6f, 0x64, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c,
- 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x2e, 0x73, 0x65, 0x74, 0x49,
- 0x74, 0x65, 0x6d, 0x28, 0x27, 0x64, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64,
- 0x65, 0x27, 0x2c, 0x20, 0x27, 0x74, 0x72, 0x75, 0x65, 0x27, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64,
- 0x61, 0x74, 0x65, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x42,
- 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x28, 0x74, 0x72, 0x75, 0x65, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67,
- 0x28, 0x27, 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x65, 0x64, 0x20, 0x74,
- 0x6f, 0x20, 0x64, 0x61, 0x72, 0x6b, 0x20, 0x6d, 0x6f, 0x64, 0x65, 0x27,
- 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x66, 0x75, 0x6e, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x44,
- 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f,
- 0x6e, 0x28, 0x69, 0x73, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x74, 0x20, 0x6e, 0x61, 0x76, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64,
- 0x65, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x6e, 0x61, 0x76, 0x2d,
- 0x64, 0x61, 0x72, 0x6b, 0x2d, 0x6d, 0x6f, 0x64, 0x65, 0x2d, 0x62, 0x74,
- 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x6e, 0x61, 0x76, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65,
- 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x6e, 0x61, 0x76, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f,
- 0x64, 0x65, 0x42, 0x74, 0x6e, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f,
- 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x69, 0x73, 0x44, 0x61,
- 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x20, 0x3f, 0x20, 0x27, 0x4c, 0x49,
- 0x47, 0x48, 0x54, 0x20, 0x4d, 0x4f, 0x44, 0x45, 0x27, 0x20, 0x3a, 0x20,
- 0x27, 0x44, 0x41, 0x52, 0x4b, 0x20, 0x4d, 0x4f, 0x44, 0x45, 0x27, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x66, 0x75,
- 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69,
- 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64,
- 0x65, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x73, 0x61, 0x76, 0x65, 0x64, 0x44, 0x61, 0x72,
- 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x20, 0x3d, 0x20, 0x6c, 0x6f, 0x63, 0x61,
- 0x6c, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x2e, 0x67, 0x65, 0x74,
- 0x49, 0x74, 0x65, 0x6d, 0x28, 0x27, 0x64, 0x61, 0x72, 0x6b, 0x4d, 0x6f,
- 0x64, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x73, 0x44,
- 0x61, 0x72, 0x6b, 0x20, 0x3d, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77,
- 0x2e, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x20,
- 0x26, 0x26, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x6d, 0x61,
- 0x74, 0x63, 0x68, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x28, 0x27, 0x28, 0x70,
- 0x72, 0x65, 0x66, 0x65, 0x72, 0x73, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72,
- 0x2d, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x65, 0x3a, 0x20, 0x64, 0x61, 0x72,
- 0x6b, 0x29, 0x27, 0x29, 0x2e, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x73,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
- 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x42, 0x65, 0x44, 0x61, 0x72, 0x6b,
- 0x20, 0x3d, 0x20, 0x73, 0x61, 0x76, 0x65, 0x64, 0x44, 0x61, 0x72, 0x6b,
- 0x4d, 0x6f, 0x64, 0x65, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x74, 0x72,
- 0x75, 0x65, 0x27, 0x20, 0x7c, 0x7c, 0x20, 0x28, 0x73, 0x61, 0x76, 0x65,
- 0x64, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x20, 0x3d, 0x3d,
- 0x3d, 0x20, 0x6e, 0x75, 0x6c, 0x6c, 0x20, 0x26, 0x26, 0x20, 0x70, 0x72,
- 0x65, 0x66, 0x65, 0x72, 0x73, 0x44, 0x61, 0x72, 0x6b, 0x29, 0x3b, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x68, 0x6f,
- 0x75, 0x6c, 0x64, 0x42, 0x65, 0x44, 0x61, 0x72, 0x6b, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x6f, 0x63,
- 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x62, 0x6f, 0x64, 0x79, 0x2e, 0x63,
- 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x61, 0x64, 0x64,
- 0x28, 0x27, 0x64, 0x61, 0x72, 0x6b, 0x2d, 0x6d, 0x6f, 0x64, 0x65, 0x27,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75,
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64,
- 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x28, 0x74, 0x72, 0x75, 0x65,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73,
- 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f,
- 0x64, 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x28, 0x66, 0x61, 0x6c,
- 0x73, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d,
- 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x53, 0x69, 0x64, 0x65, 0x20, 0x6e, 0x61,
- 0x76, 0x69, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x75, 0x6e,
- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x53, 0x69,
- 0x64, 0x65, 0x4e, 0x61, 0x76, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73, 0x69, 0x64, 0x65,
- 0x4e, 0x61, 0x76, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x73, 0x69, 0x64, 0x65, 0x2d,
- 0x6e, 0x61, 0x76, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79,
- 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79,
- 0x49, 0x64, 0x28, 0x27, 0x73, 0x69, 0x64, 0x65, 0x2d, 0x6e, 0x61, 0x76,
- 0x2d, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x27, 0x29, 0x3b, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x69, 0x64,
- 0x65, 0x4e, 0x61, 0x76, 0x4f, 0x70, 0x65, 0x6e, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x69, 0x64, 0x65,
- 0x4e, 0x61, 0x76, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73,
- 0x74, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x28, 0x27, 0x6f, 0x70,
- 0x65, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x2e, 0x63, 0x6c,
- 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x72, 0x65, 0x6d, 0x6f,
- 0x76, 0x65, 0x28, 0x27, 0x73, 0x68, 0x6f, 0x77, 0x27, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x69, 0x64, 0x65,
- 0x4e, 0x61, 0x76, 0x4f, 0x70, 0x65, 0x6e, 0x20, 0x3d, 0x20, 0x66, 0x61,
- 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65,
- 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x73, 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76, 0x2e, 0x63, 0x6c,
- 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x61, 0x64, 0x64, 0x28,
- 0x27, 0x6f, 0x70, 0x65, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79,
- 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x61,
- 0x64, 0x64, 0x28, 0x27, 0x73, 0x68, 0x6f, 0x77, 0x27, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x69, 0x64, 0x65,
- 0x4e, 0x61, 0x76, 0x4f, 0x70, 0x65, 0x6e, 0x20, 0x3d, 0x20, 0x74, 0x72,
- 0x75, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a,
- 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x63, 0x6c,
- 0x6f, 0x73, 0x65, 0x53, 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76, 0x28, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x73, 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76, 0x20, 0x3d, 0x20, 0x64,
+ 0x74, 0x65, 0x73, 0x74, 0x2d, 0x6c, 0x6f, 0x67, 0x2d, 0x62, 0x74, 0x6e,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x65,
+ 0x73, 0x74, 0x4b, 0x65, 0x79, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64,
0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45,
0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27,
- 0x73, 0x69, 0x64, 0x65, 0x2d, 0x6e, 0x61, 0x76, 0x27, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6f, 0x76,
- 0x65, 0x72, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x73, 0x69, 0x64,
- 0x65, 0x2d, 0x6e, 0x61, 0x76, 0x2d, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61,
- 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x69,
- 0x64, 0x65, 0x4e, 0x61, 0x76, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c,
- 0x69, 0x73, 0x74, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x28, 0x27,
- 0x6f, 0x70, 0x65, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x2e, 0x63, 0x6c, 0x61, 0x73,
- 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65,
- 0x28, 0x27, 0x73, 0x68, 0x6f, 0x77, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x73, 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76, 0x4f, 0x70, 0x65,
- 0x6e, 0x20, 0x3d, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x7d,
- 0x0a, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73,
- 0x77, 0x69, 0x74, 0x63, 0x68, 0x50, 0x61, 0x67, 0x65, 0x28, 0x70, 0x61,
- 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20,
- 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x20, 0x70, 0x61, 0x67, 0x65,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74,
- 0x50, 0x61, 0x67, 0x65, 0x20, 0x3d, 0x20, 0x70, 0x61, 0x67, 0x65, 0x4e,
- 0x61, 0x6d, 0x65, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x6e, 0x61, 0x76, 0x69,
- 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x61, 0x63, 0x74, 0x69, 0x76,
- 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x61, 0x76, 0x49, 0x74, 0x65,
- 0x6d, 0x73, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x6c, 0x65, 0x63,
- 0x74, 0x6f, 0x72, 0x41, 0x6c, 0x6c, 0x28, 0x27, 0x2e, 0x6e, 0x61, 0x76,
- 0x2d, 0x69, 0x74, 0x65, 0x6d, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x6e, 0x61, 0x76, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x2e, 0x66, 0x6f,
- 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x69, 0x74, 0x65, 0x6d, 0x20, 0x3d,
- 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x74, 0x65, 0x6d, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69,
- 0x73, 0x74, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x28, 0x27, 0x61,
- 0x63, 0x74, 0x69, 0x76, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x69, 0x74, 0x65,
- 0x6d, 0x2e, 0x67, 0x65, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75,
- 0x74, 0x65, 0x28, 0x27, 0x64, 0x61, 0x74, 0x61, 0x2d, 0x70, 0x61, 0x67,
- 0x65, 0x27, 0x29, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x70, 0x61, 0x67, 0x65,
- 0x4e, 0x61, 0x6d, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x74, 0x65, 0x6d,
- 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x61,
- 0x64, 0x64, 0x28, 0x27, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x48, 0x69, 0x64, 0x65, 0x20, 0x61, 0x6c, 0x6c,
- 0x20, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
- 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x3d, 0x20, 0x5b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x27, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x53, 0x74,
- 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x53, 0x65, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x27, 0x73, 0x75, 0x62, 0x73, 0x63,
- 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x74, 0x61, 0x69,
- 0x6c, 0x73, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x2c, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x27, 0x64, 0x69, 0x76, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x27,
- 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x27, 0x61, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65, 0x73,
- 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x2c, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x27, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x53, 0x65,
- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x27, 0x6e, 0x69, 0x70,
- 0x31, 0x37, 0x44, 0x4d, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27,
- 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x27, 0x73, 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x53,
- 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x5d, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x66, 0x6f, 0x72,
- 0x45, 0x61, 0x63, 0x68, 0x28, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x49, 0x64, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73, 0x65,
- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x73, 0x65, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x65, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64, 0x69, 0x73,
- 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27, 0x6e, 0x6f, 0x6e, 0x65,
- 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x68, 0x6f, 0x77, 0x20, 0x73, 0x65,
- 0x6c, 0x65, 0x63, 0x74, 0x65, 0x64, 0x20, 0x73, 0x65, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x70, 0x61, 0x67, 0x65, 0x4d, 0x61, 0x70, 0x20, 0x3d, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x27, 0x73, 0x74,
- 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x27, 0x3a, 0x20, 0x27,
- 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74,
- 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f,
- 0x6e, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x27, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x73, 0x27, 0x3a, 0x20, 0x27, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
- 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c,
- 0x73, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x2c, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x27, 0x63, 0x6f, 0x6e, 0x66,
- 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x3a, 0x20,
- 0x27, 0x64, 0x69, 0x76, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x27,
- 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x27, 0x61,
- 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x27, 0x3a, 0x20, 0x27, 0x61, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65,
- 0x73, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x2c, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x27, 0x72, 0x65, 0x6c, 0x61,
- 0x79, 0x2d, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x27, 0x3a, 0x20, 0x27,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x53,
- 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x27, 0x64, 0x6d, 0x27, 0x3a, 0x20, 0x27,
- 0x6e, 0x69, 0x70, 0x31, 0x37, 0x44, 0x4d, 0x53, 0x65, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x27, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x27, 0x3a,
- 0x20, 0x27, 0x73, 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65,
- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x65, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x49, 0x64, 0x20, 0x3d, 0x20, 0x70, 0x61, 0x67, 0x65, 0x4d,
- 0x61, 0x70, 0x5b, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x5d,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x61,
- 0x72, 0x67, 0x65, 0x74, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49,
- 0x64, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x61, 0x72, 0x67, 0x65,
- 0x74, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x64,
- 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45,
- 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x74,
- 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x49, 0x64, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53,
- 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61,
- 0x72, 0x67, 0x65, 0x74, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
- 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
- 0x79, 0x20, 0x3d, 0x20, 0x27, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x27, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x53, 0x70, 0x65, 0x63, 0x69, 0x61, 0x6c, 0x20, 0x68, 0x61, 0x6e,
- 0x64, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x63, 0x6f,
- 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20,
- 0x70, 0x61, 0x67, 0x65, 0x20, 0x2d, 0x20, 0x65, 0x6e, 0x73, 0x75, 0x72,
- 0x65, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x64, 0x69, 0x73,
- 0x70, 0x6c, 0x61, 0x79, 0x20, 0x69, 0x73, 0x20, 0x76, 0x69, 0x73, 0x69,
- 0x62, 0x6c, 0x65, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x72, 0x65, 0x66, 0x72,
- 0x65, 0x73, 0x68, 0x20, 0x64, 0x61, 0x74, 0x61, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d,
- 0x65, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x63, 0x6f, 0x6e, 0x66, 0x69,
- 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x69, 0x73,
- 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
+ 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x2d, 0x74, 0x65, 0x73,
+ 0x74, 0x2d, 0x6b, 0x65, 0x79, 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x65,
+ 0x73, 0x74, 0x47, 0x65, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c,
+ 0x65, 0x73, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x65, 0x73, 0x74, 0x47, 0x65, 0x74,
+ 0x41, 0x75, 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x42, 0x74, 0x6e,
+ 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73,
+ 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b,
+ 0x27, 0x2c, 0x20, 0x74, 0x65, 0x73, 0x74, 0x47, 0x65, 0x74, 0x41, 0x75,
+ 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
+ 0x28, 0x74, 0x65, 0x73, 0x74, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x41, 0x75,
+ 0x74, 0x68, 0x52, 0x75, 0x6c, 0x65, 0x73, 0x42, 0x74, 0x6e, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x65,
+ 0x73, 0x74, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x41, 0x75, 0x74, 0x68, 0x52,
+ 0x75, 0x6c, 0x65, 0x73, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45,
+ 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72,
+ 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x74, 0x65,
+ 0x73, 0x74, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x41, 0x75, 0x74, 0x68, 0x52,
+ 0x75, 0x6c, 0x65, 0x73, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x65,
+ 0x73, 0x74, 0x41, 0x64, 0x64, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x6c, 0x69,
+ 0x73, 0x74, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x65, 0x73, 0x74, 0x41, 0x64, 0x64,
+ 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x6c, 0x69, 0x73, 0x74, 0x42, 0x74, 0x6e,
+ 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73,
+ 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b,
+ 0x27, 0x2c, 0x20, 0x74, 0x65, 0x73, 0x74, 0x41, 0x64, 0x64, 0x42, 0x6c,
+ 0x61, 0x63, 0x6b, 0x6c, 0x69, 0x73, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
+ 0x28, 0x74, 0x65, 0x73, 0x74, 0x41, 0x64, 0x64, 0x57, 0x68, 0x69, 0x74,
+ 0x65, 0x6c, 0x69, 0x73, 0x74, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x65, 0x73, 0x74,
+ 0x41, 0x64, 0x64, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74,
+ 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74,
+ 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c,
+ 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x74, 0x65, 0x73, 0x74, 0x41, 0x64,
+ 0x64, 0x57, 0x68, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x69, 0x66, 0x20, 0x28, 0x74, 0x65, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x66,
+ 0x69, 0x67, 0x51, 0x75, 0x65, 0x72, 0x79, 0x42, 0x74, 0x6e, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x65,
+ 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x51, 0x75, 0x65, 0x72,
+ 0x79, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e,
+ 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63,
+ 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x74, 0x65, 0x73, 0x74, 0x43,
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x51, 0x75, 0x65, 0x72, 0x79, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x69, 0x66, 0x20, 0x28, 0x74, 0x65, 0x73, 0x74, 0x50, 0x6f, 0x73, 0x74,
+ 0x45, 0x76, 0x65, 0x6e, 0x74, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x65, 0x73, 0x74,
+ 0x50, 0x6f, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x42, 0x74, 0x6e,
+ 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73,
+ 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b,
+ 0x27, 0x2c, 0x20, 0x74, 0x65, 0x73, 0x74, 0x50, 0x6f, 0x73, 0x74, 0x45,
+ 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x63, 0x6c,
+ 0x65, 0x61, 0x72, 0x54, 0x65, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x42, 0x74,
+ 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x54, 0x65, 0x73, 0x74, 0x4c, 0x6f,
+ 0x67, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e,
+ 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63,
+ 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x28, 0x29, 0x20, 0x3d, 0x3e,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x65, 0x73,
+ 0x74, 0x4c, 0x6f, 0x67, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x63, 0x6f, 0x6e, 0x66,
- 0x69, 0x67, 0x2d, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x69, 0x73, 0x70,
- 0x6c, 0x61, 0x79, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69,
- 0x67, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x2e, 0x63, 0x6c, 0x61,
- 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76,
- 0x65, 0x28, 0x27, 0x68, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x27, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x41, 0x6c,
- 0x77, 0x61, 0x79, 0x73, 0x20, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68,
- 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x77, 0x68, 0x65, 0x6e,
- 0x20, 0x6e, 0x61, 0x76, 0x69, 0x67, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x20,
- 0x74, 0x6f, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x70, 0x61,
- 0x67, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66,
- 0x65, 0x74, 0x63, 0x68, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x2e, 0x63, 0x61, 0x74, 0x63,
- 0x68, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x3d, 0x3e, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
- 0x28, 0x27, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20,
- 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x20, 0x63, 0x6f, 0x6e, 0x66,
- 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6f, 0x6e,
- 0x20, 0x70, 0x61, 0x67, 0x65, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68,
- 0x3a, 0x20, 0x27, 0x20, 0x2b, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
- 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x74, 0x65, 0x73, 0x74,
+ 0x2d, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2d, 0x6c, 0x6f, 0x67, 0x27, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x65, 0x73, 0x74, 0x4c, 0x6f,
+ 0x67, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x65, 0x73,
+ 0x74, 0x4c, 0x6f, 0x67, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54,
+ 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63,
+ 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x6c, 0x6f, 0x67, 0x2d, 0x65, 0x6e,
+ 0x74, 0x72, 0x79, 0x22, 0x3e, 0x3c, 0x73, 0x70, 0x61, 0x6e, 0x20, 0x63,
+ 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x6c, 0x6f, 0x67, 0x2d, 0x74, 0x69,
+ 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0x3e, 0x53, 0x59, 0x53,
+ 0x54, 0x45, 0x4d, 0x3a, 0x3c, 0x2f, 0x73, 0x70, 0x61, 0x6e, 0x3e, 0x20,
+ 0x54, 0x65, 0x73, 0x74, 0x20, 0x6c, 0x6f, 0x67, 0x20, 0x63, 0x6c, 0x65,
+ 0x61, 0x72, 0x65, 0x64, 0x2e, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x27,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x67, 0x65, 0x6e, 0x65, 0x72,
+ 0x61, 0x74, 0x65, 0x54, 0x65, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x42, 0x74,
+ 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x65, 0x73,
+ 0x74, 0x4b, 0x65, 0x79, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45,
+ 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72,
+ 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x67, 0x65,
+ 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d,
+ 0x54, 0x65, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x29, 0x3b, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x20, 0x73, 0x69, 0x64, 0x65, 0x20, 0x6e,
- 0x61, 0x76, 0x69, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x53, 0x69, 0x64, 0x65, 0x4e,
- 0x61, 0x76, 0x28, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c,
- 0x6f, 0x67, 0x28, 0x60, 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x65, 0x64,
- 0x20, 0x74, 0x6f, 0x20, 0x70, 0x61, 0x67, 0x65, 0x3a, 0x20, 0x24, 0x7b,
- 0x70, 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x7d, 0x60, 0x2c, 0x20,
- 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a,
- 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a,
- 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x61, 0x70, 0x70, 0x0a, 0x64, 0x6f,
- 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76,
+ 0x53, 0x68, 0x6f, 0x77, 0x20, 0x74, 0x65, 0x73, 0x74, 0x20, 0x69, 0x6e,
+ 0x70, 0x75, 0x74, 0x20, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
+ 0x77, 0x68, 0x65, 0x6e, 0x20, 0x6e, 0x65, 0x65, 0x64, 0x65, 0x64, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x65,
+ 0x73, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e,
+ 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
+ 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x74, 0x65, 0x73, 0x74, 0x2d, 0x69,
+ 0x6e, 0x70, 0x75, 0x74, 0x2d, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x74, 0x65, 0x73, 0x74, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x65, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x74, 0x65, 0x73, 0x74, 0x49, 0x6e, 0x70, 0x75,
+ 0x74, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x74, 0x79,
+ 0x6c, 0x65, 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d,
+ 0x20, 0x27, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x27, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x20, 0x73, 0x74, 0x61,
+ 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x73, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x65, 0x66,
+ 0x72, 0x65, 0x73, 0x68, 0x53, 0x74, 0x61, 0x74, 0x73, 0x42, 0x74, 0x6e,
+ 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
+ 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79,
+ 0x49, 0x64, 0x28, 0x27, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x2d,
+ 0x73, 0x74, 0x61, 0x74, 0x73, 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x66,
+ 0x72, 0x65, 0x73, 0x68, 0x53, 0x74, 0x61, 0x74, 0x73, 0x42, 0x74, 0x6e,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x53, 0x74, 0x61, 0x74, 0x73,
+ 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74,
+ 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c,
+ 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x53, 0x74,
+ 0x61, 0x74, 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x20, 0x73, 0x65,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x73, 0x20, 0x61, 0x6c, 0x77,
+ 0x61, 0x79, 0x73, 0x20, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x20,
+ 0x77, 0x68, 0x65, 0x6e, 0x20, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74,
+ 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x4e, 0x49, 0x50, 0x2d, 0x31, 0x37, 0x20, 0x44, 0x4d,
+ 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c,
+ 0x65, 0x72, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x73, 0x65, 0x6e, 0x64, 0x44, 0x6d, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65, 0x6e,
+ 0x64, 0x44, 0x6d, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76,
0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28,
- 0x27, 0x44, 0x4f, 0x4d, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4c,
- 0x6f, 0x61, 0x64, 0x65, 0x64, 0x27, 0x2c, 0x20, 0x28, 0x29, 0x20, 0x3d,
- 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x2d, 0x52,
- 0x65, 0x6c, 0x61, 0x79, 0x20, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x41,
- 0x50, 0x49, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65,
- 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x27, 0x29, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x69, 0x74, 0x69,
- 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x20, 0x64, 0x61, 0x72, 0x6b, 0x20, 0x6d,
- 0x6f, 0x64, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x69, 0x74,
- 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f,
- 0x64, 0x65, 0x28, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65,
- 0x20, 0x73, 0x69, 0x64, 0x65, 0x62, 0x61, 0x72, 0x20, 0x62, 0x75, 0x74,
- 0x74, 0x6f, 0x6e, 0x20, 0x74, 0x65, 0x78, 0x74, 0x0a, 0x20, 0x20, 0x20,
+ 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x73, 0x65, 0x6e,
+ 0x64, 0x4e, 0x49, 0x50, 0x31, 0x37, 0x44, 0x4d, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x53, 0x51, 0x4c, 0x20, 0x51, 0x75, 0x65, 0x72, 0x79, 0x20, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72,
+ 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x53, 0x71, 0x6c, 0x42, 0x74,
+ 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74,
+ 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42,
+ 0x79, 0x49, 0x64, 0x28, 0x27, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65,
+ 0x2d, 0x73, 0x71, 0x6c, 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x6c,
+ 0x65, 0x61, 0x72, 0x53, 0x71, 0x6c, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20,
+ 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74,
+ 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28,
+ 0x27, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x2d, 0x73, 0x71, 0x6c, 0x2d, 0x62,
+ 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x74, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x48, 0x69, 0x73,
+ 0x74, 0x6f, 0x72, 0x79, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f,
+ 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c,
+ 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x63,
+ 0x6c, 0x65, 0x61, 0x72, 0x2d, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
+ 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65,
+ 0x53, 0x71, 0x6c, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74,
+ 0x65, 0x53, 0x71, 0x6c, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45,
+ 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72,
+ 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x65, 0x78,
+ 0x65, 0x63, 0x75, 0x74, 0x65, 0x53, 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72,
+ 0x79, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x63, 0x6c, 0x65, 0x61, 0x72,
+ 0x53, 0x71, 0x6c, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x53,
+ 0x71, 0x6c, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65,
+ 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27,
+ 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x63, 0x6c, 0x65, 0x61,
+ 0x72, 0x53, 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69,
+ 0x66, 0x20, 0x28, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x48, 0x69, 0x73, 0x74,
+ 0x6f, 0x72, 0x79, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x48,
+ 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64,
+ 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e,
+ 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20,
+ 0x63, 0x6c, 0x65, 0x61, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x48, 0x69,
+ 0x73, 0x74, 0x6f, 0x72, 0x79, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x0a, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x44,
+ 0x61, 0x72, 0x6b, 0x20, 0x6d, 0x6f, 0x64, 0x65, 0x20, 0x66, 0x75, 0x6e,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x0a, 0x66,
+ 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x67, 0x67,
+ 0x6c, 0x65, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x28, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
+ 0x20, 0x62, 0x6f, 0x64, 0x79, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
+ 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x62, 0x6f, 0x64, 0x79, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x69, 0x73, 0x44,
+ 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x20, 0x3d, 0x20, 0x62, 0x6f,
+ 0x64, 0x79, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74,
+ 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73, 0x28, 0x27, 0x64,
+ 0x61, 0x72, 0x6b, 0x2d, 0x6d, 0x6f, 0x64, 0x65, 0x27, 0x29, 0x3b, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x69, 0x73, 0x44,
+ 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x6f, 0x64, 0x79, 0x2e,
+ 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x72, 0x65,
+ 0x6d, 0x6f, 0x76, 0x65, 0x28, 0x27, 0x64, 0x61, 0x72, 0x6b, 0x2d, 0x6d,
+ 0x6f, 0x64, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x74, 0x6f, 0x72,
+ 0x61, 0x67, 0x65, 0x2e, 0x73, 0x65, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x28,
+ 0x27, 0x64, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x27, 0x2c, 0x20,
+ 0x27, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
+ 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x42, 0x75, 0x74, 0x74,
+ 0x6f, 0x6e, 0x28, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27,
+ 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20,
+ 0x6c, 0x69, 0x67, 0x68, 0x74, 0x20, 0x6d, 0x6f, 0x64, 0x65, 0x27, 0x2c,
+ 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x6f, 0x64, 0x79, 0x2e,
+ 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x61, 0x64,
+ 0x64, 0x28, 0x27, 0x64, 0x61, 0x72, 0x6b, 0x2d, 0x6d, 0x6f, 0x64, 0x65,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65,
+ 0x2e, 0x73, 0x65, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x28, 0x27, 0x64, 0x61,
+ 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x27, 0x2c, 0x20, 0x27, 0x74, 0x72,
+ 0x75, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x44, 0x61, 0x72, 0x6b,
+ 0x4d, 0x6f, 0x64, 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x28, 0x74,
+ 0x72, 0x75, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x53, 0x77, 0x69, 0x74, 0x63,
+ 0x68, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x64, 0x61, 0x72, 0x6b, 0x20,
+ 0x6d, 0x6f, 0x64, 0x65, 0x27, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a,
+ 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x75, 0x70,
+ 0x64, 0x61, 0x74, 0x65, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65,
+ 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x28, 0x69, 0x73, 0x44, 0x61, 0x72,
+ 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x61, 0x76, 0x44, 0x61,
0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20,
0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74,
@@ -18651,2830 +18655,3150 @@ static const unsigned char embedded_index_js[] = {
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6e, 0x61, 0x76, 0x44,
0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x42, 0x74, 0x6e, 0x2e, 0x74,
0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d,
+ 0x20, 0x69, 0x73, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x20,
+ 0x3f, 0x20, 0x27, 0x4c, 0x49, 0x47, 0x48, 0x54, 0x20, 0x4d, 0x4f, 0x44,
+ 0x45, 0x27, 0x20, 0x3a, 0x20, 0x27, 0x44, 0x41, 0x52, 0x4b, 0x20, 0x4d,
+ 0x4f, 0x44, 0x45, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
+ 0x7d, 0x0a, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
+ 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x44, 0x61,
+ 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73, 0x61, 0x76,
+ 0x65, 0x64, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x20, 0x3d,
+ 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67,
+ 0x65, 0x2e, 0x67, 0x65, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x28, 0x27, 0x64,
+ 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x72, 0x65,
+ 0x66, 0x65, 0x72, 0x73, 0x44, 0x61, 0x72, 0x6b, 0x20, 0x3d, 0x20, 0x77,
+ 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x4d,
+ 0x65, 0x64, 0x69, 0x61, 0x20, 0x26, 0x26, 0x20, 0x77, 0x69, 0x6e, 0x64,
+ 0x6f, 0x77, 0x2e, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x4d, 0x65, 0x64, 0x69,
+ 0x61, 0x28, 0x27, 0x28, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x73, 0x2d,
+ 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2d, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x65,
+ 0x3a, 0x20, 0x64, 0x61, 0x72, 0x6b, 0x29, 0x27, 0x29, 0x2e, 0x6d, 0x61,
+ 0x74, 0x63, 0x68, 0x65, 0x73, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x42,
+ 0x65, 0x44, 0x61, 0x72, 0x6b, 0x20, 0x3d, 0x20, 0x73, 0x61, 0x76, 0x65,
+ 0x64, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x20, 0x3d, 0x3d,
+ 0x3d, 0x20, 0x27, 0x74, 0x72, 0x75, 0x65, 0x27, 0x20, 0x7c, 0x7c, 0x20,
+ 0x28, 0x73, 0x61, 0x76, 0x65, 0x64, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f,
+ 0x64, 0x65, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x6e, 0x75, 0x6c, 0x6c, 0x20,
+ 0x26, 0x26, 0x20, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x73, 0x44, 0x61,
+ 0x72, 0x6b, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
+ 0x20, 0x28, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x42, 0x65, 0x44, 0x61,
+ 0x72, 0x6b, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x62,
+ 0x6f, 0x64, 0x79, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73,
+ 0x74, 0x2e, 0x61, 0x64, 0x64, 0x28, 0x27, 0x64, 0x61, 0x72, 0x6b, 0x2d,
+ 0x6d, 0x6f, 0x64, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x44, 0x61,
+ 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e,
+ 0x28, 0x74, 0x72, 0x75, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x44,
+ 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f,
+ 0x6e, 0x28, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x53, 0x69,
+ 0x64, 0x65, 0x20, 0x6e, 0x61, 0x76, 0x69, 0x67, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x0a,
+ 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x67,
+ 0x67, 0x6c, 0x65, 0x53, 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76, 0x28, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
+ 0x20, 0x73, 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76, 0x20, 0x3d, 0x20, 0x64,
+ 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45,
+ 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27,
+ 0x73, 0x69, 0x64, 0x65, 0x2d, 0x6e, 0x61, 0x76, 0x27, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6f, 0x76,
+ 0x65, 0x72, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
+ 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d,
+ 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x73, 0x69, 0x64,
+ 0x65, 0x2d, 0x6e, 0x61, 0x76, 0x2d, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61,
+ 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
+ 0x20, 0x28, 0x73, 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76, 0x4f, 0x70, 0x65,
+ 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x73, 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76, 0x2e, 0x63, 0x6c, 0x61,
+ 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76,
+ 0x65, 0x28, 0x27, 0x6f, 0x70, 0x65, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x76, 0x65, 0x72, 0x6c,
+ 0x61, 0x79, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74,
+ 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x28, 0x27, 0x73, 0x68, 0x6f,
+ 0x77, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x73, 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76, 0x4f, 0x70, 0x65, 0x6e,
+ 0x20, 0x3d, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x69, 0x64, 0x65, 0x4e,
+ 0x61, 0x76, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74,
+ 0x2e, 0x61, 0x64, 0x64, 0x28, 0x27, 0x6f, 0x70, 0x65, 0x6e, 0x27, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x76,
+ 0x65, 0x72, 0x6c, 0x61, 0x79, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c,
+ 0x69, 0x73, 0x74, 0x2e, 0x61, 0x64, 0x64, 0x28, 0x27, 0x73, 0x68, 0x6f,
+ 0x77, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x73, 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76, 0x4f, 0x70, 0x65, 0x6e,
+ 0x20, 0x3d, 0x20, 0x74, 0x72, 0x75, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x53, 0x69, 0x64, 0x65,
+ 0x4e, 0x61, 0x76, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73, 0x69, 0x64, 0x65, 0x4e, 0x61,
+ 0x76, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74,
+ 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42,
+ 0x79, 0x49, 0x64, 0x28, 0x27, 0x73, 0x69, 0x64, 0x65, 0x2d, 0x6e, 0x61,
+ 0x76, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x20, 0x3d,
+ 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65,
+ 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64,
+ 0x28, 0x27, 0x73, 0x69, 0x64, 0x65, 0x2d, 0x6e, 0x61, 0x76, 0x2d, 0x6f,
+ 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x73, 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76, 0x2e, 0x63,
+ 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x72, 0x65, 0x6d,
+ 0x6f, 0x76, 0x65, 0x28, 0x27, 0x6f, 0x70, 0x65, 0x6e, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79,
+ 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x72,
+ 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x28, 0x27, 0x73, 0x68, 0x6f, 0x77, 0x27,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x69, 0x64, 0x65, 0x4e,
+ 0x61, 0x76, 0x4f, 0x70, 0x65, 0x6e, 0x20, 0x3d, 0x20, 0x66, 0x61, 0x6c,
+ 0x73, 0x65, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x50, 0x61,
+ 0x67, 0x65, 0x28, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74,
+ 0x6f, 0x70, 0x20, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
+ 0x73, 0x20, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x69, 0x66,
+ 0x20, 0x6c, 0x65, 0x61, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x73, 0x74, 0x61,
+ 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x20, 0x70, 0x61, 0x67, 0x65,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x63, 0x75, 0x72,
+ 0x72, 0x65, 0x6e, 0x74, 0x50, 0x61, 0x67, 0x65, 0x20, 0x3d, 0x3d, 0x3d,
+ 0x20, 0x27, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73,
+ 0x27, 0x20, 0x26, 0x26, 0x20, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d,
+ 0x65, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x27, 0x73, 0x74, 0x61, 0x74, 0x69,
+ 0x73, 0x74, 0x69, 0x63, 0x73, 0x27, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x6f, 0x70, 0x53, 0x74,
+ 0x61, 0x74, 0x73, 0x50, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x28, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61,
+ 0x74, 0x65, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x20, 0x70,
+ 0x61, 0x67, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x75, 0x72, 0x72,
+ 0x65, 0x6e, 0x74, 0x50, 0x61, 0x67, 0x65, 0x20, 0x3d, 0x20, 0x70, 0x61,
+ 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x6e,
+ 0x61, 0x76, 0x69, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x61, 0x63,
+ 0x74, 0x69, 0x76, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x65, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x61, 0x76,
+ 0x49, 0x74, 0x65, 0x6d, 0x73, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
+ 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65,
+ 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x41, 0x6c, 0x6c, 0x28, 0x27, 0x2e,
+ 0x6e, 0x61, 0x76, 0x2d, 0x69, 0x74, 0x65, 0x6d, 0x27, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x6e, 0x61, 0x76, 0x49, 0x74, 0x65, 0x6d, 0x73,
+ 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x69, 0x74, 0x65,
+ 0x6d, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x69, 0x74, 0x65, 0x6d, 0x2e, 0x63, 0x6c, 0x61, 0x73,
+ 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65,
+ 0x28, 0x27, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x27, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x69, 0x74, 0x65, 0x6d, 0x2e, 0x67, 0x65, 0x74, 0x41, 0x74, 0x74, 0x72,
+ 0x69, 0x62, 0x75, 0x74, 0x65, 0x28, 0x27, 0x64, 0x61, 0x74, 0x61, 0x2d,
+ 0x70, 0x61, 0x67, 0x65, 0x27, 0x29, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x70,
+ 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
+ 0x74, 0x65, 0x6d, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73,
+ 0x74, 0x2e, 0x61, 0x64, 0x64, 0x28, 0x27, 0x61, 0x63, 0x74, 0x69, 0x76,
+ 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x48, 0x69, 0x64, 0x65, 0x20,
+ 0x61, 0x6c, 0x6c, 0x20, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20,
+ 0x3d, 0x20, 0x5b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x27, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73,
+ 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x53,
+ 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x27, 0x73, 0x75,
+ 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65,
+ 0x74, 0x61, 0x69, 0x6c, 0x73, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x27, 0x64, 0x69, 0x76, 0x5f, 0x63, 0x6f, 0x6e, 0x66,
+ 0x69, 0x67, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x27, 0x61, 0x75, 0x74, 0x68, 0x52, 0x75,
+ 0x6c, 0x65, 0x73, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x2c,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x27, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74,
+ 0x73, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x2c, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x27,
+ 0x6e, 0x69, 0x70, 0x31, 0x37, 0x44, 0x4d, 0x53, 0x65, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x27, 0x73, 0x71, 0x6c, 0x51, 0x75, 0x65,
+ 0x72, 0x79, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e,
+ 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x73, 0x65, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
+ 0x20, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x64,
+ 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45,
+ 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x73,
+ 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x73,
+ 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e,
+ 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27, 0x6e,
+ 0x6f, 0x6e, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x68, 0x6f, 0x77,
+ 0x20, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x65, 0x64, 0x20, 0x73, 0x65,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x74, 0x20, 0x70, 0x61, 0x67, 0x65, 0x4d, 0x61, 0x70, 0x20,
+ 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x27, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x27,
+ 0x3a, 0x20, 0x27, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x53,
+ 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x53, 0x65, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x27, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
+ 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x27, 0x3a, 0x20, 0x27, 0x73, 0x75, 0x62,
+ 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x74,
+ 0x61, 0x69, 0x6c, 0x73, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27,
+ 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x27, 0x63,
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x27, 0x3a, 0x20, 0x27, 0x64, 0x69, 0x76, 0x5f, 0x63, 0x6f, 0x6e, 0x66,
+ 0x69, 0x67, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x27, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x27, 0x3a, 0x20, 0x27, 0x61, 0x75, 0x74, 0x68, 0x52,
+ 0x75, 0x6c, 0x65, 0x73, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27,
+ 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x27, 0x72,
+ 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x27,
+ 0x3a, 0x20, 0x27, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x45, 0x76, 0x65, 0x6e,
+ 0x74, 0x73, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x2c, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x27, 0x64, 0x6d, 0x27,
+ 0x3a, 0x20, 0x27, 0x6e, 0x69, 0x70, 0x31, 0x37, 0x44, 0x4d, 0x53, 0x65,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x27, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73,
+ 0x65, 0x27, 0x3a, 0x20, 0x27, 0x73, 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72,
+ 0x79, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x74, 0x20, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x65,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x20, 0x3d, 0x20, 0x70, 0x61,
+ 0x67, 0x65, 0x4d, 0x61, 0x70, 0x5b, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x61,
+ 0x6d, 0x65, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
+ 0x28, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x65, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x49, 0x64, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x61,
+ 0x72, 0x67, 0x65, 0x74, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
+ 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67,
+ 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49,
+ 0x64, 0x28, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x65, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x61, 0x72, 0x67,
+ 0x65, 0x74, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x65, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64, 0x69, 0x73,
+ 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27, 0x62, 0x6c, 0x6f, 0x63,
+ 0x6b, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x70, 0x65, 0x63, 0x69, 0x61, 0x6c, 0x20,
+ 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x66, 0x6f, 0x72,
+ 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x20, 0x70, 0x61, 0x67, 0x65, 0x20, 0x2d, 0x20, 0x65, 0x6e,
+ 0x73, 0x75, 0x72, 0x65, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2d,
+ 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x69, 0x73, 0x20, 0x76,
+ 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x72,
+ 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x20, 0x64, 0x61, 0x74, 0x61, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x61, 0x67, 0x65,
+ 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x63, 0x6f,
+ 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x27,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
+ 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x64, 0x6f,
+ 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c,
+ 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x63,
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
+ 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44,
+ 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x66, 0x69, 0x67, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x2e,
+ 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x72, 0x65,
+ 0x6d, 0x6f, 0x76, 0x65, 0x28, 0x27, 0x68, 0x69, 0x64, 0x64, 0x65, 0x6e,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x41, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x20, 0x72, 0x65, 0x66, 0x72,
+ 0x65, 0x73, 0x68, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x64, 0x61, 0x74, 0x61, 0x20, 0x77,
+ 0x68, 0x65, 0x6e, 0x20, 0x6e, 0x61, 0x76, 0x69, 0x67, 0x61, 0x74, 0x69,
+ 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
+ 0x20, 0x70, 0x61, 0x67, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x66, 0x65, 0x74, 0x63, 0x68, 0x43, 0x6f, 0x6e, 0x66, 0x69,
+ 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x2e, 0x63,
+ 0x61, 0x74, 0x63, 0x68, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x3d,
+ 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
+ 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20,
+ 0x74, 0x6f, 0x20, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x20, 0x63,
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x20, 0x6f, 0x6e, 0x20, 0x70, 0x61, 0x67, 0x65, 0x20, 0x73, 0x77, 0x69,
+ 0x74, 0x63, 0x68, 0x3a, 0x20, 0x27, 0x20, 0x2b, 0x20, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x20, 0x73, 0x69, 0x64,
+ 0x65, 0x20, 0x6e, 0x61, 0x76, 0x69, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x53, 0x69,
+ 0x64, 0x65, 0x4e, 0x61, 0x76, 0x28, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x53, 0x77, 0x69, 0x74, 0x63,
+ 0x68, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x70, 0x61, 0x67, 0x65, 0x3a,
+ 0x20, 0x24, 0x7b, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x7d,
+ 0x60, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a,
+ 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61,
+ 0x6c, 0x69, 0x7a, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x61, 0x70, 0x70,
+ 0x0a, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x64,
+ 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e,
+ 0x65, 0x72, 0x28, 0x27, 0x44, 0x4f, 0x4d, 0x43, 0x6f, 0x6e, 0x74, 0x65,
+ 0x6e, 0x74, 0x4c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x27, 0x2c, 0x20, 0x28,
+ 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27,
+ 0x42, 0x6c, 0x6f, 0x73, 0x73, 0x6f, 0x6d, 0x20, 0x41, 0x64, 0x6d, 0x69,
+ 0x6e, 0x20, 0x41, 0x50, 0x49, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66,
+ 0x61, 0x63, 0x65, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x27, 0x29,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x49, 0x6e,
+ 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x20, 0x64, 0x61, 0x72,
+ 0x6b, 0x20, 0x6d, 0x6f, 0x64, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69,
+ 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x44, 0x61, 0x72,
+ 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x28, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c,
+ 0x69, 0x7a, 0x65, 0x20, 0x73, 0x69, 0x64, 0x65, 0x62, 0x61, 0x72, 0x20,
+ 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x74, 0x65, 0x78, 0x74, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x61,
+ 0x76, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x42, 0x74, 0x6e,
+ 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
+ 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79,
+ 0x49, 0x64, 0x28, 0x27, 0x6e, 0x61, 0x76, 0x2d, 0x64, 0x61, 0x72, 0x6b,
+ 0x2d, 0x6d, 0x6f, 0x64, 0x65, 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6e, 0x61, 0x76,
+ 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x42, 0x74, 0x6e, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6e,
+ 0x61, 0x76, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x42, 0x74,
+ 0x6e, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
+ 0x74, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74,
+ 0x2e, 0x62, 0x6f, 0x64, 0x79, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c,
+ 0x69, 0x73, 0x74, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73,
+ 0x28, 0x27, 0x64, 0x61, 0x72, 0x6b, 0x2d, 0x6d, 0x6f, 0x64, 0x65, 0x27,
+ 0x29, 0x20, 0x3f, 0x20, 0x27, 0x4c, 0x49, 0x47, 0x48, 0x54, 0x20, 0x4d,
+ 0x4f, 0x44, 0x45, 0x27, 0x20, 0x3a, 0x20, 0x27, 0x44, 0x41, 0x52, 0x4b,
+ 0x20, 0x4d, 0x4f, 0x44, 0x45, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74,
+ 0x61, 0x72, 0x74, 0x20, 0x52, 0x45, 0x4c, 0x41, 0x59, 0x20, 0x6c, 0x65,
+ 0x74, 0x74, 0x65, 0x72, 0x20, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x61, 0x72, 0x74,
+ 0x52, 0x65, 0x6c, 0x61, 0x79, 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x28, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f,
+ 0x2f, 0x20, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65,
+ 0x20, 0x72, 0x65, 0x61, 0x6c, 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x20, 0x72, 0x61, 0x74, 0x65, 0x20, 0x63, 0x68,
+ 0x61, 0x72, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65, 0x74, 0x54,
+ 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x28, 0x28, 0x29, 0x20, 0x3d, 0x3e,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
+ 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x45, 0x76, 0x65,
+ 0x6e, 0x74, 0x52, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x74, 0x28,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x2c, 0x20, 0x31, 0x30,
+ 0x30, 0x30, 0x29, 0x3b, 0x20, 0x2f, 0x2f, 0x20, 0x44, 0x65, 0x6c, 0x61,
+ 0x79, 0x20, 0x74, 0x6f, 0x20, 0x65, 0x6e, 0x73, 0x75, 0x72, 0x65, 0x20,
+ 0x74, 0x65, 0x78, 0x74, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x2e, 0x6a,
+ 0x73, 0x20, 0x69, 0x73, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x69, 0x74,
+ 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x20, 0x73, 0x69, 0x64, 0x65, 0x20,
+ 0x6e, 0x61, 0x76, 0x69, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a,
+ 0x65, 0x53, 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76, 0x69, 0x67, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x45, 0x6e, 0x73, 0x75, 0x72, 0x65, 0x20, 0x61, 0x64,
+ 0x6d, 0x69, 0x6e, 0x20, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73,
+ 0x20, 0x61, 0x72, 0x65, 0x20, 0x68, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x20,
+ 0x62, 0x79, 0x20, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x20, 0x6f,
+ 0x6e, 0x20, 0x70, 0x61, 0x67, 0x65, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x64,
+ 0x6d, 0x69, 0x6e, 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x56,
+ 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x28, 0x29, 0x3b,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65, 0x74, 0x54, 0x69, 0x6d,
+ 0x65, 0x6f, 0x75, 0x74, 0x28, 0x28, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x69,
+ 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x41, 0x70, 0x70, 0x28, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x45, 0x6e, 0x68, 0x61, 0x6e, 0x63, 0x65, 0x20, 0x53, 0x69, 0x6d,
+ 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x20,
+ 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x66, 0x74, 0x65,
+ 0x72, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61,
+ 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x73, 0x65, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x28,
+ 0x65, 0x6e, 0x68, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x46,
+ 0x6f, 0x72, 0x54, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2c, 0x20, 0x32,
+ 0x30, 0x30, 0x30, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x2c,
+ 0x20, 0x31, 0x30, 0x30, 0x29, 0x3b, 0x0a, 0x7d, 0x29, 0x3b, 0x0a, 0x0a,
+ 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a,
+ 0x65, 0x20, 0x73, 0x69, 0x64, 0x65, 0x20, 0x6e, 0x61, 0x76, 0x69, 0x67,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20,
+ 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x73, 0x0a, 0x66, 0x75, 0x6e,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61,
+ 0x6c, 0x69, 0x7a, 0x65, 0x53, 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76, 0x69,
+ 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72,
+ 0x20, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x20, 0x63, 0x6c, 0x69, 0x63, 0x6b,
+ 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65,
+ 0x72, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63,
+ 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65,
+ 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x68, 0x65,
+ 0x61, 0x64, 0x65, 0x72, 0x2d, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x27, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x68, 0x65,
+ 0x61, 0x64, 0x65, 0x72, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x65, 0x61,
+ 0x64, 0x65, 0x72, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x64,
+ 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65,
+ 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x74,
+ 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x53, 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79,
+ 0x20, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c,
+ 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
+ 0x20, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x64,
+ 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45,
+ 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27,
+ 0x73, 0x69, 0x64, 0x65, 0x2d, 0x6e, 0x61, 0x76, 0x2d, 0x6f, 0x76, 0x65,
+ 0x72, 0x6c, 0x61, 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x69, 0x66, 0x20, 0x28, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f,
+ 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76,
+ 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28,
+ 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x63, 0x6c, 0x6f,
+ 0x73, 0x65, 0x53, 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f,
+ 0x2f, 0x20, 0x4e, 0x61, 0x76, 0x69, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x20, 0x69, 0x74, 0x65, 0x6d, 0x20, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x20,
+ 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x73, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x61, 0x76, 0x49, 0x74,
+ 0x65, 0x6d, 0x73, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
+ 0x6e, 0x74, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x6c, 0x65,
+ 0x63, 0x74, 0x6f, 0x72, 0x41, 0x6c, 0x6c, 0x28, 0x27, 0x2e, 0x6e, 0x61,
+ 0x76, 0x2d, 0x69, 0x74, 0x65, 0x6d, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x6e, 0x61, 0x76, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x2e, 0x66,
+ 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x69, 0x74, 0x65, 0x6d, 0x20,
+ 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x74, 0x65, 0x6d, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65,
+ 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27,
+ 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x28, 0x65, 0x29, 0x20,
+ 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70,
+ 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x3d, 0x20, 0x65, 0x2e,
+ 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x41, 0x74,
+ 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x28, 0x27, 0x64, 0x61, 0x74,
+ 0x61, 0x2d, 0x70, 0x61, 0x67, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
+ 0x20, 0x28, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68,
+ 0x50, 0x61, 0x67, 0x65, 0x28, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d,
+ 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x46, 0x6f,
+ 0x6f, 0x74, 0x65, 0x72, 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20,
+ 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x73, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x61, 0x76, 0x44, 0x61,
+ 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20,
+ 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74,
+ 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28,
+ 0x27, 0x6e, 0x61, 0x76, 0x2d, 0x64, 0x61, 0x72, 0x6b, 0x2d, 0x6d, 0x6f,
+ 0x64, 0x65, 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x61, 0x76, 0x4c,
+ 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64,
+ 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45,
+ 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27,
+ 0x6e, 0x61, 0x76, 0x2d, 0x6c, 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x2d, 0x62,
+ 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69,
+ 0x66, 0x20, 0x28, 0x6e, 0x61, 0x76, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f,
+ 0x64, 0x65, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x6e, 0x61, 0x76, 0x44, 0x61, 0x72, 0x6b,
+ 0x4d, 0x6f, 0x64, 0x65, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45,
+ 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72,
+ 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x28, 0x65,
+ 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x2e, 0x73, 0x74, 0x6f,
+ 0x70, 0x50, 0x72, 0x6f, 0x70, 0x61, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x44, 0x61,
+ 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x62, 0x75, 0x74, 0x74,
+ 0x6f, 0x6e, 0x20, 0x74, 0x65, 0x78, 0x74, 0x20, 0x61, 0x66, 0x74, 0x65,
+ 0x72, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65, 0x74,
+ 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x28, 0x28, 0x29, 0x20, 0x3d,
+ 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6e, 0x61, 0x76, 0x44,
+ 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x42, 0x74, 0x6e, 0x2e, 0x74,
+ 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d,
0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x62, 0x6f,
0x64, 0x79, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74,
0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73, 0x28, 0x27, 0x64,
0x61, 0x72, 0x6b, 0x2d, 0x6d, 0x6f, 0x64, 0x65, 0x27, 0x29, 0x20, 0x3f,
0x20, 0x27, 0x4c, 0x49, 0x47, 0x48, 0x54, 0x20, 0x4d, 0x4f, 0x44, 0x45,
0x27, 0x20, 0x3a, 0x20, 0x27, 0x44, 0x41, 0x52, 0x4b, 0x20, 0x4d, 0x4f,
- 0x44, 0x45, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x61, 0x72, 0x74,
- 0x20, 0x52, 0x45, 0x4c, 0x41, 0x59, 0x20, 0x6c, 0x65, 0x74, 0x74, 0x65,
- 0x72, 0x20, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x6c,
- 0x61, 0x79, 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x28,
- 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x49,
- 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x20, 0x72, 0x65,
- 0x61, 0x6c, 0x2d, 0x74, 0x69, 0x6d, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e,
- 0x74, 0x20, 0x72, 0x61, 0x74, 0x65, 0x20, 0x63, 0x68, 0x61, 0x72, 0x74,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65, 0x74, 0x54, 0x69, 0x6d, 0x65,
- 0x6f, 0x75, 0x74, 0x28, 0x28, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x69, 0x74,
- 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52,
- 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x72, 0x74, 0x28, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x2c, 0x20, 0x31, 0x30, 0x30, 0x30, 0x29,
- 0x3b, 0x20, 0x2f, 0x2f, 0x20, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x74,
- 0x6f, 0x20, 0x65, 0x6e, 0x73, 0x75, 0x72, 0x65, 0x20, 0x74, 0x65, 0x78,
- 0x74, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x2e, 0x6a, 0x73, 0x20, 0x69,
- 0x73, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c,
- 0x69, 0x7a, 0x65, 0x20, 0x73, 0x69, 0x64, 0x65, 0x20, 0x6e, 0x61, 0x76,
- 0x69, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x53, 0x69,
- 0x64, 0x65, 0x4e, 0x61, 0x76, 0x69, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x28, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x45, 0x6e, 0x73, 0x75, 0x72, 0x65, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e,
- 0x20, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x61, 0x72,
- 0x65, 0x20, 0x68, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x20, 0x62, 0x79, 0x20,
- 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x20, 0x6f, 0x6e, 0x20, 0x70,
- 0x61, 0x67, 0x65, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x6e,
- 0x53, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x69, 0x73, 0x69,
- 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x28, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x73, 0x65, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75,
- 0x74, 0x28, 0x28, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61,
- 0x6c, 0x69, 0x7a, 0x65, 0x41, 0x70, 0x70, 0x28, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x45, 0x6e,
- 0x68, 0x61, 0x6e, 0x63, 0x65, 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65,
- 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x65, 0x73,
- 0x74, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x66, 0x74, 0x65, 0x72, 0x20, 0x69,
- 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65,
- 0x74, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x28, 0x65, 0x6e, 0x68,
- 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x46, 0x6f, 0x72, 0x54,
- 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2c, 0x20, 0x32, 0x30, 0x30, 0x30,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x2c, 0x20, 0x31, 0x30,
- 0x30, 0x29, 0x3b, 0x0a, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x2f, 0x2f, 0x20,
- 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x20, 0x73,
- 0x69, 0x64, 0x65, 0x20, 0x6e, 0x61, 0x76, 0x69, 0x67, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x68, 0x61, 0x6e,
- 0x64, 0x6c, 0x65, 0x72, 0x73, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a,
- 0x65, 0x53, 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76, 0x69, 0x67, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x20, 0x74, 0x69,
- 0x74, 0x6c, 0x65, 0x20, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x20, 0x68, 0x61,
- 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x54, 0x69,
- 0x74, 0x6c, 0x65, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x68, 0x65, 0x61, 0x64, 0x65,
- 0x72, 0x2d, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x68, 0x65, 0x61, 0x64, 0x65,
- 0x72, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72,
- 0x54, 0x69, 0x74, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65,
- 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27,
- 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x74, 0x6f, 0x67, 0x67,
- 0x6c, 0x65, 0x53, 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x20, 0x63, 0x6c,
- 0x69, 0x63, 0x6b, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6f, 0x76,
- 0x65, 0x72, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x73, 0x69, 0x64,
- 0x65, 0x2d, 0x6e, 0x61, 0x76, 0x2d, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61,
- 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x76, 0x65, 0x72,
- 0x6c, 0x61, 0x79, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74,
- 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c,
- 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x53,
- 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4e,
- 0x61, 0x76, 0x69, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x74,
- 0x65, 0x6d, 0x20, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x20, 0x68, 0x61, 0x6e,
- 0x64, 0x6c, 0x65, 0x72, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x61, 0x76, 0x49, 0x74, 0x65, 0x6d, 0x73,
- 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x71, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f,
- 0x72, 0x41, 0x6c, 0x6c, 0x28, 0x27, 0x2e, 0x6e, 0x61, 0x76, 0x2d, 0x69,
- 0x74, 0x65, 0x6d, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6e,
- 0x61, 0x76, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x2e, 0x66, 0x6f, 0x72, 0x45,
- 0x61, 0x63, 0x68, 0x28, 0x69, 0x74, 0x65, 0x6d, 0x20, 0x3d, 0x3e, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x74,
- 0x65, 0x6d, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c,
- 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69,
- 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x28, 0x65, 0x29, 0x20, 0x3d, 0x3e, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x61, 0x67, 0x65,
- 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x3d, 0x20, 0x65, 0x2e, 0x74, 0x61, 0x72,
- 0x67, 0x65, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69,
- 0x62, 0x75, 0x74, 0x65, 0x28, 0x27, 0x64, 0x61, 0x74, 0x61, 0x2d, 0x70,
- 0x61, 0x67, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70,
- 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x50, 0x61, 0x67,
- 0x65, 0x28, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x29, 0x3b,
+ 0x44, 0x45, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x2c, 0x20, 0x31, 0x30, 0x29, 0x3b,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x46, 0x6f, 0x6f, 0x74, 0x65,
- 0x72, 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x68, 0x61, 0x6e,
- 0x64, 0x6c, 0x65, 0x72, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x61, 0x76, 0x44, 0x61, 0x72, 0x6b, 0x4d,
- 0x6f, 0x64, 0x65, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63,
- 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x6e, 0x61,
- 0x76, 0x2d, 0x64, 0x61, 0x72, 0x6b, 0x2d, 0x6d, 0x6f, 0x64, 0x65, 0x2d,
- 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x61, 0x76, 0x4c, 0x6f, 0x67, 0x6f,
- 0x75, 0x74, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x6e, 0x61, 0x76,
- 0x2d, 0x6c, 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x2d, 0x62, 0x74, 0x6e, 0x27,
- 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
- 0x6e, 0x61, 0x76, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64, 0x65, 0x42,
- 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x6e, 0x61, 0x76, 0x44, 0x61, 0x72, 0x6b, 0x4d, 0x6f, 0x64,
- 0x65, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e,
- 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63,
- 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x28, 0x65, 0x29, 0x20, 0x3d,
- 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x65, 0x2e, 0x73, 0x74, 0x6f, 0x70, 0x50, 0x72,
- 0x6f, 0x70, 0x61, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x44, 0x61, 0x72, 0x6b, 0x4d,
- 0x6f, 0x64, 0x65, 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20,
- 0x74, 0x65, 0x78, 0x74, 0x20, 0x61, 0x66, 0x74, 0x65, 0x72, 0x20, 0x74,
- 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65, 0x74, 0x54, 0x69, 0x6d,
- 0x65, 0x6f, 0x75, 0x74, 0x28, 0x28, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x6e, 0x61, 0x76, 0x44, 0x61, 0x72, 0x6b,
- 0x4d, 0x6f, 0x64, 0x65, 0x42, 0x74, 0x6e, 0x2e, 0x74, 0x65, 0x78, 0x74,
- 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x64, 0x6f,
- 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x62, 0x6f, 0x64, 0x79, 0x2e,
- 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x63, 0x6f,
- 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73, 0x28, 0x27, 0x64, 0x61, 0x72, 0x6b,
- 0x2d, 0x6d, 0x6f, 0x64, 0x65, 0x27, 0x29, 0x20, 0x3f, 0x20, 0x27, 0x4c,
- 0x49, 0x47, 0x48, 0x54, 0x20, 0x4d, 0x4f, 0x44, 0x45, 0x27, 0x20, 0x3a,
- 0x20, 0x27, 0x44, 0x41, 0x52, 0x4b, 0x20, 0x4d, 0x4f, 0x44, 0x45, 0x27,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x2c, 0x20, 0x31, 0x30, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6c,
- 0x6f, 0x73, 0x65, 0x53, 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76, 0x28, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x6e, 0x61, 0x76, 0x4c, 0x6f, 0x67, 0x6f,
- 0x75, 0x74, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x6e, 0x61, 0x76, 0x4c, 0x6f, 0x67, 0x6f,
- 0x75, 0x74, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65,
- 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27,
- 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x28, 0x65, 0x29, 0x20,
- 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x2e, 0x73, 0x74, 0x6f, 0x70, 0x50,
- 0x72, 0x6f, 0x70, 0x61, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x28, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x53, 0x69, 0x64, 0x65, 0x4e, 0x61, 0x76,
- 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x65, 0x74, 0x20, 0x69, 0x6e,
- 0x69, 0x74, 0x69, 0x61, 0x6c, 0x20, 0x70, 0x61, 0x67, 0x65, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x50, 0x61, 0x67,
- 0x65, 0x28, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x50, 0x61, 0x67,
- 0x65, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x3d, 0x3d,
- 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
- 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
- 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x0a, 0x2f, 0x2f, 0x20, 0x53, 0x51,
- 0x4c, 0x20, 0x51, 0x55, 0x45, 0x52, 0x59, 0x20, 0x46, 0x55, 0x4e, 0x43,
- 0x54, 0x49, 0x4f, 0x4e, 0x53, 0x0a, 0x2f, 0x2f, 0x20, 0x3d, 0x3d, 0x3d,
- 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
- 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
- 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x50, 0x72,
- 0x65, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x20, 0x71, 0x75, 0x65,
- 0x72, 0x79, 0x20, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x73,
- 0x0a, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x53, 0x51, 0x4c, 0x5f, 0x51,
- 0x55, 0x45, 0x52, 0x59, 0x5f, 0x54, 0x45, 0x4d, 0x50, 0x4c, 0x41, 0x54,
- 0x45, 0x53, 0x20, 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x72, 0x65, 0x63,
- 0x65, 0x6e, 0x74, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x3a, 0x20,
- 0x22, 0x53, 0x45, 0x4c, 0x45, 0x43, 0x54, 0x20, 0x69, 0x64, 0x2c, 0x20,
- 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2c, 0x20, 0x63, 0x72, 0x65, 0x61,
- 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x2c, 0x20, 0x6b, 0x69, 0x6e, 0x64,
- 0x2c, 0x20, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x28, 0x63, 0x6f, 0x6e,
- 0x74, 0x65, 0x6e, 0x74, 0x2c, 0x20, 0x31, 0x2c, 0x20, 0x35, 0x30, 0x29,
- 0x20, 0x61, 0x73, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20,
- 0x46, 0x52, 0x4f, 0x4d, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20,
- 0x4f, 0x52, 0x44, 0x45, 0x52, 0x20, 0x42, 0x59, 0x20, 0x63, 0x72, 0x65,
- 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x20, 0x44, 0x45, 0x53, 0x43,
- 0x20, 0x4c, 0x49, 0x4d, 0x49, 0x54, 0x20, 0x32, 0x30, 0x22, 0x2c, 0x0a,
- 0x20, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74,
- 0x73, 0x3a, 0x20, 0x22, 0x53, 0x45, 0x4c, 0x45, 0x43, 0x54, 0x20, 0x2a,
- 0x20, 0x46, 0x52, 0x4f, 0x4d, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f,
- 0x73, 0x74, 0x61, 0x74, 0x73, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x73, 0x75,
- 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3a,
- 0x20, 0x22, 0x53, 0x45, 0x4c, 0x45, 0x43, 0x54, 0x20, 0x2a, 0x20, 0x46,
- 0x52, 0x4f, 0x4d, 0x20, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x73,
- 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
- 0x5f, 0x6c, 0x6f, 0x67, 0x20, 0x4f, 0x52, 0x44, 0x45, 0x52, 0x20, 0x42,
- 0x59, 0x20, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74,
- 0x20, 0x44, 0x45, 0x53, 0x43, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x74, 0x6f,
- 0x70, 0x5f, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x3a, 0x20, 0x22,
- 0x53, 0x45, 0x4c, 0x45, 0x43, 0x54, 0x20, 0x2a, 0x20, 0x46, 0x52, 0x4f,
- 0x4d, 0x20, 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
- 0x73, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x65,
- 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x3a, 0x20,
- 0x22, 0x53, 0x45, 0x4c, 0x45, 0x43, 0x54, 0x20, 0x2a, 0x20, 0x46, 0x52,
- 0x4f, 0x4d, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x6b, 0x69, 0x6e,
- 0x64, 0x73, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x20, 0x4f, 0x52, 0x44, 0x45,
- 0x52, 0x20, 0x42, 0x59, 0x20, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x44,
- 0x45, 0x53, 0x43, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x74, 0x69, 0x6d, 0x65,
- 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73, 0x3a, 0x20, 0x22, 0x53, 0x45, 0x4c,
- 0x45, 0x43, 0x54, 0x20, 0x27, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x27, 0x20,
- 0x61, 0x73, 0x20, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x2c, 0x20, 0x43,
- 0x4f, 0x55, 0x4e, 0x54, 0x28, 0x2a, 0x29, 0x20, 0x61, 0x73, 0x20, 0x74,
- 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x2c,
- 0x20, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x28, 0x44, 0x49, 0x53, 0x54, 0x49,
- 0x4e, 0x43, 0x54, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29, 0x20,
- 0x61, 0x73, 0x20, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x5f, 0x70, 0x75,
- 0x62, 0x6b, 0x65, 0x79, 0x73, 0x2c, 0x20, 0x4d, 0x49, 0x4e, 0x28, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x29, 0x20, 0x61,
- 0x73, 0x20, 0x6f, 0x6c, 0x64, 0x65, 0x73, 0x74, 0x5f, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x2c, 0x20, 0x4d, 0x41, 0x58, 0x28, 0x63, 0x72, 0x65, 0x61,
- 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x29, 0x20, 0x61, 0x73, 0x20, 0x6e,
- 0x65, 0x77, 0x65, 0x73, 0x74, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20,
- 0x46, 0x52, 0x4f, 0x4d, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20,
- 0x55, 0x4e, 0x49, 0x4f, 0x4e, 0x20, 0x41, 0x4c, 0x4c, 0x20, 0x53, 0x45,
- 0x4c, 0x45, 0x43, 0x54, 0x20, 0x27, 0x32, 0x34, 0x68, 0x27, 0x20, 0x61,
- 0x73, 0x20, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x2c, 0x20, 0x43, 0x4f,
- 0x55, 0x4e, 0x54, 0x28, 0x2a, 0x29, 0x20, 0x61, 0x73, 0x20, 0x74, 0x6f,
- 0x74, 0x61, 0x6c, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x2c, 0x20,
- 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x28, 0x44, 0x49, 0x53, 0x54, 0x49, 0x4e,
- 0x43, 0x54, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29, 0x20, 0x61,
- 0x73, 0x20, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x5f, 0x70, 0x75, 0x62,
- 0x6b, 0x65, 0x79, 0x73, 0x2c, 0x20, 0x4d, 0x49, 0x4e, 0x28, 0x63, 0x72,
- 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x29, 0x20, 0x61, 0x73,
- 0x20, 0x6f, 0x6c, 0x64, 0x65, 0x73, 0x74, 0x5f, 0x65, 0x76, 0x65, 0x6e,
- 0x74, 0x2c, 0x20, 0x4d, 0x41, 0x58, 0x28, 0x63, 0x72, 0x65, 0x61, 0x74,
- 0x65, 0x64, 0x5f, 0x61, 0x74, 0x29, 0x20, 0x61, 0x73, 0x20, 0x6e, 0x65,
- 0x77, 0x65, 0x73, 0x74, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x46,
- 0x52, 0x4f, 0x4d, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x57,
- 0x48, 0x45, 0x52, 0x45, 0x20, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64,
- 0x5f, 0x61, 0x74, 0x20, 0x3e, 0x3d, 0x20, 0x28, 0x73, 0x74, 0x72, 0x66,
- 0x74, 0x69, 0x6d, 0x65, 0x28, 0x27, 0x25, 0x73, 0x27, 0x2c, 0x20, 0x27,
- 0x6e, 0x6f, 0x77, 0x27, 0x29, 0x20, 0x2d, 0x20, 0x38, 0x36, 0x34, 0x30,
- 0x30, 0x29, 0x20, 0x55, 0x4e, 0x49, 0x4f, 0x4e, 0x20, 0x41, 0x4c, 0x4c,
- 0x20, 0x53, 0x45, 0x4c, 0x45, 0x43, 0x54, 0x20, 0x27, 0x37, 0x64, 0x27,
- 0x20, 0x61, 0x73, 0x20, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x2c, 0x20,
- 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x28, 0x2a, 0x29, 0x20, 0x61, 0x73, 0x20,
- 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73,
- 0x2c, 0x20, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x28, 0x44, 0x49, 0x53, 0x54,
- 0x49, 0x4e, 0x43, 0x54, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29,
- 0x20, 0x61, 0x73, 0x20, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x5f, 0x70,
- 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x2c, 0x20, 0x4d, 0x49, 0x4e, 0x28,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x29, 0x20,
- 0x61, 0x73, 0x20, 0x6f, 0x6c, 0x64, 0x65, 0x73, 0x74, 0x5f, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x2c, 0x20, 0x4d, 0x41, 0x58, 0x28, 0x63, 0x72, 0x65,
- 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x29, 0x20, 0x61, 0x73, 0x20,
- 0x6e, 0x65, 0x77, 0x65, 0x73, 0x74, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74,
- 0x20, 0x46, 0x52, 0x4f, 0x4d, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73,
- 0x20, 0x57, 0x48, 0x45, 0x52, 0x45, 0x20, 0x63, 0x72, 0x65, 0x61, 0x74,
- 0x65, 0x64, 0x5f, 0x61, 0x74, 0x20, 0x3e, 0x3d, 0x20, 0x28, 0x73, 0x74,
- 0x72, 0x66, 0x74, 0x69, 0x6d, 0x65, 0x28, 0x27, 0x25, 0x73, 0x27, 0x2c,
- 0x20, 0x27, 0x6e, 0x6f, 0x77, 0x27, 0x29, 0x20, 0x2d, 0x20, 0x36, 0x30,
- 0x34, 0x38, 0x30, 0x30, 0x29, 0x20, 0x55, 0x4e, 0x49, 0x4f, 0x4e, 0x20,
- 0x41, 0x4c, 0x4c, 0x20, 0x53, 0x45, 0x4c, 0x45, 0x43, 0x54, 0x20, 0x27,
- 0x33, 0x30, 0x64, 0x27, 0x20, 0x61, 0x73, 0x20, 0x70, 0x65, 0x72, 0x69,
- 0x6f, 0x64, 0x2c, 0x20, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x28, 0x2a, 0x29,
- 0x20, 0x61, 0x73, 0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x73, 0x2c, 0x20, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x28,
- 0x44, 0x49, 0x53, 0x54, 0x49, 0x4e, 0x43, 0x54, 0x20, 0x70, 0x75, 0x62,
- 0x6b, 0x65, 0x79, 0x29, 0x20, 0x61, 0x73, 0x20, 0x75, 0x6e, 0x69, 0x71,
- 0x75, 0x65, 0x5f, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x2c, 0x20,
- 0x4d, 0x49, 0x4e, 0x28, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
- 0x61, 0x74, 0x29, 0x20, 0x61, 0x73, 0x20, 0x6f, 0x6c, 0x64, 0x65, 0x73,
- 0x74, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2c, 0x20, 0x4d, 0x41, 0x58,
- 0x28, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x29,
- 0x20, 0x61, 0x73, 0x20, 0x6e, 0x65, 0x77, 0x65, 0x73, 0x74, 0x5f, 0x65,
- 0x76, 0x65, 0x6e, 0x74, 0x20, 0x46, 0x52, 0x4f, 0x4d, 0x20, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x73, 0x20, 0x57, 0x48, 0x45, 0x52, 0x45, 0x20, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x20, 0x3e, 0x3d,
- 0x20, 0x28, 0x73, 0x74, 0x72, 0x66, 0x74, 0x69, 0x6d, 0x65, 0x28, 0x27,
- 0x25, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x6e, 0x6f, 0x77, 0x27, 0x29, 0x20,
- 0x2d, 0x20, 0x32, 0x35, 0x39, 0x32, 0x30, 0x30, 0x30, 0x29, 0x22, 0x0a,
- 0x7d, 0x3b, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x51, 0x75, 0x65, 0x72, 0x79,
- 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x20, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x28, 0x6c, 0x6f, 0x63,
- 0x61, 0x6c, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x29, 0x0a, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x51, 0x55, 0x45, 0x52, 0x59, 0x5f, 0x48,
- 0x49, 0x53, 0x54, 0x4f, 0x52, 0x59, 0x5f, 0x4b, 0x45, 0x59, 0x20, 0x3d,
- 0x20, 0x27, 0x63, 0x5f, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x5f, 0x73, 0x71,
- 0x6c, 0x5f, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x27, 0x3b, 0x0a,
- 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x4d, 0x41, 0x58, 0x5f, 0x48, 0x49,
- 0x53, 0x54, 0x4f, 0x52, 0x59, 0x5f, 0x49, 0x54, 0x45, 0x4d, 0x53, 0x20,
- 0x3d, 0x20, 0x32, 0x30, 0x3b, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x4c, 0x6f,
- 0x61, 0x64, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x68, 0x69, 0x73,
- 0x74, 0x6f, 0x72, 0x79, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x6c, 0x6f,
- 0x63, 0x61, 0x6c, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x0a, 0x66,
- 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x6f, 0x61, 0x64,
- 0x51, 0x75, 0x65, 0x72, 0x79, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
- 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x68,
- 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x20, 0x3d, 0x20, 0x6c, 0x6f, 0x63,
- 0x61, 0x6c, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x2e, 0x67, 0x65,
- 0x74, 0x49, 0x74, 0x65, 0x6d, 0x28, 0x51, 0x55, 0x45, 0x52, 0x59, 0x5f,
- 0x48, 0x49, 0x53, 0x54, 0x4f, 0x52, 0x59, 0x5f, 0x4b, 0x45, 0x59, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e,
- 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x20, 0x3f, 0x20, 0x4a,
- 0x53, 0x4f, 0x4e, 0x2e, 0x70, 0x61, 0x72, 0x73, 0x65, 0x28, 0x68, 0x69,
- 0x73, 0x74, 0x6f, 0x72, 0x79, 0x29, 0x20, 0x3a, 0x20, 0x5b, 0x5d, 0x3b,
- 0x0a, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28,
- 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27,
- 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x6c, 0x6f,
- 0x61, 0x64, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x68, 0x69, 0x73,
- 0x74, 0x6f, 0x72, 0x79, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x5b,
- 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f,
- 0x20, 0x53, 0x61, 0x76, 0x65, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20,
- 0x74, 0x6f, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x0a, 0x66,
- 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x61, 0x76, 0x65,
- 0x51, 0x75, 0x65, 0x72, 0x79, 0x54, 0x6f, 0x48, 0x69, 0x73, 0x74, 0x6f,
- 0x72, 0x79, 0x28, 0x71, 0x75, 0x65, 0x72, 0x79, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x71, 0x75, 0x65, 0x72, 0x79,
- 0x20, 0x7c, 0x7c, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x74, 0x72,
- 0x69, 0x6d, 0x28, 0x29, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20,
- 0x3d, 0x3d, 0x3d, 0x20, 0x30, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72,
- 0x6e, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x68, 0x69, 0x73, 0x74,
- 0x6f, 0x72, 0x79, 0x20, 0x3d, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x51, 0x75,
- 0x65, 0x72, 0x79, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x28, 0x29,
- 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x52, 0x65,
- 0x6d, 0x6f, 0x76, 0x65, 0x20, 0x64, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x65, 0x20, 0x69, 0x66, 0x20, 0x65, 0x78, 0x69, 0x73, 0x74, 0x73,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
- 0x20, 0x3d, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x2e, 0x66,
- 0x69, 0x6c, 0x74, 0x65, 0x72, 0x28, 0x71, 0x20, 0x3d, 0x3e, 0x20, 0x71,
- 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x29, 0x3b,
- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x41, 0x64, 0x64,
- 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x6e, 0x69, 0x6e,
- 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72,
- 0x79, 0x2e, 0x75, 0x6e, 0x73, 0x68, 0x69, 0x66, 0x74, 0x28, 0x71, 0x75,
- 0x65, 0x72, 0x79, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x20, 0x73, 0x69, 0x7a, 0x65,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x68, 0x69, 0x73,
- 0x74, 0x6f, 0x72, 0x79, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20,
- 0x3e, 0x20, 0x4d, 0x41, 0x58, 0x5f, 0x48, 0x49, 0x53, 0x54, 0x4f, 0x52,
- 0x59, 0x5f, 0x49, 0x54, 0x45, 0x4d, 0x53, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
- 0x20, 0x3d, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x2e, 0x73,
- 0x6c, 0x69, 0x63, 0x65, 0x28, 0x30, 0x2c, 0x20, 0x4d, 0x41, 0x58, 0x5f,
- 0x48, 0x49, 0x53, 0x54, 0x4f, 0x52, 0x59, 0x5f, 0x49, 0x54, 0x45, 0x4d,
- 0x53, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x74, 0x6f, 0x72,
- 0x61, 0x67, 0x65, 0x2e, 0x73, 0x65, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x28,
- 0x51, 0x55, 0x45, 0x52, 0x59, 0x5f, 0x48, 0x49, 0x53, 0x54, 0x4f, 0x52,
- 0x59, 0x5f, 0x4b, 0x45, 0x59, 0x2c, 0x20, 0x4a, 0x53, 0x4f, 0x4e, 0x2e,
- 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x69, 0x66, 0x79, 0x28, 0x68, 0x69,
- 0x73, 0x74, 0x6f, 0x72, 0x79, 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79,
- 0x44, 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e, 0x28, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x6f, 0x6c, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x46,
- 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x61, 0x76,
- 0x65, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x68, 0x69, 0x73, 0x74,
- 0x6f, 0x72, 0x79, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x43, 0x6c, 0x65,
- 0x61, 0x72, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x68, 0x69, 0x73,
- 0x74, 0x6f, 0x72, 0x79, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
- 0x6e, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79,
- 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x28, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72,
- 0x6d, 0x28, 0x27, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x20, 0x61, 0x6c, 0x6c,
- 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f,
- 0x72, 0x79, 0x3f, 0x27, 0x29, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67,
- 0x65, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x74, 0x65, 0x6d,
- 0x28, 0x51, 0x55, 0x45, 0x52, 0x59, 0x5f, 0x48, 0x49, 0x53, 0x54, 0x4f,
- 0x52, 0x59, 0x5f, 0x4b, 0x45, 0x59, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79,
- 0x44, 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e, 0x28, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x55, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x20, 0x64, 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77,
- 0x6e, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f,
- 0x72, 0x79, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
- 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x44,
- 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e, 0x28, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x68, 0x69, 0x73, 0x74,
- 0x6f, 0x72, 0x79, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x20, 0x3d, 0x20, 0x64,
- 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45,
- 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27,
- 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x2d, 0x67, 0x72, 0x6f, 0x75,
- 0x70, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21,
- 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x47, 0x72, 0x6f, 0x75, 0x70,
- 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x20, 0x65, 0x78,
- 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f,
- 0x72, 0x79, 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x0a, 0x20,
- 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x47, 0x72, 0x6f, 0x75,
- 0x70, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20,
- 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x74, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x20, 0x3d,
- 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x51, 0x75, 0x65, 0x72, 0x79, 0x48, 0x69,
- 0x73, 0x74, 0x6f, 0x72, 0x79, 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x69,
- 0x66, 0x20, 0x28, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x2e, 0x6c,
- 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x30, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f,
- 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74,
- 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x6f, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65,
- 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f,
- 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f,
- 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27, 0x28, 0x6e, 0x6f,
- 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x29, 0x27, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x64,
- 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x74, 0x72,
- 0x75, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x68, 0x69, 0x73, 0x74,
- 0x6f, 0x72, 0x79, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x61, 0x70, 0x70,
- 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28, 0x6f, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
- 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
- 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x2e, 0x66, 0x6f, 0x72,
- 0x45, 0x61, 0x63, 0x68, 0x28, 0x28, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2c,
- 0x20, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6f,
- 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45,
- 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x6f, 0x70, 0x74, 0x69,
- 0x6f, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d,
- 0x20, 0x60, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x24, 0x7b,
- 0x69, 0x6e, 0x64, 0x65, 0x78, 0x7d, 0x60, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x54, 0x72, 0x75, 0x6e, 0x63, 0x61, 0x74, 0x65,
- 0x20, 0x6c, 0x6f, 0x6e, 0x67, 0x20, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65,
- 0x73, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
- 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
- 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x51, 0x75, 0x65, 0x72, 0x79,
- 0x20, 0x3d, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x6c, 0x65, 0x6e,
- 0x67, 0x74, 0x68, 0x20, 0x3e, 0x20, 0x36, 0x30, 0x20, 0x3f, 0x20, 0x71,
- 0x75, 0x65, 0x72, 0x79, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69,
- 0x6e, 0x67, 0x28, 0x30, 0x2c, 0x20, 0x36, 0x30, 0x29, 0x20, 0x2b, 0x20,
- 0x27, 0x2e, 0x2e, 0x2e, 0x27, 0x20, 0x3a, 0x20, 0x71, 0x75, 0x65, 0x72,
- 0x79, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
- 0x74, 0x20, 0x3d, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x51,
- 0x75, 0x65, 0x72, 0x79, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x73, 0x65, 0x74,
- 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x3d, 0x20, 0x71, 0x75, 0x65,
- 0x72, 0x79, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x68, 0x69, 0x73, 0x74,
- 0x6f, 0x72, 0x79, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x61, 0x70, 0x70,
- 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28, 0x6f, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a,
- 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x61, 0x64, 0x20, 0x73,
- 0x65, 0x6c, 0x65, 0x63, 0x74, 0x65, 0x64, 0x20, 0x71, 0x75, 0x65, 0x72,
- 0x79, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x64, 0x72, 0x6f, 0x70, 0x64,
- 0x6f, 0x77, 0x6e, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x65,
- 0x64, 0x51, 0x75, 0x65, 0x72, 0x79, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x64, 0x72, 0x6f, 0x70, 0x64,
- 0x6f, 0x77, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x71, 0x75, 0x65, 0x72, 0x79,
- 0x2d, 0x64, 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e, 0x27, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73, 0x65, 0x6c,
- 0x65, 0x63, 0x74, 0x65, 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d,
- 0x20, 0x64, 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e, 0x2e, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
- 0x21, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x65, 0x64, 0x56, 0x61, 0x6c,
- 0x75, 0x65, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a,
- 0x0a, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79,
- 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x20, 0x69, 0x66, 0x20, 0x69, 0x74,
- 0x27, 0x73, 0x20, 0x61, 0x20, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74,
- 0x65, 0x0a, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x53, 0x51, 0x4c, 0x5f,
- 0x51, 0x55, 0x45, 0x52, 0x59, 0x5f, 0x54, 0x45, 0x4d, 0x50, 0x4c, 0x41,
- 0x54, 0x45, 0x53, 0x5b, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x65, 0x64,
- 0x56, 0x61, 0x6c, 0x75, 0x65, 0x5d, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x3d, 0x20, 0x53, 0x51,
- 0x4c, 0x5f, 0x51, 0x55, 0x45, 0x52, 0x59, 0x5f, 0x54, 0x45, 0x4d, 0x50,
- 0x4c, 0x41, 0x54, 0x45, 0x53, 0x5b, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74,
- 0x65, 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x5d, 0x3b, 0x0a, 0x20, 0x20,
- 0x7d, 0x0a, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x68, 0x65, 0x63, 0x6b,
- 0x20, 0x69, 0x66, 0x20, 0x69, 0x74, 0x27, 0x73, 0x20, 0x66, 0x72, 0x6f,
- 0x6d, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x0a, 0x20, 0x20,
- 0x65, 0x6c, 0x73, 0x65, 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x65, 0x6c,
- 0x65, 0x63, 0x74, 0x65, 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x73,
- 0x74, 0x61, 0x72, 0x74, 0x73, 0x57, 0x69, 0x74, 0x68, 0x28, 0x27, 0x68,
- 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x27, 0x29, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73,
- 0x65, 0x6c, 0x65, 0x63, 0x74, 0x65, 0x64, 0x4f, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e,
- 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5b, 0x64, 0x72, 0x6f,
- 0x70, 0x64, 0x6f, 0x77, 0x6e, 0x2e, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74,
- 0x65, 0x64, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x5d, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x3d, 0x20, 0x73, 0x65,
- 0x6c, 0x65, 0x63, 0x74, 0x65, 0x64, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
- 0x2e, 0x64, 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, 0x2e, 0x71, 0x75, 0x65,
- 0x72, 0x79, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x69,
- 0x66, 0x20, 0x28, 0x71, 0x75, 0x65, 0x72, 0x79, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42,
- 0x79, 0x49, 0x64, 0x28, 0x27, 0x73, 0x71, 0x6c, 0x2d, 0x69, 0x6e, 0x70,
- 0x75, 0x74, 0x27, 0x29, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d,
- 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x0a,
- 0x0a, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x52, 0x65, 0x73, 0x65, 0x74, 0x20,
- 0x64, 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e, 0x20, 0x74, 0x6f, 0x20,
- 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x0a,
- 0x20, 0x20, 0x64, 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e, 0x2e, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x7d,
- 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x20, 0x74,
- 0x68, 0x65, 0x20, 0x53, 0x51, 0x4c, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79,
- 0x20, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x53, 0x71, 0x6c,
- 0x51, 0x75, 0x65, 0x72, 0x79, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74,
- 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28,
- 0x27, 0x73, 0x71, 0x6c, 0x2d, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x27, 0x29,
- 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b,
- 0x0a, 0x20, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79,
- 0x49, 0x64, 0x28, 0x27, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2d, 0x69, 0x6e,
- 0x66, 0x6f, 0x27, 0x29, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54,
- 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x64,
- 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45,
- 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27,
- 0x71, 0x75, 0x65, 0x72, 0x79, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x27,
- 0x29, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20,
- 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20,
- 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x20, 0x53, 0x51, 0x4c, 0x20,
- 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x76, 0x69, 0x61, 0x20, 0x61, 0x64,
- 0x6d, 0x69, 0x6e, 0x20, 0x41, 0x50, 0x49, 0x0a, 0x61, 0x73, 0x79, 0x6e,
- 0x63, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x65,
- 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x53, 0x71, 0x6c, 0x51, 0x75, 0x65,
- 0x72, 0x79, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x74, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x3d, 0x20, 0x64,
- 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45,
- 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27,
- 0x73, 0x71, 0x6c, 0x2d, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x27, 0x29, 0x2e,
- 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x21, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x74, 0x72, 0x69, 0x6d,
- 0x28, 0x29, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f,
- 0x67, 0x28, 0x27, 0x50, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x20, 0x65, 0x6e,
- 0x74, 0x65, 0x72, 0x20, 0x61, 0x20, 0x53, 0x51, 0x4c, 0x20, 0x71, 0x75,
- 0x65, 0x72, 0x79, 0x27, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52,
- 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x64, 0x6f, 0x63, 0x75,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x71, 0x75, 0x65,
- 0x72, 0x79, 0x2d, 0x69, 0x6e, 0x66, 0x6f, 0x27, 0x29, 0x2e, 0x69, 0x6e,
- 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x3c,
- 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x2d, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
- 0x22, 0x3e, 0xe2, 0x9d, 0x8c, 0x20, 0x50, 0x6c, 0x65, 0x61, 0x73, 0x65,
- 0x20, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x61, 0x20, 0x53, 0x51, 0x4c,
- 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e,
- 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72,
- 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x74, 0x72,
- 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53,
- 0x68, 0x6f, 0x77, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x20,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x64, 0x6f,
- 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x71,
- 0x75, 0x65, 0x72, 0x79, 0x2d, 0x69, 0x6e, 0x66, 0x6f, 0x27, 0x29, 0x2e,
- 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20,
- 0x27, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
- 0x22, 0x6c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x22, 0x3e, 0x45, 0x78,
- 0x65, 0x63, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x71, 0x75, 0x65, 0x72,
- 0x79, 0x2e, 0x2e, 0x2e, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x27, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2d,
- 0x74, 0x61, 0x62, 0x6c, 0x65, 0x27, 0x29, 0x2e, 0x69, 0x6e, 0x6e, 0x65,
- 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x61, 0x76, 0x65,
- 0x20, 0x74, 0x6f, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x20,
- 0x28, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x20, 0x65, 0x78, 0x65, 0x63,
- 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x20, 0x73, 0x6f, 0x20, 0x69, 0x74,
- 0x27, 0x73, 0x20, 0x73, 0x61, 0x76, 0x65, 0x64, 0x20, 0x65, 0x76, 0x65,
- 0x6e, 0x20, 0x69, 0x66, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x66,
- 0x61, 0x69, 0x6c, 0x73, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x61,
- 0x76, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x54, 0x6f, 0x48, 0x69, 0x73,
- 0x74, 0x6f, 0x72, 0x79, 0x28, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x74,
- 0x72, 0x69, 0x6d, 0x28, 0x29, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x65, 0x6e, 0x64, 0x20, 0x71, 0x75, 0x65,
- 0x72, 0x79, 0x20, 0x61, 0x73, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x32,
- 0x33, 0x34, 0x35, 0x36, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x63,
- 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
- 0x20, 0x3d, 0x20, 0x5b, 0x22, 0x73, 0x71, 0x6c, 0x5f, 0x71, 0x75, 0x65,
- 0x72, 0x79, 0x22, 0x2c, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5d, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20,
- 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x73, 0x65, 0x6e, 0x64,
- 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
- 0x28, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x29, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x6f, 0x72, 0x65,
- 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x69, 0x6e, 0x66, 0x6f, 0x20,
- 0x66, 0x6f, 0x72, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x72, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x61, 0x72, 0x72, 0x69, 0x76, 0x65,
- 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x26,
- 0x26, 0x20, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65,
- 0x6e, 0x74, 0x2e, 0x69, 0x64, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x71,
- 0x6c, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x2e, 0x73, 0x65, 0x74,
- 0x28, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e,
- 0x74, 0x2e, 0x69, 0x64, 0x2c, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x3a, 0x20, 0x71,
- 0x75, 0x65, 0x72, 0x79, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x3a,
- 0x20, 0x44, 0x61, 0x74, 0x65, 0x2e, 0x6e, 0x6f, 0x77, 0x28, 0x29, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x4e, 0x6f, 0x74, 0x65, 0x3a, 0x20, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x62, 0x65, 0x20, 0x68,
- 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x74, 0x68,
- 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x6c, 0x69, 0x73, 0x74,
- 0x65, 0x6e, 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x63,
- 0x61, 0x6c, 0x6c, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x53,
- 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c,
- 0x74, 0x73, 0x28, 0x29, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x72, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x61, 0x72, 0x72, 0x69, 0x76,
- 0x65, 0x73, 0x0a, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68,
- 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x46, 0x61, 0x69, 0x6c,
- 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74,
- 0x65, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x3a, 0x20, 0x27, 0x20, 0x2b,
- 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61,
- 0x67, 0x65, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x71, 0x75, 0x65, 0x72, 0x79,
- 0x2d, 0x69, 0x6e, 0x66, 0x6f, 0x27, 0x29, 0x2e, 0x69, 0x6e, 0x6e, 0x65,
- 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x3c, 0x64, 0x69,
- 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x2d, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x3e,
- 0xe2, 0x9d, 0x8c, 0x20, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74,
- 0x6f, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x20, 0x71, 0x75,
- 0x65, 0x72, 0x79, 0x3a, 0x20, 0x27, 0x20, 0x2b, 0x20, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x2b,
- 0x20, 0x27, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x27, 0x3b, 0x0a, 0x20,
- 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x48, 0x65, 0x6c,
- 0x70, 0x65, 0x72, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x74, 0x6f, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x20, 0x61, 0x64, 0x6d,
- 0x69, 0x6e, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x73, 0x20,
- 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x32, 0x33, 0x34, 0x35, 0x36, 0x20,
- 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x29, 0x0a, 0x61, 0x73, 0x79, 0x6e,
- 0x63, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73,
- 0x65, 0x6e, 0x64, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x43, 0x6f, 0x6d, 0x6d,
- 0x61, 0x6e, 0x64, 0x28, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x41,
- 0x72, 0x72, 0x61, 0x79, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x21, 0x69, 0x73, 0x4c, 0x6f, 0x67, 0x67, 0x65, 0x64, 0x49,
- 0x6e, 0x20, 0x7c, 0x7c, 0x20, 0x21, 0x75, 0x73, 0x65, 0x72, 0x50, 0x75,
- 0x62, 0x6b, 0x65, 0x79, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x28, 0x27, 0x4d, 0x75, 0x73, 0x74, 0x20, 0x62, 0x65,
- 0x20, 0x6c, 0x6f, 0x67, 0x67, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x20, 0x74,
- 0x6f, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e,
- 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x73, 0x27, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
- 0x21, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x29, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20,
- 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x53,
- 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x63, 0x6f,
- 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6e, 0x6f, 0x74,
- 0x20, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x74, 0x72, 0x79,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60,
- 0x53, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x64, 0x6d, 0x69,
- 0x6e, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x3a, 0x20, 0x24,
- 0x7b, 0x4a, 0x53, 0x4f, 0x4e, 0x2e, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
- 0x69, 0x66, 0x79, 0x28, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x41,
- 0x72, 0x72, 0x61, 0x79, 0x29, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x49, 0x4e,
- 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x45, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x20, 0x74, 0x68,
- 0x65, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x61, 0x72,
- 0x72, 0x61, 0x79, 0x20, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6c, 0x79,
- 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x4e, 0x49, 0x50, 0x2d, 0x34,
- 0x34, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
- 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69,
- 0x74, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x46, 0x6f, 0x72,
- 0x52, 0x65, 0x6c, 0x61, 0x79, 0x28, 0x4a, 0x53, 0x4f, 0x4e, 0x2e, 0x73,
- 0x74, 0x72, 0x69, 0x6e, 0x67, 0x69, 0x66, 0x79, 0x28, 0x63, 0x6f, 0x6d,
- 0x6d, 0x61, 0x6e, 0x64, 0x41, 0x72, 0x72, 0x61, 0x79, 0x29, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x65, 0x6e,
- 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x74,
- 0x65, 0x6e, 0x74, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64,
- 0x20, 0x74, 0x6f, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x20,
- 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x61, 0x72, 0x72, 0x61,
- 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74,
- 0x65, 0x20, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x20, 0x6b, 0x69, 0x6e,
- 0x64, 0x20, 0x32, 0x33, 0x34, 0x35, 0x36, 0x20, 0x61, 0x64, 0x6d, 0x69,
- 0x6e, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x45,
- 0x76, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x3a, 0x20, 0x32, 0x33, 0x34,
- 0x35, 0x36, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x75,
- 0x62, 0x6b, 0x65, 0x79, 0x3a, 0x20, 0x75, 0x73, 0x65, 0x72, 0x50, 0x75,
- 0x62, 0x6b, 0x65, 0x79, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x3a, 0x20,
- 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f, 0x72, 0x28, 0x44,
- 0x61, 0x74, 0x65, 0x2e, 0x6e, 0x6f, 0x77, 0x28, 0x29, 0x20, 0x2f, 0x20,
- 0x31, 0x30, 0x30, 0x30, 0x29, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x74, 0x61, 0x67, 0x73, 0x3a, 0x20, 0x5b, 0x5b, 0x22, 0x70, 0x22,
- 0x2c, 0x20, 0x67, 0x65, 0x74, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75,
- 0x62, 0x6b, 0x65, 0x79, 0x28, 0x29, 0x5d, 0x5d, 0x2c, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x3a,
- 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x63,
- 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x69,
- 0x67, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73,
- 0x69, 0x67, 0x6e, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x3d,
- 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f,
- 0x77, 0x2e, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2e, 0x73, 0x69, 0x67, 0x6e,
- 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x45,
- 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69,
- 0x66, 0x20, 0x28, 0x21, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x45, 0x76,
- 0x65, 0x6e, 0x74, 0x20, 0x7c, 0x7c, 0x20, 0x21, 0x73, 0x69, 0x67, 0x6e,
- 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x69, 0x67, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72,
- 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x28, 0x27, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x73, 0x69, 0x67, 0x6e,
- 0x69, 0x6e, 0x67, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x20,
- 0x76, 0x69, 0x61, 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f,
- 0x6f, 0x6c, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x64, 0x65, 0x74, 0x61,
- 0x69, 0x6c, 0x65, 0x64, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x64,
- 0x69, 0x61, 0x67, 0x6e, 0x6f, 0x73, 0x74, 0x69, 0x63, 0x73, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x75, 0x72, 0x6c,
- 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x43, 0x6f, 0x6e, 0x6e,
- 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x72, 0x6c, 0x2e, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x75,
- 0x62, 0x6c, 0x69, 0x73, 0x68, 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65,
- 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f,
- 0x6c, 0x2e, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x28, 0x5b, 0x75,
- 0x72, 0x6c, 0x5d, 0x2c, 0x20, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x45,
- 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x55, 0x73, 0x65, 0x20, 0x50, 0x72, 0x6f, 0x6d, 0x69,
- 0x73, 0x65, 0x2e, 0x61, 0x6c, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x6c, 0x65,
- 0x64, 0x20, 0x74, 0x6f, 0x20, 0x63, 0x61, 0x70, 0x74, 0x75, 0x72, 0x65,
- 0x20, 0x70, 0x65, 0x72, 0x2d, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6f,
- 0x75, 0x74, 0x63, 0x6f, 0x6d, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
- 0x73, 0x20, 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x50, 0x72,
- 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x2e, 0x61, 0x6c, 0x6c, 0x53, 0x65, 0x74,
- 0x74, 0x6c, 0x65, 0x64, 0x28, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68,
- 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x73, 0x29, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x67, 0x20, 0x64,
- 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x70, 0x75, 0x62, 0x6c,
- 0x69, 0x73, 0x68, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x20,
- 0x66, 0x6f, 0x72, 0x20, 0x64, 0x69, 0x61, 0x67, 0x6e, 0x6f, 0x73, 0x74,
- 0x69, 0x63, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20,
- 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74,
- 0x20, 0x3d, 0x20, 0x30, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
- 0x73, 0x75, 0x6c, 0x74, 0x73, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63,
- 0x68, 0x28, 0x28, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x2c, 0x20, 0x69,
- 0x6e, 0x64, 0x65, 0x78, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x73,
- 0x75, 0x6c, 0x74, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x20, 0x3d,
- 0x3d, 0x3d, 0x20, 0x27, 0x66, 0x75, 0x6c, 0x66, 0x69, 0x6c, 0x6c, 0x65,
- 0x64, 0x27, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x43, 0x6f, 0x75,
- 0x6e, 0x74, 0x2b, 0x2b, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xe2, 0x9c, 0x85, 0x20, 0x41,
- 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
- 0x20, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x64, 0x20, 0x73,
- 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x20,
- 0x74, 0x6f, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x24, 0x7b, 0x69,
- 0x6e, 0x64, 0x65, 0x78, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46,
- 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xe2, 0x9d, 0x8c,
- 0x20, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61,
- 0x6e, 0x64, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x6f, 0x6e,
- 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x24, 0x7b, 0x69, 0x6e, 0x64,
- 0x65, 0x78, 0x7d, 0x3a, 0x20, 0x24, 0x7b, 0x72, 0x65, 0x73, 0x75, 0x6c,
- 0x74, 0x2e, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x3f, 0x2e, 0x6d, 0x65,
- 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x7c, 0x7c, 0x20, 0x72, 0x65, 0x73,
- 0x75, 0x6c, 0x74, 0x2e, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x7d, 0x60,
- 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x43, 0x6f, 0x75, 0x6e,
- 0x74, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x20,
- 0x3d, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x2e, 0x6d, 0x61,
- 0x70, 0x28, 0x28, 0x72, 0x2c, 0x20, 0x69, 0x29, 0x20, 0x3d, 0x3e, 0x20,
- 0x60, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x24, 0x7b, 0x69, 0x7d, 0x3a,
- 0x20, 0x24, 0x7b, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x3f,
- 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x7c, 0x7c, 0x20,
- 0x72, 0x2e, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x7d, 0x60, 0x29, 0x2e,
- 0x6a, 0x6f, 0x69, 0x6e, 0x28, 0x27, 0x3b, 0x20, 0x27, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20,
- 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x60, 0x41,
- 0x6c, 0x6c, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x20, 0x72, 0x65,
- 0x6a, 0x65, 0x63, 0x74, 0x65, 0x64, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e,
- 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x2e, 0x20, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x3a,
- 0x20, 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61,
- 0x69, 0x6c, 0x73, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27,
- 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e,
- 0x64, 0x20, 0x73, 0x65, 0x6e, 0x74, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65,
- 0x73, 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x27, 0x2c, 0x20, 0x27, 0x49,
- 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72,
- 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64,
- 0x45, 0x76, 0x65, 0x6e, 0x74, 0x3b, 0x20, 0x2f, 0x2f, 0x20, 0x52, 0x65,
- 0x74, 0x75, 0x72, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x69, 0x67,
- 0x6e, 0x65, 0x64, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x66, 0x6f,
- 0x72, 0x20, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x20, 0x49, 0x44,
- 0x20, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x0a, 0x0a, 0x20,
- 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c,
- 0x6f, 0x67, 0x28, 0x60, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74,
- 0x6f, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e,
- 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x3a, 0x20, 0x24, 0x7b,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
- 0x65, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77,
- 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x0a,
- 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61,
- 0x79, 0x20, 0x53, 0x51, 0x4c, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20,
- 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x0a, 0x66, 0x75, 0x6e, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
- 0x53, 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x75,
- 0x6c, 0x74, 0x73, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
- 0x69, 0x6e, 0x66, 0x6f, 0x44, 0x69, 0x76, 0x20, 0x3d, 0x20, 0x64, 0x6f,
- 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x71,
- 0x75, 0x65, 0x72, 0x79, 0x2d, 0x69, 0x6e, 0x66, 0x6f, 0x27, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x44, 0x69, 0x76, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x71, 0x75, 0x65,
- 0x72, 0x79, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x27, 0x29, 0x3b, 0x0a,
- 0x0a, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x20, 0x3d,
- 0x3d, 0x3d, 0x20, 0x27, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x27, 0x20, 0x7c,
- 0x7c, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x6e, 0x66, 0x6f, 0x44, 0x69, 0x76, 0x2e, 0x69, 0x6e, 0x6e, 0x65,
- 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x60, 0x3c, 0x64, 0x69,
- 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x2d, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x3e,
- 0xe2, 0x9d, 0x8c, 0x20, 0x24, 0x7b, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x7c, 0x7c, 0x20,
- 0x27, 0x51, 0x75, 0x65, 0x72, 0x79, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65,
- 0x64, 0x27, 0x7d, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x60, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x44, 0x69, 0x76,
- 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d,
- 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74,
- 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x53, 0x68, 0x6f, 0x77, 0x20, 0x71, 0x75, 0x65, 0x72,
- 0x79, 0x20, 0x69, 0x6e, 0x66, 0x6f, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20,
- 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x20, 0x49, 0x44, 0x20, 0x66,
- 0x6f, 0x72, 0x20, 0x64, 0x65, 0x62, 0x75, 0x67, 0x67, 0x69, 0x6e, 0x67,
- 0x0a, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x6f, 0x77,
- 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x72, 0x6f, 0x77, 0x5f, 0x63, 0x6f, 0x75,
- 0x6e, 0x74, 0x20, 0x7c, 0x7c, 0x20, 0x30, 0x3b, 0x0a, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x65, 0x78, 0x65, 0x63, 0x54, 0x69, 0x6d,
- 0x65, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x2e, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74,
- 0x69, 0x6d, 0x65, 0x5f, 0x6d, 0x73, 0x20, 0x7c, 0x7c, 0x20, 0x30, 0x3b,
- 0x0a, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x5f, 0x69, 0x64, 0x20, 0x3f, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f,
- 0x69, 0x64, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
- 0x28, 0x30, 0x2c, 0x20, 0x38, 0x29, 0x20, 0x2b, 0x20, 0x27, 0x2e, 0x2e,
- 0x2e, 0x27, 0x20, 0x3a, 0x20, 0x27, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77,
- 0x6e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x69, 0x6e, 0x66, 0x6f, 0x44, 0x69,
- 0x76, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20,
- 0x3d, 0x20, 0x60, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76,
- 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x71, 0x75, 0x65, 0x72,
- 0x79, 0x2d, 0x69, 0x6e, 0x66, 0x6f, 0x2d, 0x73, 0x75, 0x63, 0x63, 0x65,
- 0x73, 0x73, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x73, 0x70, 0x61, 0x6e, 0x3e, 0xe2, 0x9c, 0x85, 0x20, 0x51, 0x75, 0x65,
- 0x72, 0x79, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x64, 0x20,
- 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79,
- 0x3c, 0x2f, 0x73, 0x70, 0x61, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x3c, 0x73, 0x70, 0x61, 0x6e, 0x3e, 0x52, 0x6f, 0x77, 0x73,
- 0x3a, 0x20, 0x24, 0x7b, 0x72, 0x6f, 0x77, 0x43, 0x6f, 0x75, 0x6e, 0x74,
- 0x7d, 0x3c, 0x2f, 0x73, 0x70, 0x61, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x73, 0x70, 0x61, 0x6e, 0x3e, 0x45, 0x78, 0x65,
- 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x54, 0x69, 0x6d, 0x65, 0x3a,
- 0x20, 0x24, 0x7b, 0x65, 0x78, 0x65, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x7d,
- 0x6d, 0x73, 0x3c, 0x2f, 0x73, 0x70, 0x61, 0x6e, 0x3e, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x70, 0x61, 0x6e, 0x20, 0x63, 0x6c,
- 0x61, 0x73, 0x73, 0x3d, 0x22, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x2d, 0x69, 0x64, 0x22, 0x20, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3d, 0x22,
- 0x24, 0x7b, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x72,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x20, 0x7c, 0x7c,
- 0x20, 0x27, 0x27, 0x7d, 0x22, 0x3e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x3a, 0x20, 0x24, 0x7b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x49, 0x64, 0x7d, 0x3c, 0x2f, 0x73, 0x70, 0x61, 0x6e, 0x3e, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20,
- 0x60, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x42, 0x75, 0x69,
- 0x6c, 0x64, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x20, 0x74,
- 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x72, 0x6f, 0x77, 0x73,
- 0x20, 0x26, 0x26, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x2e, 0x72, 0x6f, 0x77, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68,
- 0x20, 0x3e, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x6c, 0x65, 0x74, 0x20, 0x68, 0x74, 0x6d, 0x6c, 0x20, 0x3d, 0x20, 0x27,
- 0x3c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
- 0x3d, 0x22, 0x73, 0x71, 0x6c, 0x2d, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
- 0x73, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x3c, 0x74, 0x68,
- 0x65, 0x61, 0x64, 0x3e, 0x3c, 0x74, 0x72, 0x3e, 0x27, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e,
- 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x2e, 0x66, 0x6f, 0x72, 0x45,
- 0x61, 0x63, 0x68, 0x28, 0x63, 0x6f, 0x6c, 0x20, 0x3d, 0x3e, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x74, 0x6d, 0x6c, 0x20,
- 0x2b, 0x3d, 0x20, 0x60, 0x3c, 0x74, 0x68, 0x3e, 0x24, 0x7b, 0x65, 0x73,
- 0x63, 0x61, 0x70, 0x65, 0x48, 0x74, 0x6d, 0x6c, 0x28, 0x63, 0x6f, 0x6c,
- 0x29, 0x7d, 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x60, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x68, 0x74,
- 0x6d, 0x6c, 0x20, 0x2b, 0x3d, 0x20, 0x27, 0x3c, 0x2f, 0x74, 0x72, 0x3e,
- 0x3c, 0x2f, 0x74, 0x68, 0x65, 0x61, 0x64, 0x3e, 0x3c, 0x74, 0x62, 0x6f,
- 0x64, 0x79, 0x3e, 0x27, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x72, 0x6f, 0x77, 0x73,
- 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x72, 0x6f, 0x77,
- 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x68, 0x74, 0x6d, 0x6c, 0x20, 0x2b, 0x3d, 0x20, 0x27, 0x3c, 0x74, 0x72,
- 0x3e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x6f,
- 0x77, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x63, 0x65,
- 0x6c, 0x6c, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x65,
- 0x6c, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x63, 0x65,
- 0x6c, 0x6c, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x6e, 0x75, 0x6c, 0x6c, 0x20,
- 0x3f, 0x20, 0x27, 0x3c, 0x65, 0x6d, 0x3e, 0x4e, 0x55, 0x4c, 0x4c, 0x3c,
- 0x2f, 0x65, 0x6d, 0x3e, 0x27, 0x20, 0x3a, 0x20, 0x65, 0x73, 0x63, 0x61,
- 0x70, 0x65, 0x48, 0x74, 0x6d, 0x6c, 0x28, 0x53, 0x74, 0x72, 0x69, 0x6e,
- 0x67, 0x28, 0x63, 0x65, 0x6c, 0x6c, 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x74, 0x6d, 0x6c, 0x20, 0x2b,
- 0x3d, 0x20, 0x60, 0x3c, 0x74, 0x64, 0x3e, 0x24, 0x7b, 0x63, 0x65, 0x6c,
- 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e,
- 0x60, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x74, 0x6d, 0x6c, 0x20,
- 0x2b, 0x3d, 0x20, 0x27, 0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x27, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x68, 0x74, 0x6d, 0x6c, 0x20, 0x2b, 0x3d, 0x20, 0x27, 0x3c, 0x2f,
- 0x74, 0x62, 0x6f, 0x64, 0x79, 0x3e, 0x3c, 0x2f, 0x74, 0x61, 0x62, 0x6c,
- 0x65, 0x3e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x62,
- 0x6c, 0x65, 0x44, 0x69, 0x76, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48,
- 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x68, 0x74, 0x6d, 0x6c, 0x3b, 0x0a,
- 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x44, 0x69, 0x76, 0x2e,
- 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20,
- 0x27, 0x3c, 0x70, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x6e,
- 0x6f, 0x2d, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x3e, 0x4e,
- 0x6f, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x20, 0x72, 0x65,
- 0x74, 0x75, 0x72, 0x6e, 0x65, 0x64, 0x3c, 0x2f, 0x70, 0x3e, 0x27, 0x3b,
- 0x0a, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x48,
- 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x53, 0x51, 0x4c, 0x20, 0x71, 0x75,
- 0x65, 0x72, 0x79, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x20, 0x28, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20,
- 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e,
- 0x65, 0x72, 0x29, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x53, 0x71, 0x6c, 0x51, 0x75,
- 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x28,
- 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
- 0x67, 0x28, 0x27, 0x3d, 0x3d, 0x3d, 0x20, 0x48, 0x41, 0x4e, 0x44, 0x4c,
- 0x49, 0x4e, 0x47, 0x20, 0x53, 0x51, 0x4c, 0x20, 0x51, 0x55, 0x45, 0x52,
- 0x59, 0x20, 0x52, 0x45, 0x53, 0x50, 0x4f, 0x4e, 0x53, 0x45, 0x20, 0x3d,
- 0x3d, 0x3d, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x3a, 0x27, 0x2c, 0x20, 0x72, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x41, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x20, 0x64, 0x69, 0x73,
- 0x70, 0x6c, 0x61, 0x79, 0x20, 0x53, 0x51, 0x4c, 0x20, 0x71, 0x75, 0x65,
- 0x72, 0x79, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x20, 0x77,
- 0x68, 0x65, 0x6e, 0x20, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64,
- 0x0a, 0x20, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x53, 0x71,
- 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74,
- 0x73, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x29, 0x3b,
- 0x0a, 0x0a, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x6c, 0x65, 0x61, 0x6e,
- 0x20, 0x75, 0x70, 0x20, 0x61, 0x6e, 0x79, 0x20, 0x70, 0x65, 0x6e, 0x64,
- 0x69, 0x6e, 0x67, 0x20, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x0a,
- 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x69,
- 0x64, 0x20, 0x26, 0x26, 0x20, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67,
- 0x53, 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x2e, 0x68,
- 0x61, 0x73, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e,
- 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x29, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x70, 0x65, 0x6e, 0x64, 0x69,
- 0x6e, 0x67, 0x53, 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73,
- 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x28, 0x72, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x5f, 0x69, 0x64, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a,
- 0x0a, 0x2f, 0x2f, 0x20, 0x48, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x20, 0x66,
- 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x65,
- 0x73, 0x63, 0x61, 0x70, 0x65, 0x20, 0x48, 0x54, 0x4d, 0x4c, 0x0a, 0x66,
- 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x65, 0x73, 0x63, 0x61,
- 0x70, 0x65, 0x48, 0x74, 0x6d, 0x6c, 0x28, 0x74, 0x65, 0x78, 0x74, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x64,
- 0x69, 0x76, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6c, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x28, 0x27, 0x64, 0x69, 0x76, 0x27, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x64, 0x69, 0x76, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f,
- 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x74, 0x65, 0x78, 0x74,
- 0x3b, 0x0a, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x64,
- 0x69, 0x76, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c,
- 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x69, 0x74,
- 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79,
- 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x20, 0x6f, 0x6e, 0x20,
- 0x70, 0x61, 0x67, 0x65, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x0a, 0x64, 0x6f,
- 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76,
- 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28,
- 0x27, 0x44, 0x4f, 0x4d, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4c,
- 0x6f, 0x61, 0x64, 0x65, 0x64, 0x27, 0x2c, 0x20, 0x66, 0x75, 0x6e, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x75,
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x44, 0x72,
- 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e, 0x28, 0x29, 0x3b, 0x0a, 0x7d, 0x29,
- 0x3b, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x52, 0x45, 0x4c, 0x41, 0x59, 0x20,
- 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x20, 0x61, 0x6e, 0x69, 0x6d, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
- 0x6e, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73,
- 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x41, 0x6e, 0x69,
- 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6c, 0x65, 0x74,
- 0x74, 0x65, 0x72, 0x73, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x6c,
- 0x65, 0x63, 0x74, 0x6f, 0x72, 0x41, 0x6c, 0x6c, 0x28, 0x27, 0x2e, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x27,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x63,
- 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x20,
- 0x3d, 0x20, 0x30, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x66, 0x75,
- 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x61, 0x6e, 0x69, 0x6d, 0x61,
- 0x74, 0x65, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x28, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x20, 0x75, 0x6e, 0x64, 0x65, 0x72,
- 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x61, 0x6c,
- 0x6c, 0x20, 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x73, 0x20, 0x66, 0x69,
- 0x72, 0x73, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x73, 0x2e, 0x66, 0x6f, 0x72, 0x45,
- 0x61, 0x63, 0x68, 0x28, 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x20, 0x3d,
- 0x3e, 0x20, 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x2e, 0x63, 0x6c, 0x61,
- 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76,
- 0x65, 0x28, 0x27, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65,
- 0x64, 0x27, 0x29, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x41, 0x64, 0x64, 0x20, 0x75, 0x6e,
- 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x63,
- 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x20, 0x6c, 0x65, 0x74, 0x74, 0x65,
- 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x73, 0x5b, 0x63, 0x75,
- 0x72, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x5d, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x73, 0x5b, 0x63,
- 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x5d,
- 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x61,
- 0x64, 0x64, 0x28, 0x27, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e,
- 0x65, 0x64, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x4d, 0x6f, 0x76, 0x65, 0x20, 0x74, 0x6f, 0x20,
- 0x6e, 0x65, 0x78, 0x74, 0x20, 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x75, 0x72, 0x72,
- 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x2b, 0x2b, 0x3b, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x49, 0x66, 0x20, 0x77, 0x65, 0x27, 0x76, 0x65, 0x20, 0x67, 0x6f, 0x6e,
- 0x65, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x20, 0x61, 0x6c,
- 0x6c, 0x20, 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x73, 0x2c, 0x20, 0x72,
- 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x20, 0x61, 0x6c, 0x6c, 0x20, 0x75, 0x6e,
- 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x61, 0x6e, 0x64,
- 0x20, 0x77, 0x61, 0x69, 0x74, 0x20, 0x34, 0x30, 0x30, 0x30, 0x6d, 0x73,
- 0x20, 0x74, 0x68, 0x65, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x74, 0x61, 0x72,
- 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x64,
- 0x65, 0x78, 0x20, 0x3e, 0x20, 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x73,
- 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x20, 0x61, 0x6c, 0x6c,
- 0x20, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20,
- 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x70,
- 0x61, 0x75, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x73,
- 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x6c, 0x65, 0x74,
- 0x74, 0x65, 0x72, 0x20, 0x3d, 0x3e, 0x20, 0x6c, 0x65, 0x74, 0x74, 0x65,
- 0x72, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e,
- 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x28, 0x27, 0x75, 0x6e, 0x64, 0x65,
- 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x64, 0x27, 0x29, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73,
- 0x65, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x28, 0x28, 0x29,
- 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x75,
- 0x72, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x20, 0x3d,
- 0x20, 0x30, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x6e, 0x69, 0x6d,
- 0x61, 0x74, 0x65, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x28, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x2c, 0x20, 0x34, 0x30, 0x30, 0x30, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73,
- 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4f, 0x74, 0x68, 0x65, 0x72,
- 0x77, 0x69, 0x73, 0x65, 0x2c, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x69, 0x6e,
- 0x75, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x6e, 0x65, 0x78, 0x74, 0x20, 0x6c,
- 0x65, 0x74, 0x74, 0x65, 0x72, 0x20, 0x61, 0x66, 0x74, 0x65, 0x72, 0x20,
- 0x32, 0x30, 0x30, 0x6d, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65, 0x74, 0x54, 0x69, 0x6d,
- 0x65, 0x6f, 0x75, 0x74, 0x28, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x65,
- 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x2c, 0x20, 0x31, 0x30, 0x30, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f,
- 0x2f, 0x20, 0x53, 0x74, 0x61, 0x72, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20,
- 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4c, 0x65, 0x74,
- 0x74, 0x65, 0x72, 0x28, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f,
+ 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x53, 0x69, 0x64, 0x65, 0x4e, 0x61,
+ 0x76, 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6e, 0x61, 0x76, 0x4c,
+ 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6e, 0x61, 0x76, 0x4c,
+ 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64,
+ 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65,
+ 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x28,
+ 0x65, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x2e, 0x73, 0x74,
+ 0x6f, 0x70, 0x50, 0x72, 0x6f, 0x70, 0x61, 0x67, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x28,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x53, 0x69, 0x64, 0x65,
+ 0x4e, 0x61, 0x76, 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x65, 0x74,
+ 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x20, 0x70, 0x61, 0x67,
+ 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68,
+ 0x50, 0x61, 0x67, 0x65, 0x28, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74,
+ 0x50, 0x61, 0x67, 0x65, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f,
0x20, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x0a, 0x2f, 0x2f,
- 0x20, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x20, 0x54, 0x4f, 0x47, 0x47,
- 0x4c, 0x45, 0x20, 0x42, 0x55, 0x54, 0x54, 0x4f, 0x4e, 0x20, 0x43, 0x4f,
- 0x4d, 0x50, 0x4f, 0x4e, 0x45, 0x4e, 0x54, 0x0a, 0x2f, 0x2f, 0x20, 0x3d,
+ 0x20, 0x53, 0x51, 0x4c, 0x20, 0x51, 0x55, 0x45, 0x52, 0x59, 0x20, 0x46,
+ 0x55, 0x4e, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x53, 0x0a, 0x2f, 0x2f, 0x20,
0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
- 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20,
- 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x72, 0x65, 0x67, 0x69, 0x73,
- 0x74, 0x72, 0x79, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x63, 0x6f, 0x6e, 0x66,
- 0x69, 0x67, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x62, 0x75,
- 0x74, 0x74, 0x6f, 0x6e, 0x73, 0x0a, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
- 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x54, 0x6f, 0x67, 0x67, 0x6c, 0x65,
- 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73, 0x20, 0x3d, 0x20, 0x6e, 0x65,
- 0x77, 0x20, 0x4d, 0x61, 0x70, 0x28, 0x29, 0x3b, 0x0a, 0x0a, 0x2f, 0x2f,
- 0x20, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x54, 0x6f, 0x67, 0x67, 0x6c,
- 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x63, 0x6c, 0x61, 0x73,
- 0x73, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x72, 0x69, 0x2d, 0x73, 0x74,
- 0x61, 0x74, 0x65, 0x20, 0x62, 0x6f, 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0x20,
- 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c,
- 0x65, 0x73, 0x0a, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x43, 0x6f, 0x6e,
- 0x66, 0x69, 0x67, 0x54, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x42, 0x75, 0x74,
- 0x74, 0x6f, 0x6e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x6f, 0x72, 0x28, 0x63, 0x6f,
- 0x6e, 0x66, 0x69, 0x67, 0x4b, 0x65, 0x79, 0x2c, 0x20, 0x63, 0x6f, 0x6e,
- 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x2c, 0x20, 0x6f, 0x70, 0x74, 0x69,
- 0x6f, 0x6e, 0x73, 0x20, 0x3d, 0x20, 0x7b, 0x7d, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73,
- 0x2e, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4b, 0x65, 0x79, 0x20, 0x3d,
- 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4b, 0x65, 0x79, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73,
- 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x20, 0x3d,
- 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73,
- 0x2e, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x27, 0x66, 0x61,
- 0x6c, 0x73, 0x65, 0x27, 0x3b, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x61,
- 0x72, 0x74, 0x20, 0x69, 0x6e, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x20,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x62, 0x79, 0x20, 0x64, 0x65, 0x66,
- 0x61, 0x75, 0x6c, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e,
- 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x6e, 0x75, 0x6c,
- 0x6c, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74,
- 0x68, 0x69, 0x73, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20,
- 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65,
- 0x3a, 0x20, 0x27, 0x62, 0x6f, 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0x27, 0x2c,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x3a, 0x20, 0x27,
- 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x27, 0x2c,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2e, 0x2e, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73,
- 0x2e, 0x72, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x28, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e,
- 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c,
- 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73, 0x28, 0x29, 0x3b, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x20, 0x74, 0x68, 0x69,
- 0x73, 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x73,
- 0x74, 0x61, 0x6e, 0x63, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x54, 0x6f, 0x67, 0x67,
- 0x6c, 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73, 0x2e, 0x73, 0x65,
- 0x74, 0x28, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4b, 0x65, 0x79, 0x2c,
- 0x20, 0x74, 0x68, 0x69, 0x73, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x6e, 0x64, 0x65,
- 0x72, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
- 0x67, 0x28, 0x27, 0x3d, 0x3d, 0x3d, 0x20, 0x52, 0x45, 0x4e, 0x44, 0x45,
- 0x52, 0x49, 0x4e, 0x47, 0x20, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x20,
- 0x54, 0x4f, 0x47, 0x47, 0x4c, 0x45, 0x20, 0x42, 0x55, 0x54, 0x54, 0x4f,
- 0x4e, 0x20, 0x3d, 0x3d, 0x3d, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
- 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
- 0x20, 0x6b, 0x65, 0x79, 0x3a, 0x27, 0x2c, 0x20, 0x74, 0x68, 0x69, 0x73,
- 0x2e, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4b, 0x65, 0x79, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x6f,
- 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x3a, 0x27, 0x2c, 0x20, 0x74,
+ 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x0a, 0x0a, 0x2f, 0x2f,
+ 0x20, 0x50, 0x72, 0x65, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x20,
+ 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61,
+ 0x74, 0x65, 0x73, 0x0a, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x53, 0x51,
+ 0x4c, 0x5f, 0x51, 0x55, 0x45, 0x52, 0x59, 0x5f, 0x54, 0x45, 0x4d, 0x50,
+ 0x4c, 0x41, 0x54, 0x45, 0x53, 0x20, 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x73, 0x3a, 0x20, 0x22, 0x53, 0x45, 0x4c, 0x45, 0x43, 0x54, 0x20, 0x69,
+ 0x64, 0x2c, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2c, 0x20, 0x63,
+ 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x2c, 0x20, 0x6b,
+ 0x69, 0x6e, 0x64, 0x2c, 0x20, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72, 0x28,
+ 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2c, 0x20, 0x31, 0x2c, 0x20,
+ 0x35, 0x30, 0x29, 0x20, 0x61, 0x73, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65,
+ 0x6e, 0x74, 0x20, 0x46, 0x52, 0x4f, 0x4d, 0x20, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x73, 0x20, 0x4f, 0x52, 0x44, 0x45, 0x52, 0x20, 0x42, 0x59, 0x20,
+ 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x20, 0x44,
+ 0x45, 0x53, 0x43, 0x20, 0x4c, 0x49, 0x4d, 0x49, 0x54, 0x20, 0x32, 0x30,
+ 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x73,
+ 0x74, 0x61, 0x74, 0x73, 0x3a, 0x20, 0x22, 0x53, 0x45, 0x4c, 0x45, 0x43,
+ 0x54, 0x20, 0x2a, 0x20, 0x46, 0x52, 0x4f, 0x4d, 0x20, 0x65, 0x76, 0x65,
+ 0x6e, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73, 0x22, 0x2c, 0x0a, 0x20,
+ 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x20, 0x22, 0x53, 0x45, 0x4c, 0x45, 0x43, 0x54, 0x20,
+ 0x2a, 0x20, 0x46, 0x52, 0x4f, 0x4d, 0x20, 0x61, 0x63, 0x74, 0x69, 0x76,
+ 0x65, 0x5f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
+ 0x6f, 0x6e, 0x73, 0x5f, 0x6c, 0x6f, 0x67, 0x20, 0x4f, 0x52, 0x44, 0x45,
+ 0x52, 0x20, 0x42, 0x59, 0x20, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64,
+ 0x5f, 0x61, 0x74, 0x20, 0x44, 0x45, 0x53, 0x43, 0x22, 0x2c, 0x0a, 0x20,
+ 0x20, 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73,
+ 0x3a, 0x20, 0x22, 0x53, 0x45, 0x4c, 0x45, 0x43, 0x54, 0x20, 0x2a, 0x20,
+ 0x46, 0x52, 0x4f, 0x4d, 0x20, 0x74, 0x6f, 0x70, 0x5f, 0x70, 0x75, 0x62,
+ 0x6b, 0x65, 0x79, 0x73, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x22, 0x2c, 0x0a,
+ 0x20, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x6b, 0x69, 0x6e, 0x64,
+ 0x73, 0x3a, 0x20, 0x22, 0x53, 0x45, 0x4c, 0x45, 0x43, 0x54, 0x20, 0x2a,
+ 0x20, 0x46, 0x52, 0x4f, 0x4d, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f,
+ 0x6b, 0x69, 0x6e, 0x64, 0x73, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x20, 0x4f,
+ 0x52, 0x44, 0x45, 0x52, 0x20, 0x42, 0x59, 0x20, 0x63, 0x6f, 0x75, 0x6e,
+ 0x74, 0x20, 0x44, 0x45, 0x53, 0x43, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x74,
+ 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x73, 0x3a, 0x20, 0x22,
+ 0x53, 0x45, 0x4c, 0x45, 0x43, 0x54, 0x20, 0x27, 0x74, 0x6f, 0x74, 0x61,
+ 0x6c, 0x27, 0x20, 0x61, 0x73, 0x20, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64,
+ 0x2c, 0x20, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x28, 0x2a, 0x29, 0x20, 0x61,
+ 0x73, 0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x73, 0x2c, 0x20, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x28, 0x44, 0x49,
+ 0x53, 0x54, 0x49, 0x4e, 0x43, 0x54, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65,
+ 0x79, 0x29, 0x20, 0x61, 0x73, 0x20, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65,
+ 0x5f, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x2c, 0x20, 0x4d, 0x49,
+ 0x4e, 0x28, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74,
+ 0x29, 0x20, 0x61, 0x73, 0x20, 0x6f, 0x6c, 0x64, 0x65, 0x73, 0x74, 0x5f,
+ 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2c, 0x20, 0x4d, 0x41, 0x58, 0x28, 0x63,
+ 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x29, 0x20, 0x61,
+ 0x73, 0x20, 0x6e, 0x65, 0x77, 0x65, 0x73, 0x74, 0x5f, 0x65, 0x76, 0x65,
+ 0x6e, 0x74, 0x20, 0x46, 0x52, 0x4f, 0x4d, 0x20, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x73, 0x20, 0x55, 0x4e, 0x49, 0x4f, 0x4e, 0x20, 0x41, 0x4c, 0x4c,
+ 0x20, 0x53, 0x45, 0x4c, 0x45, 0x43, 0x54, 0x20, 0x27, 0x32, 0x34, 0x68,
+ 0x27, 0x20, 0x61, 0x73, 0x20, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x2c,
+ 0x20, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x28, 0x2a, 0x29, 0x20, 0x61, 0x73,
+ 0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x73, 0x2c, 0x20, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x28, 0x44, 0x49, 0x53,
+ 0x54, 0x49, 0x4e, 0x43, 0x54, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x29, 0x20, 0x61, 0x73, 0x20, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x5f,
+ 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x2c, 0x20, 0x4d, 0x49, 0x4e,
+ 0x28, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x29,
+ 0x20, 0x61, 0x73, 0x20, 0x6f, 0x6c, 0x64, 0x65, 0x73, 0x74, 0x5f, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x2c, 0x20, 0x4d, 0x41, 0x58, 0x28, 0x63, 0x72,
+ 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x29, 0x20, 0x61, 0x73,
+ 0x20, 0x6e, 0x65, 0x77, 0x65, 0x73, 0x74, 0x5f, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x20, 0x46, 0x52, 0x4f, 0x4d, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x73, 0x20, 0x57, 0x48, 0x45, 0x52, 0x45, 0x20, 0x63, 0x72, 0x65, 0x61,
+ 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x20, 0x3e, 0x3d, 0x20, 0x28, 0x73,
+ 0x74, 0x72, 0x66, 0x74, 0x69, 0x6d, 0x65, 0x28, 0x27, 0x25, 0x73, 0x27,
+ 0x2c, 0x20, 0x27, 0x6e, 0x6f, 0x77, 0x27, 0x29, 0x20, 0x2d, 0x20, 0x38,
+ 0x36, 0x34, 0x30, 0x30, 0x29, 0x20, 0x55, 0x4e, 0x49, 0x4f, 0x4e, 0x20,
+ 0x41, 0x4c, 0x4c, 0x20, 0x53, 0x45, 0x4c, 0x45, 0x43, 0x54, 0x20, 0x27,
+ 0x37, 0x64, 0x27, 0x20, 0x61, 0x73, 0x20, 0x70, 0x65, 0x72, 0x69, 0x6f,
+ 0x64, 0x2c, 0x20, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x28, 0x2a, 0x29, 0x20,
+ 0x61, 0x73, 0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x65, 0x76, 0x65,
+ 0x6e, 0x74, 0x73, 0x2c, 0x20, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x28, 0x44,
+ 0x49, 0x53, 0x54, 0x49, 0x4e, 0x43, 0x54, 0x20, 0x70, 0x75, 0x62, 0x6b,
+ 0x65, 0x79, 0x29, 0x20, 0x61, 0x73, 0x20, 0x75, 0x6e, 0x69, 0x71, 0x75,
+ 0x65, 0x5f, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x73, 0x2c, 0x20, 0x4d,
+ 0x49, 0x4e, 0x28, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61,
+ 0x74, 0x29, 0x20, 0x61, 0x73, 0x20, 0x6f, 0x6c, 0x64, 0x65, 0x73, 0x74,
+ 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2c, 0x20, 0x4d, 0x41, 0x58, 0x28,
+ 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x29, 0x20,
+ 0x61, 0x73, 0x20, 0x6e, 0x65, 0x77, 0x65, 0x73, 0x74, 0x5f, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x20, 0x46, 0x52, 0x4f, 0x4d, 0x20, 0x65, 0x76, 0x65,
+ 0x6e, 0x74, 0x73, 0x20, 0x57, 0x48, 0x45, 0x52, 0x45, 0x20, 0x63, 0x72,
+ 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x20, 0x3e, 0x3d, 0x20,
+ 0x28, 0x73, 0x74, 0x72, 0x66, 0x74, 0x69, 0x6d, 0x65, 0x28, 0x27, 0x25,
+ 0x73, 0x27, 0x2c, 0x20, 0x27, 0x6e, 0x6f, 0x77, 0x27, 0x29, 0x20, 0x2d,
+ 0x20, 0x36, 0x30, 0x34, 0x38, 0x30, 0x30, 0x29, 0x20, 0x55, 0x4e, 0x49,
+ 0x4f, 0x4e, 0x20, 0x41, 0x4c, 0x4c, 0x20, 0x53, 0x45, 0x4c, 0x45, 0x43,
+ 0x54, 0x20, 0x27, 0x33, 0x30, 0x64, 0x27, 0x20, 0x61, 0x73, 0x20, 0x70,
+ 0x65, 0x72, 0x69, 0x6f, 0x64, 0x2c, 0x20, 0x43, 0x4f, 0x55, 0x4e, 0x54,
+ 0x28, 0x2a, 0x29, 0x20, 0x61, 0x73, 0x20, 0x74, 0x6f, 0x74, 0x61, 0x6c,
+ 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x2c, 0x20, 0x43, 0x4f, 0x55,
+ 0x4e, 0x54, 0x28, 0x44, 0x49, 0x53, 0x54, 0x49, 0x4e, 0x43, 0x54, 0x20,
+ 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29, 0x20, 0x61, 0x73, 0x20, 0x75,
+ 0x6e, 0x69, 0x71, 0x75, 0x65, 0x5f, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x73, 0x2c, 0x20, 0x4d, 0x49, 0x4e, 0x28, 0x63, 0x72, 0x65, 0x61, 0x74,
+ 0x65, 0x64, 0x5f, 0x61, 0x74, 0x29, 0x20, 0x61, 0x73, 0x20, 0x6f, 0x6c,
+ 0x64, 0x65, 0x73, 0x74, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2c, 0x20,
+ 0x4d, 0x41, 0x58, 0x28, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
+ 0x61, 0x74, 0x29, 0x20, 0x61, 0x73, 0x20, 0x6e, 0x65, 0x77, 0x65, 0x73,
+ 0x74, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x46, 0x52, 0x4f, 0x4d,
+ 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x57, 0x48, 0x45, 0x52,
+ 0x45, 0x20, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74,
+ 0x20, 0x3e, 0x3d, 0x20, 0x28, 0x73, 0x74, 0x72, 0x66, 0x74, 0x69, 0x6d,
+ 0x65, 0x28, 0x27, 0x25, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x6e, 0x6f, 0x77,
+ 0x27, 0x29, 0x20, 0x2d, 0x20, 0x32, 0x35, 0x39, 0x32, 0x30, 0x30, 0x30,
+ 0x29, 0x22, 0x0a, 0x7d, 0x3b, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x51, 0x75,
+ 0x65, 0x72, 0x79, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x20,
+ 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x28,
+ 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65,
+ 0x29, 0x0a, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x51, 0x55, 0x45, 0x52,
+ 0x59, 0x5f, 0x48, 0x49, 0x53, 0x54, 0x4f, 0x52, 0x59, 0x5f, 0x4b, 0x45,
+ 0x59, 0x20, 0x3d, 0x20, 0x27, 0x63, 0x5f, 0x72, 0x65, 0x6c, 0x61, 0x79,
+ 0x5f, 0x73, 0x71, 0x6c, 0x5f, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
+ 0x27, 0x3b, 0x0a, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x4d, 0x41, 0x58,
+ 0x5f, 0x48, 0x49, 0x53, 0x54, 0x4f, 0x52, 0x59, 0x5f, 0x49, 0x54, 0x45,
+ 0x4d, 0x53, 0x20, 0x3d, 0x20, 0x32, 0x30, 0x3b, 0x0a, 0x0a, 0x2f, 0x2f,
+ 0x20, 0x4c, 0x6f, 0x61, 0x64, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20,
+ 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x20, 0x66, 0x72, 0x6f, 0x6d,
+ 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67,
+ 0x65, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c,
+ 0x6f, 0x61, 0x64, 0x51, 0x75, 0x65, 0x72, 0x79, 0x48, 0x69, 0x73, 0x74,
+ 0x6f, 0x72, 0x79, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x74, 0x72,
+ 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x20, 0x3d, 0x20,
+ 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65,
+ 0x2e, 0x67, 0x65, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x28, 0x51, 0x55, 0x45,
+ 0x52, 0x59, 0x5f, 0x48, 0x49, 0x53, 0x54, 0x4f, 0x52, 0x59, 0x5f, 0x4b,
+ 0x45, 0x59, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74,
+ 0x75, 0x72, 0x6e, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x20,
+ 0x3f, 0x20, 0x4a, 0x53, 0x4f, 0x4e, 0x2e, 0x70, 0x61, 0x72, 0x73, 0x65,
+ 0x28, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x29, 0x20, 0x3a, 0x20,
+ 0x5b, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63,
+ 0x68, 0x20, 0x28, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x28, 0x27, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f,
+ 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20,
+ 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x3a, 0x27, 0x2c, 0x20, 0x65,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72,
+ 0x6e, 0x20, 0x5b, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a,
+ 0x0a, 0x2f, 0x2f, 0x20, 0x53, 0x61, 0x76, 0x65, 0x20, 0x71, 0x75, 0x65,
+ 0x72, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72,
+ 0x79, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73,
+ 0x61, 0x76, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x54, 0x6f, 0x48, 0x69,
+ 0x73, 0x74, 0x6f, 0x72, 0x79, 0x28, 0x71, 0x75, 0x65, 0x72, 0x79, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x71, 0x75,
+ 0x65, 0x72, 0x79, 0x20, 0x7c, 0x7c, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79,
+ 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29, 0x2e, 0x6c, 0x65, 0x6e, 0x67,
+ 0x74, 0x68, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x30, 0x29, 0x20, 0x72, 0x65,
+ 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x74, 0x72, 0x79,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x68,
+ 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x20, 0x3d, 0x20, 0x6c, 0x6f, 0x61,
+ 0x64, 0x51, 0x75, 0x65, 0x72, 0x79, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72,
+ 0x79, 0x28, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x20, 0x64, 0x75, 0x70, 0x6c,
+ 0x69, 0x63, 0x61, 0x74, 0x65, 0x20, 0x69, 0x66, 0x20, 0x65, 0x78, 0x69,
+ 0x73, 0x74, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x68, 0x69, 0x73, 0x74,
+ 0x6f, 0x72, 0x79, 0x20, 0x3d, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72,
+ 0x79, 0x2e, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x28, 0x71, 0x20, 0x3d,
+ 0x3e, 0x20, 0x71, 0x20, 0x21, 0x3d, 0x3d, 0x20, 0x71, 0x75, 0x65, 0x72,
+ 0x79, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x41, 0x64, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65, 0x67, 0x69, 0x6e,
+ 0x6e, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x68, 0x69, 0x73,
+ 0x74, 0x6f, 0x72, 0x79, 0x2e, 0x75, 0x6e, 0x73, 0x68, 0x69, 0x66, 0x74,
+ 0x28, 0x71, 0x75, 0x65, 0x72, 0x79, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x20, 0x73,
+ 0x69, 0x7a, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x2e, 0x6c, 0x65, 0x6e, 0x67,
+ 0x74, 0x68, 0x20, 0x3e, 0x20, 0x4d, 0x41, 0x58, 0x5f, 0x48, 0x49, 0x53,
+ 0x54, 0x4f, 0x52, 0x59, 0x5f, 0x49, 0x54, 0x45, 0x4d, 0x53, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x69, 0x73, 0x74,
+ 0x6f, 0x72, 0x79, 0x20, 0x3d, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72,
+ 0x79, 0x2e, 0x73, 0x6c, 0x69, 0x63, 0x65, 0x28, 0x30, 0x2c, 0x20, 0x4d,
+ 0x41, 0x58, 0x5f, 0x48, 0x49, 0x53, 0x54, 0x4f, 0x52, 0x59, 0x5f, 0x49,
+ 0x54, 0x45, 0x4d, 0x53, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53,
+ 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x2e, 0x73, 0x65, 0x74, 0x49, 0x74,
+ 0x65, 0x6d, 0x28, 0x51, 0x55, 0x45, 0x52, 0x59, 0x5f, 0x48, 0x49, 0x53,
+ 0x54, 0x4f, 0x52, 0x59, 0x5f, 0x4b, 0x45, 0x59, 0x2c, 0x20, 0x4a, 0x53,
+ 0x4f, 0x4e, 0x2e, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x69, 0x66, 0x79,
+ 0x28, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x29, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x51, 0x75,
+ 0x65, 0x72, 0x79, 0x44, 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e, 0x28,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68,
+ 0x20, 0x28, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x28, 0x27, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20,
+ 0x73, 0x61, 0x76, 0x65, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x68,
+ 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20,
+ 0x43, 0x6c, 0x65, 0x61, 0x72, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20,
+ 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x0a, 0x66, 0x75, 0x6e, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x51, 0x75,
+ 0x65, 0x72, 0x79, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x28, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x63, 0x6f, 0x6e,
+ 0x66, 0x69, 0x72, 0x6d, 0x28, 0x27, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x20,
+ 0x61, 0x6c, 0x6c, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x68, 0x69,
+ 0x73, 0x74, 0x6f, 0x72, 0x79, 0x3f, 0x27, 0x29, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x74, 0x6f,
+ 0x72, 0x61, 0x67, 0x65, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49,
+ 0x74, 0x65, 0x6d, 0x28, 0x51, 0x55, 0x45, 0x52, 0x59, 0x5f, 0x48, 0x49,
+ 0x53, 0x54, 0x4f, 0x52, 0x59, 0x5f, 0x4b, 0x45, 0x59, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x51, 0x75,
+ 0x65, 0x72, 0x79, 0x44, 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e, 0x28,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f,
+ 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x64, 0x72, 0x6f, 0x70,
+ 0x64, 0x6f, 0x77, 0x6e, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x68, 0x69,
+ 0x73, 0x74, 0x6f, 0x72, 0x79, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x51, 0x75, 0x65,
+ 0x72, 0x79, 0x44, 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e, 0x28, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x68,
+ 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x20,
+ 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67,
+ 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49,
+ 0x64, 0x28, 0x27, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x2d, 0x67,
+ 0x72, 0x6f, 0x75, 0x70, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x69, 0x66,
+ 0x20, 0x28, 0x21, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x47, 0x72,
+ 0x6f, 0x75, 0x70, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b,
+ 0x0a, 0x0a, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x6c, 0x65, 0x61, 0x72,
+ 0x20, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x68, 0x69,
+ 0x73, 0x74, 0x6f, 0x72, 0x79, 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
+ 0x73, 0x0a, 0x20, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x47,
+ 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54,
+ 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72,
+ 0x79, 0x20, 0x3d, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x51, 0x75, 0x65, 0x72,
+ 0x79, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x28, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72,
+ 0x79, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3d, 0x3d, 0x3d,
+ 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x74, 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d,
+ 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72,
+ 0x65, 0x61, 0x74, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28,
+ 0x27, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x76, 0x61,
+ 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x74, 0x65, 0x78,
+ 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x27,
+ 0x28, 0x6e, 0x6f, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x29,
+ 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f,
+ 0x6e, 0x2e, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x20, 0x3d,
+ 0x20, 0x74, 0x72, 0x75, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x68,
+ 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2e,
+ 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28,
+ 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x7d,
+ 0x0a, 0x0a, 0x20, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x2e,
+ 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x28, 0x71, 0x75, 0x65,
+ 0x72, 0x79, 0x2c, 0x20, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x29, 0x20, 0x3d,
+ 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x64,
+ 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61,
+ 0x74, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x6f,
+ 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x76, 0x61, 0x6c, 0x75,
+ 0x65, 0x20, 0x3d, 0x20, 0x60, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
+ 0x5f, 0x24, 0x7b, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x7d, 0x60, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x54, 0x72, 0x75, 0x6e, 0x63,
+ 0x61, 0x74, 0x65, 0x20, 0x6c, 0x6f, 0x6e, 0x67, 0x20, 0x71, 0x75, 0x65,
+ 0x72, 0x69, 0x65, 0x73, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x64, 0x69, 0x73,
+ 0x70, 0x6c, 0x61, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x51, 0x75,
+ 0x65, 0x72, 0x79, 0x20, 0x3d, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e,
+ 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3e, 0x20, 0x36, 0x30, 0x20,
+ 0x3f, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x73, 0x75, 0x62, 0x73,
+ 0x74, 0x72, 0x69, 0x6e, 0x67, 0x28, 0x30, 0x2c, 0x20, 0x36, 0x30, 0x29,
+ 0x20, 0x2b, 0x20, 0x27, 0x2e, 0x2e, 0x2e, 0x27, 0x20, 0x3a, 0x20, 0x71,
+ 0x75, 0x65, 0x72, 0x79, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x70,
+ 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e,
+ 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c,
+ 0x61, 0x79, 0x51, 0x75, 0x65, 0x72, 0x79, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x64, 0x61, 0x74, 0x61,
+ 0x73, 0x65, 0x74, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x3d, 0x20,
+ 0x71, 0x75, 0x65, 0x72, 0x79, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x68,
+ 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2e,
+ 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28,
+ 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x7d,
+ 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x4c, 0x6f, 0x61,
+ 0x64, 0x20, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x65, 0x64, 0x20, 0x71,
+ 0x75, 0x65, 0x72, 0x79, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x64, 0x72,
+ 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x65, 0x6c, 0x65,
+ 0x63, 0x74, 0x65, 0x64, 0x51, 0x75, 0x65, 0x72, 0x79, 0x28, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x64, 0x72,
+ 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63,
+ 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65,
+ 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x71, 0x75,
+ 0x65, 0x72, 0x79, 0x2d, 0x64, 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x65, 0x64, 0x56, 0x61, 0x6c, 0x75,
+ 0x65, 0x20, 0x3d, 0x20, 0x64, 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e,
+ 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x69,
+ 0x66, 0x20, 0x28, 0x21, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x65, 0x64,
+ 0x56, 0x61, 0x6c, 0x75, 0x65, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72,
+ 0x6e, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x71, 0x75,
+ 0x65, 0x72, 0x79, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x20, 0x69, 0x66,
+ 0x20, 0x69, 0x74, 0x27, 0x73, 0x20, 0x61, 0x20, 0x74, 0x65, 0x6d, 0x70,
+ 0x6c, 0x61, 0x74, 0x65, 0x0a, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x53,
+ 0x51, 0x4c, 0x5f, 0x51, 0x55, 0x45, 0x52, 0x59, 0x5f, 0x54, 0x45, 0x4d,
+ 0x50, 0x4c, 0x41, 0x54, 0x45, 0x53, 0x5b, 0x73, 0x65, 0x6c, 0x65, 0x63,
+ 0x74, 0x65, 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x5d, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x3d,
+ 0x20, 0x53, 0x51, 0x4c, 0x5f, 0x51, 0x55, 0x45, 0x52, 0x59, 0x5f, 0x54,
+ 0x45, 0x4d, 0x50, 0x4c, 0x41, 0x54, 0x45, 0x53, 0x5b, 0x73, 0x65, 0x6c,
+ 0x65, 0x63, 0x74, 0x65, 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x5d, 0x3b,
+ 0x0a, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x68,
+ 0x65, 0x63, 0x6b, 0x20, 0x69, 0x66, 0x20, 0x69, 0x74, 0x27, 0x73, 0x20,
+ 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
+ 0x0a, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x65, 0x64, 0x56, 0x61, 0x6c, 0x75,
+ 0x65, 0x2e, 0x73, 0x74, 0x61, 0x72, 0x74, 0x73, 0x57, 0x69, 0x74, 0x68,
+ 0x28, 0x27, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x27, 0x29,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x65, 0x64, 0x4f, 0x70,
+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x72, 0x6f, 0x70, 0x64,
+ 0x6f, 0x77, 0x6e, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5b,
+ 0x64, 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e, 0x2e, 0x73, 0x65, 0x6c,
+ 0x65, 0x63, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x5d, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x3d,
+ 0x20, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x65, 0x64, 0x4f, 0x70, 0x74,
+ 0x69, 0x6f, 0x6e, 0x2e, 0x64, 0x61, 0x74, 0x61, 0x73, 0x65, 0x74, 0x2e,
+ 0x71, 0x75, 0x65, 0x72, 0x79, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
+ 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x71, 0x75, 0x65, 0x72, 0x79, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
+ 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65,
+ 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x73, 0x71, 0x6c, 0x2d,
+ 0x69, 0x6e, 0x70, 0x75, 0x74, 0x27, 0x29, 0x2e, 0x76, 0x61, 0x6c, 0x75,
+ 0x65, 0x20, 0x3d, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x3b, 0x0a, 0x20,
+ 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x52, 0x65, 0x73,
+ 0x65, 0x74, 0x20, 0x64, 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e, 0x20,
+ 0x74, 0x6f, 0x20, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64,
+ 0x65, 0x72, 0x0a, 0x20, 0x20, 0x64, 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77,
+ 0x6e, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x27, 0x27,
+ 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x43, 0x6c, 0x65, 0x61,
+ 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x53, 0x51, 0x4c, 0x20, 0x71, 0x75,
+ 0x65, 0x72, 0x79, 0x20, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x0a, 0x66, 0x75,
+ 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72,
+ 0x53, 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x28, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
+ 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79,
+ 0x49, 0x64, 0x28, 0x27, 0x73, 0x71, 0x6c, 0x2d, 0x69, 0x6e, 0x70, 0x75,
+ 0x74, 0x27, 0x29, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20,
+ 0x27, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
+ 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
+ 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x71, 0x75, 0x65, 0x72, 0x79,
+ 0x2d, 0x69, 0x6e, 0x66, 0x6f, 0x27, 0x29, 0x2e, 0x69, 0x6e, 0x6e, 0x65,
+ 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a,
+ 0x20, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67,
+ 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49,
+ 0x64, 0x28, 0x27, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2d, 0x74, 0x61, 0x62,
+ 0x6c, 0x65, 0x27, 0x29, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54,
+ 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a,
+ 0x2f, 0x2f, 0x20, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x20, 0x53,
+ 0x51, 0x4c, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x76, 0x69, 0x61,
+ 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x41, 0x50, 0x49, 0x0a, 0x61,
+ 0x73, 0x79, 0x6e, 0x63, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x53, 0x71, 0x6c,
+ 0x51, 0x75, 0x65, 0x72, 0x79, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20,
+ 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67,
+ 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49,
+ 0x64, 0x28, 0x27, 0x73, 0x71, 0x6c, 0x2d, 0x69, 0x6e, 0x70, 0x75, 0x74,
+ 0x27, 0x29, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3b, 0x0a, 0x20, 0x20,
+ 0x69, 0x66, 0x20, 0x28, 0x21, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x74,
+ 0x72, 0x69, 0x6d, 0x28, 0x29, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x50, 0x6c, 0x65, 0x61, 0x73, 0x65,
+ 0x20, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x61, 0x20, 0x53, 0x51, 0x4c,
+ 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x27, 0x2c, 0x20, 0x27, 0x45, 0x52,
+ 0x52, 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x64,
+ 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45,
+ 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27,
+ 0x71, 0x75, 0x65, 0x72, 0x79, 0x2d, 0x69, 0x6e, 0x66, 0x6f, 0x27, 0x29,
+ 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d,
+ 0x20, 0x27, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
+ 0x3d, 0x22, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2d, 0x6d, 0x65, 0x73, 0x73,
+ 0x61, 0x67, 0x65, 0x22, 0x3e, 0xe2, 0x9d, 0x8c, 0x20, 0x50, 0x6c, 0x65,
+ 0x61, 0x73, 0x65, 0x20, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x20, 0x61, 0x20,
+ 0x53, 0x51, 0x4c, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x3c, 0x2f, 0x64,
+ 0x69, 0x76, 0x3e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
+ 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
+ 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f,
+ 0x2f, 0x20, 0x53, 0x68, 0x6f, 0x77, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x69,
+ 0x6e, 0x67, 0x20, 0x73, 0x74, 0x61, 0x74, 0x65, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65,
+ 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64,
+ 0x28, 0x27, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2d, 0x69, 0x6e, 0x66, 0x6f,
+ 0x27, 0x29, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c,
+ 0x20, 0x3d, 0x20, 0x27, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61,
+ 0x73, 0x73, 0x3d, 0x22, 0x6c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x22,
+ 0x3e, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x71,
+ 0x75, 0x65, 0x72, 0x79, 0x2e, 0x2e, 0x2e, 0x3c, 0x2f, 0x64, 0x69, 0x76,
+ 0x3e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x64, 0x6f, 0x63, 0x75,
+ 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d,
+ 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x71, 0x75, 0x65,
+ 0x72, 0x79, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x27, 0x29, 0x2e, 0x69,
+ 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27,
+ 0x27, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53,
+ 0x61, 0x76, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f,
+ 0x72, 0x79, 0x20, 0x28, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x20, 0x65,
+ 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x20, 0x73, 0x6f,
+ 0x20, 0x69, 0x74, 0x27, 0x73, 0x20, 0x73, 0x61, 0x76, 0x65, 0x64, 0x20,
+ 0x65, 0x76, 0x65, 0x6e, 0x20, 0x69, 0x66, 0x20, 0x71, 0x75, 0x65, 0x72,
+ 0x79, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x73, 0x29, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x73, 0x61, 0x76, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x54, 0x6f,
+ 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x28, 0x71, 0x75, 0x65, 0x72,
+ 0x79, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29, 0x29, 0x3b, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x65, 0x6e, 0x64, 0x20,
+ 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x61, 0x73, 0x20, 0x6b, 0x69, 0x6e,
+ 0x64, 0x20, 0x32, 0x33, 0x34, 0x35, 0x36, 0x20, 0x61, 0x64, 0x6d, 0x69,
+ 0x6e, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x61, 0x6e, 0x64, 0x20, 0x3d, 0x20, 0x5b, 0x22, 0x73, 0x71, 0x6c, 0x5f,
+ 0x71, 0x75, 0x65, 0x72, 0x79, 0x22, 0x2c, 0x20, 0x71, 0x75, 0x65, 0x72,
+ 0x79, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65,
+ 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x73,
+ 0x65, 0x6e, 0x64, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x43, 0x6f, 0x6d, 0x6d,
+ 0x61, 0x6e, 0x64, 0x28, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x29,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74,
+ 0x6f, 0x72, 0x65, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x69, 0x6e,
+ 0x66, 0x6f, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20,
+ 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x61, 0x72, 0x72,
+ 0x69, 0x76, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
+ 0x28, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e,
+ 0x74, 0x20, 0x26, 0x26, 0x20, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x45, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x69, 0x64, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e,
+ 0x67, 0x53, 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x2e,
+ 0x73, 0x65, 0x74, 0x28, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x45,
+ 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x69, 0x64, 0x2c, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79,
+ 0x3a, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2c, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
+ 0x6d, 0x70, 0x3a, 0x20, 0x44, 0x61, 0x74, 0x65, 0x2e, 0x6e, 0x6f, 0x77,
+ 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x4e, 0x6f, 0x74, 0x65, 0x3a, 0x20, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x62,
+ 0x65, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x64, 0x20, 0x62, 0x79,
+ 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x6c,
+ 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68, 0x20, 0x77, 0x69, 0x6c,
+ 0x6c, 0x20, 0x63, 0x61, 0x6c, 0x6c, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c,
+ 0x61, 0x79, 0x53, 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65,
+ 0x73, 0x75, 0x6c, 0x74, 0x73, 0x28, 0x29, 0x20, 0x77, 0x68, 0x65, 0x6e,
+ 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x61, 0x72,
+ 0x72, 0x69, 0x76, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61,
+ 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x46,
+ 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x65, 0x78, 0x65,
+ 0x63, 0x75, 0x74, 0x65, 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x3a, 0x20,
+ 0x27, 0x20, 0x2b, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65,
+ 0x73, 0x73, 0x61, 0x67, 0x65, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f,
+ 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x64, 0x6f, 0x63,
+ 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65,
+ 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x71, 0x75,
+ 0x65, 0x72, 0x79, 0x2d, 0x69, 0x6e, 0x66, 0x6f, 0x27, 0x29, 0x2e, 0x69,
+ 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27,
+ 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2d, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
+ 0x65, 0x22, 0x3e, 0xe2, 0x9d, 0x8c, 0x20, 0x46, 0x61, 0x69, 0x6c, 0x65,
+ 0x64, 0x20, 0x74, 0x6f, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65,
+ 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x3a, 0x20, 0x27, 0x20, 0x2b, 0x20,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
+ 0x65, 0x20, 0x2b, 0x20, 0x27, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x27,
+ 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20,
+ 0x48, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x20,
+ 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e,
+ 0x64, 0x73, 0x20, 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x32, 0x33, 0x34,
+ 0x35, 0x36, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x29, 0x0a, 0x61,
+ 0x73, 0x79, 0x6e, 0x63, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x43,
+ 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x28, 0x63, 0x6f, 0x6d, 0x6d, 0x61,
+ 0x6e, 0x64, 0x41, 0x72, 0x72, 0x61, 0x79, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x69, 0x73, 0x4c, 0x6f, 0x67, 0x67,
+ 0x65, 0x64, 0x49, 0x6e, 0x20, 0x7c, 0x7c, 0x20, 0x21, 0x75, 0x73, 0x65,
+ 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77,
+ 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x4d, 0x75, 0x73, 0x74,
+ 0x20, 0x62, 0x65, 0x20, 0x6c, 0x6f, 0x67, 0x67, 0x65, 0x64, 0x20, 0x69,
+ 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x20, 0x61, 0x64,
+ 0x6d, 0x69, 0x6e, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x73,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x69,
+ 0x66, 0x20, 0x28, 0x21, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f,
+ 0x6c, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72,
+ 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x28, 0x27, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c,
+ 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
+ 0x6e, 0x6f, 0x74, 0x20, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c,
+ 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
+ 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f,
+ 0x67, 0x28, 0x60, 0x53, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x61,
+ 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
+ 0x3a, 0x20, 0x24, 0x7b, 0x4a, 0x53, 0x4f, 0x4e, 0x2e, 0x73, 0x74, 0x72,
+ 0x69, 0x6e, 0x67, 0x69, 0x66, 0x79, 0x28, 0x63, 0x6f, 0x6d, 0x6d, 0x61,
+ 0x6e, 0x64, 0x41, 0x72, 0x72, 0x61, 0x79, 0x29, 0x7d, 0x60, 0x2c, 0x20,
+ 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x45, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74,
+ 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
+ 0x20, 0x61, 0x72, 0x72, 0x61, 0x79, 0x20, 0x64, 0x69, 0x72, 0x65, 0x63,
+ 0x74, 0x6c, 0x79, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x4e, 0x49,
+ 0x50, 0x2d, 0x34, 0x34, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64,
+ 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x61,
+ 0x77, 0x61, 0x69, 0x74, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74,
+ 0x46, 0x6f, 0x72, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x28, 0x4a, 0x53, 0x4f,
+ 0x4e, 0x2e, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x69, 0x66, 0x79, 0x28,
+ 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x41, 0x72, 0x72, 0x61, 0x79,
+ 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x21, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x63,
+ 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65,
+ 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x46, 0x61, 0x69,
+ 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79,
+ 0x70, 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x61,
+ 0x72, 0x72, 0x61, 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72,
+ 0x65, 0x61, 0x74, 0x65, 0x20, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x20,
+ 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x32, 0x33, 0x34, 0x35, 0x36, 0x20, 0x61,
+ 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x61, 0x64, 0x6d,
+ 0x69, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x3a, 0x20,
+ 0x32, 0x33, 0x34, 0x35, 0x36, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3a, 0x20, 0x75, 0x73, 0x65,
+ 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2c, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61,
+ 0x74, 0x3a, 0x20, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f,
+ 0x72, 0x28, 0x44, 0x61, 0x74, 0x65, 0x2e, 0x6e, 0x6f, 0x77, 0x28, 0x29,
+ 0x20, 0x2f, 0x20, 0x31, 0x30, 0x30, 0x30, 0x29, 0x2c, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x67, 0x73, 0x3a, 0x20, 0x5b, 0x5b,
+ 0x22, 0x70, 0x22, 0x2c, 0x20, 0x67, 0x65, 0x74, 0x52, 0x65, 0x6c, 0x61,
+ 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x28, 0x29, 0x5d, 0x5d, 0x2c,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65,
+ 0x6e, 0x74, 0x3a, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65,
+ 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e,
+ 0x74, 0x20, 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x77, 0x69,
+ 0x6e, 0x64, 0x6f, 0x77, 0x2e, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2e, 0x73,
+ 0x69, 0x67, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x61, 0x64, 0x6d,
+ 0x69, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x73, 0x69, 0x67, 0x6e, 0x65,
+ 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x7c, 0x7c, 0x20, 0x21, 0x73,
+ 0x69, 0x67, 0x6e, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x73,
+ 0x69, 0x67, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x28, 0x27, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x73,
+ 0x69, 0x67, 0x6e, 0x69, 0x6e, 0x67, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65,
+ 0x64, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69,
+ 0x73, 0x68, 0x20, 0x76, 0x69, 0x61, 0x20, 0x53, 0x69, 0x6d, 0x70, 0x6c,
+ 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x64,
+ 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x20, 0x64, 0x69, 0x61, 0x67, 0x6e, 0x6f, 0x73, 0x74, 0x69, 0x63,
+ 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x75, 0x72, 0x6c, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x43,
+ 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x72, 0x6c,
+ 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
+ 0x20, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x50, 0x72, 0x6f, 0x6d,
+ 0x69, 0x73, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79,
+ 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68,
+ 0x28, 0x5b, 0x75, 0x72, 0x6c, 0x5d, 0x2c, 0x20, 0x73, 0x69, 0x67, 0x6e,
+ 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x73, 0x65, 0x20, 0x50, 0x72,
+ 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x2e, 0x61, 0x6c, 0x6c, 0x53, 0x65, 0x74,
+ 0x74, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x63, 0x61, 0x70, 0x74,
+ 0x75, 0x72, 0x65, 0x20, 0x70, 0x65, 0x72, 0x2d, 0x72, 0x65, 0x6c, 0x61,
+ 0x79, 0x20, 0x6f, 0x75, 0x74, 0x63, 0x6f, 0x6d, 0x65, 0x73, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x65, 0x73,
+ 0x75, 0x6c, 0x74, 0x73, 0x20, 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74,
+ 0x20, 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x2e, 0x61, 0x6c, 0x6c,
+ 0x53, 0x65, 0x74, 0x74, 0x6c, 0x65, 0x64, 0x28, 0x70, 0x75, 0x62, 0x6c,
+ 0x69, 0x73, 0x68, 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x73, 0x29,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4c, 0x6f,
+ 0x67, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x70,
+ 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c,
+ 0x74, 0x73, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x64, 0x69, 0x61, 0x67, 0x6e,
+ 0x6f, 0x73, 0x74, 0x69, 0x63, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c,
+ 0x65, 0x74, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x43, 0x6f,
+ 0x75, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x30, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x2e, 0x66, 0x6f, 0x72,
+ 0x45, 0x61, 0x63, 0x68, 0x28, 0x28, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
+ 0x2c, 0x20, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x29, 0x20, 0x3d, 0x3e, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x75,
+ 0x73, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x66, 0x75, 0x6c, 0x66, 0x69,
+ 0x6c, 0x6c, 0x65, 0x64, 0x27, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73,
+ 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x2b, 0x2b, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0xe2, 0x9c,
+ 0x85, 0x20, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x61, 0x6e, 0x64, 0x20, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65,
+ 0x64, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x66, 0x75, 0x6c,
+ 0x6c, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20,
+ 0x24, 0x7b, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x7d, 0x60, 0x2c, 0x20, 0x27,
+ 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60,
+ 0xe2, 0x9d, 0x8c, 0x20, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x63, 0x6f,
+ 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64,
+ 0x20, 0x6f, 0x6e, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x24, 0x7b,
+ 0x69, 0x6e, 0x64, 0x65, 0x78, 0x7d, 0x3a, 0x20, 0x24, 0x7b, 0x72, 0x65,
+ 0x73, 0x75, 0x6c, 0x74, 0x2e, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x3f,
+ 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x7c, 0x7c, 0x20,
+ 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x2e, 0x72, 0x65, 0x61, 0x73, 0x6f,
+ 0x6e, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x69, 0x66, 0x20, 0x28, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x43,
+ 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x30, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69,
+ 0x6c, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73,
+ 0x2e, 0x6d, 0x61, 0x70, 0x28, 0x28, 0x72, 0x2c, 0x20, 0x69, 0x29, 0x20,
+ 0x3d, 0x3e, 0x20, 0x60, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x24, 0x7b,
+ 0x69, 0x7d, 0x3a, 0x20, 0x24, 0x7b, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x73,
+ 0x6f, 0x6e, 0x3f, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20,
+ 0x7c, 0x7c, 0x20, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x7d,
+ 0x60, 0x29, 0x2e, 0x6a, 0x6f, 0x69, 0x6e, 0x28, 0x27, 0x3b, 0x20, 0x27,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72,
+ 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x28, 0x60, 0x41, 0x6c, 0x6c, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73,
+ 0x20, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x65, 0x64, 0x20, 0x61, 0x64,
+ 0x6d, 0x69, 0x6e, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20,
+ 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x20, 0x44, 0x65, 0x74, 0x61, 0x69,
+ 0x6c, 0x73, 0x3a, 0x20, 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x44,
+ 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f,
+ 0x67, 0x28, 0x27, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x63, 0x6f, 0x6d,
+ 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x73, 0x65, 0x6e, 0x74, 0x20, 0x73, 0x75,
+ 0x63, 0x63, 0x65, 0x73, 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x27, 0x2c,
+ 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x73, 0x69, 0x67,
+ 0x6e, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x3b, 0x20, 0x2f, 0x2f,
+ 0x20, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20,
+ 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x20, 0x66, 0x6f, 0x72, 0x20, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x20, 0x49, 0x44, 0x20, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
+ 0x0a, 0x0a, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20,
+ 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x46, 0x61, 0x69, 0x6c, 0x65,
+ 0x64, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x20, 0x61, 0x64,
+ 0x6d, 0x69, 0x6e, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x3a,
+ 0x20, 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73,
+ 0x73, 0x61, 0x67, 0x65, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52,
+ 0x4f, 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68,
+ 0x72, 0x6f, 0x77, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x3b, 0x0a, 0x20,
+ 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x44, 0x69, 0x73,
+ 0x70, 0x6c, 0x61, 0x79, 0x20, 0x53, 0x51, 0x4c, 0x20, 0x71, 0x75, 0x65,
+ 0x72, 0x79, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x0a, 0x66,
+ 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x64, 0x69, 0x73, 0x70,
+ 0x6c, 0x61, 0x79, 0x53, 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,
+ 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x69, 0x6e, 0x66, 0x6f, 0x44, 0x69, 0x76, 0x20, 0x3d,
+ 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65,
+ 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64,
+ 0x28, 0x27, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2d, 0x69, 0x6e, 0x66, 0x6f,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x44, 0x69, 0x76, 0x20, 0x3d, 0x20, 0x64,
+ 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45,
+ 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27,
+ 0x71, 0x75, 0x65, 0x72, 0x79, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x27,
+ 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x75,
+ 0x73, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x27, 0x20, 0x7c, 0x7c, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x69, 0x6e, 0x66, 0x6f, 0x44, 0x69, 0x76, 0x2e, 0x69,
+ 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x60,
+ 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2d, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
+ 0x65, 0x22, 0x3e, 0xe2, 0x9d, 0x8c, 0x20, 0x24, 0x7b, 0x72, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x20,
+ 0x7c, 0x7c, 0x20, 0x27, 0x51, 0x75, 0x65, 0x72, 0x79, 0x20, 0x66, 0x61,
+ 0x69, 0x6c, 0x65, 0x64, 0x27, 0x7d, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e,
+ 0x60, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65,
+ 0x44, 0x69, 0x76, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d,
+ 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x0a,
+ 0x0a, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x68, 0x6f, 0x77, 0x20, 0x71,
+ 0x75, 0x65, 0x72, 0x79, 0x20, 0x69, 0x6e, 0x66, 0x6f, 0x20, 0x77, 0x69,
+ 0x74, 0x68, 0x20, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x20, 0x49,
+ 0x44, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x64, 0x65, 0x62, 0x75, 0x67, 0x67,
+ 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x72, 0x6f, 0x77, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x72,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x72, 0x6f, 0x77, 0x5f,
+ 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x7c, 0x7c, 0x20, 0x30, 0x3b, 0x0a,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x65, 0x78, 0x65, 0x63,
+ 0x54, 0x69, 0x6d, 0x65, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x2e, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f,
+ 0x6e, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6d, 0x73, 0x20, 0x7c, 0x7c,
+ 0x20, 0x30, 0x3b, 0x0a, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x20, 0x3d, 0x20,
+ 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x72, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x20, 0x3f, 0x20, 0x72, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65,
+ 0x73, 0x74, 0x5f, 0x69, 0x64, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x74, 0x72,
+ 0x69, 0x6e, 0x67, 0x28, 0x30, 0x2c, 0x20, 0x38, 0x29, 0x20, 0x2b, 0x20,
+ 0x27, 0x2e, 0x2e, 0x2e, 0x27, 0x20, 0x3a, 0x20, 0x27, 0x75, 0x6e, 0x6b,
+ 0x6e, 0x6f, 0x77, 0x6e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x69, 0x6e, 0x66,
+ 0x6f, 0x44, 0x69, 0x76, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54,
+ 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x60, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c,
+ 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x71,
+ 0x75, 0x65, 0x72, 0x79, 0x2d, 0x69, 0x6e, 0x66, 0x6f, 0x2d, 0x73, 0x75,
+ 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x73, 0x70, 0x61, 0x6e, 0x3e, 0xe2, 0x9c, 0x85, 0x20,
+ 0x51, 0x75, 0x65, 0x72, 0x79, 0x20, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74,
+ 0x65, 0x64, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x66, 0x75,
+ 0x6c, 0x6c, 0x79, 0x3c, 0x2f, 0x73, 0x70, 0x61, 0x6e, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x70, 0x61, 0x6e, 0x3e, 0x52,
+ 0x6f, 0x77, 0x73, 0x3a, 0x20, 0x24, 0x7b, 0x72, 0x6f, 0x77, 0x43, 0x6f,
+ 0x75, 0x6e, 0x74, 0x7d, 0x3c, 0x2f, 0x73, 0x70, 0x61, 0x6e, 0x3e, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x70, 0x61, 0x6e, 0x3e,
+ 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x54, 0x69,
+ 0x6d, 0x65, 0x3a, 0x20, 0x24, 0x7b, 0x65, 0x78, 0x65, 0x63, 0x54, 0x69,
+ 0x6d, 0x65, 0x7d, 0x6d, 0x73, 0x3c, 0x2f, 0x73, 0x70, 0x61, 0x6e, 0x3e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x70, 0x61, 0x6e,
+ 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x72, 0x65, 0x71, 0x75,
+ 0x65, 0x73, 0x74, 0x2d, 0x69, 0x64, 0x22, 0x20, 0x74, 0x69, 0x74, 0x6c,
+ 0x65, 0x3d, 0x22, 0x24, 0x7b, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64,
+ 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x27, 0x7d, 0x22, 0x3e, 0x52, 0x65, 0x71,
+ 0x75, 0x65, 0x73, 0x74, 0x3a, 0x20, 0x24, 0x7b, 0x72, 0x65, 0x71, 0x75,
+ 0x65, 0x73, 0x74, 0x49, 0x64, 0x7d, 0x3c, 0x2f, 0x73, 0x70, 0x61, 0x6e,
+ 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e,
+ 0x0a, 0x20, 0x20, 0x60, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x42, 0x75, 0x69, 0x6c, 0x64, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
+ 0x73, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x0a, 0x20, 0x20, 0x69, 0x66,
+ 0x20, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x72,
+ 0x6f, 0x77, 0x73, 0x20, 0x26, 0x26, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x2e, 0x72, 0x6f, 0x77, 0x73, 0x2e, 0x6c, 0x65, 0x6e,
+ 0x67, 0x74, 0x68, 0x20, 0x3e, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x68, 0x74, 0x6d, 0x6c, 0x20,
+ 0x3d, 0x20, 0x27, 0x3c, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x20, 0x63, 0x6c,
+ 0x61, 0x73, 0x73, 0x3d, 0x22, 0x73, 0x71, 0x6c, 0x2d, 0x72, 0x65, 0x73,
+ 0x75, 0x6c, 0x74, 0x73, 0x2d, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x3e,
+ 0x3c, 0x74, 0x68, 0x65, 0x61, 0x64, 0x3e, 0x3c, 0x74, 0x72, 0x3e, 0x27,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x2e, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x2e, 0x66,
+ 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x63, 0x6f, 0x6c, 0x20, 0x3d,
+ 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x74,
+ 0x6d, 0x6c, 0x20, 0x2b, 0x3d, 0x20, 0x60, 0x3c, 0x74, 0x68, 0x3e, 0x24,
+ 0x7b, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x48, 0x74, 0x6d, 0x6c, 0x28,
+ 0x63, 0x6f, 0x6c, 0x29, 0x7d, 0x3c, 0x2f, 0x74, 0x68, 0x3e, 0x60, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x68, 0x74, 0x6d, 0x6c, 0x20, 0x2b, 0x3d, 0x20, 0x27, 0x3c, 0x2f,
+ 0x74, 0x72, 0x3e, 0x3c, 0x2f, 0x74, 0x68, 0x65, 0x61, 0x64, 0x3e, 0x3c,
+ 0x74, 0x62, 0x6f, 0x64, 0x79, 0x3e, 0x27, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x72,
+ 0x6f, 0x77, 0x73, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28,
+ 0x72, 0x6f, 0x77, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x68, 0x74, 0x6d, 0x6c, 0x20, 0x2b, 0x3d, 0x20, 0x27,
+ 0x3c, 0x74, 0x72, 0x3e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68,
+ 0x28, 0x63, 0x65, 0x6c, 0x6c, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
+ 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d,
+ 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x6e, 0x75,
+ 0x6c, 0x6c, 0x20, 0x3f, 0x20, 0x27, 0x3c, 0x65, 0x6d, 0x3e, 0x4e, 0x55,
+ 0x4c, 0x4c, 0x3c, 0x2f, 0x65, 0x6d, 0x3e, 0x27, 0x20, 0x3a, 0x20, 0x65,
+ 0x73, 0x63, 0x61, 0x70, 0x65, 0x48, 0x74, 0x6d, 0x6c, 0x28, 0x53, 0x74,
+ 0x72, 0x69, 0x6e, 0x67, 0x28, 0x63, 0x65, 0x6c, 0x6c, 0x29, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x74, 0x6d,
+ 0x6c, 0x20, 0x2b, 0x3d, 0x20, 0x60, 0x3c, 0x74, 0x64, 0x3e, 0x24, 0x7b,
+ 0x63, 0x65, 0x6c, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x7d, 0x3c, 0x2f,
+ 0x74, 0x64, 0x3e, 0x60, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x74,
+ 0x6d, 0x6c, 0x20, 0x2b, 0x3d, 0x20, 0x27, 0x3c, 0x2f, 0x74, 0x72, 0x3e,
+ 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x68, 0x74, 0x6d, 0x6c, 0x20, 0x2b, 0x3d, 0x20,
+ 0x27, 0x3c, 0x2f, 0x74, 0x62, 0x6f, 0x64, 0x79, 0x3e, 0x3c, 0x2f, 0x74,
+ 0x61, 0x62, 0x6c, 0x65, 0x3e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x74, 0x61, 0x62, 0x6c, 0x65, 0x44, 0x69, 0x76, 0x2e, 0x69, 0x6e, 0x6e,
+ 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x68, 0x74, 0x6d,
+ 0x6c, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x44,
+ 0x69, 0x76, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c,
+ 0x20, 0x3d, 0x20, 0x27, 0x3c, 0x70, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
+ 0x3d, 0x22, 0x6e, 0x6f, 0x2d, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73,
+ 0x22, 0x3e, 0x4e, 0x6f, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73,
+ 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x65, 0x64, 0x3c, 0x2f, 0x70,
+ 0x3e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f,
+ 0x2f, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x53, 0x51, 0x4c,
+ 0x20, 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f,
+ 0x6e, 0x73, 0x65, 0x20, 0x28, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x64, 0x20,
+ 0x62, 0x79, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x6c, 0x69, 0x73,
+ 0x74, 0x65, 0x6e, 0x65, 0x72, 0x29, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x53, 0x71,
+ 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
+ 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x3d, 0x3d, 0x3d, 0x20, 0x48, 0x41,
+ 0x4e, 0x44, 0x4c, 0x49, 0x4e, 0x47, 0x20, 0x53, 0x51, 0x4c, 0x20, 0x51,
+ 0x55, 0x45, 0x52, 0x59, 0x20, 0x52, 0x45, 0x53, 0x50, 0x4f, 0x4e, 0x53,
+ 0x45, 0x20, 0x3d, 0x3d, 0x3d, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27,
+ 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x3a, 0x27, 0x2c, 0x20,
+ 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x29, 0x3b, 0x0a, 0x0a,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x41, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x20,
+ 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x53, 0x51, 0x4c, 0x20,
+ 0x71, 0x75, 0x65, 0x72, 0x79, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
+ 0x73, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x72, 0x65, 0x63, 0x65, 0x69,
+ 0x76, 0x65, 0x64, 0x0a, 0x20, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
+ 0x79, 0x53, 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73,
+ 0x75, 0x6c, 0x74, 0x73, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x6c,
+ 0x65, 0x61, 0x6e, 0x20, 0x75, 0x70, 0x20, 0x61, 0x6e, 0x79, 0x20, 0x70,
+ 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x71, 0x75, 0x65, 0x72, 0x69,
+ 0x65, 0x73, 0x0a, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73,
+ 0x74, 0x5f, 0x69, 0x64, 0x20, 0x26, 0x26, 0x20, 0x70, 0x65, 0x6e, 0x64,
+ 0x69, 0x6e, 0x67, 0x53, 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65,
+ 0x73, 0x2e, 0x68, 0x61, 0x73, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x69,
+ 0x64, 0x29, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x70, 0x65,
+ 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x71, 0x6c, 0x51, 0x75, 0x65, 0x72,
+ 0x69, 0x65, 0x73, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x28, 0x72,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x72, 0x65, 0x71, 0x75,
+ 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x7d,
+ 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x48, 0x65, 0x6c, 0x70, 0x65,
+ 0x72, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74,
+ 0x6f, 0x20, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x20, 0x48, 0x54, 0x4d,
+ 0x4c, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x65,
+ 0x73, 0x63, 0x61, 0x70, 0x65, 0x48, 0x74, 0x6d, 0x6c, 0x28, 0x74, 0x65,
+ 0x78, 0x74, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x64, 0x69, 0x76, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
+ 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45,
+ 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x64, 0x69, 0x76, 0x27,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x64, 0x69, 0x76, 0x2e, 0x74, 0x65, 0x78,
+ 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x74,
+ 0x65, 0x78, 0x74, 0x3b, 0x0a, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72,
+ 0x6e, 0x20, 0x64, 0x69, 0x76, 0x2e, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x48,
+ 0x54, 0x4d, 0x4c, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x49,
+ 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x20, 0x71, 0x75,
+ 0x65, 0x72, 0x79, 0x20, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x20,
+ 0x6f, 0x6e, 0x20, 0x70, 0x61, 0x67, 0x65, 0x20, 0x6c, 0x6f, 0x61, 0x64,
+ 0x0a, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x64,
+ 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e,
+ 0x65, 0x72, 0x28, 0x27, 0x44, 0x4f, 0x4d, 0x43, 0x6f, 0x6e, 0x74, 0x65,
+ 0x6e, 0x74, 0x4c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x27, 0x2c, 0x20, 0x66,
+ 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x51, 0x75, 0x65, 0x72,
+ 0x79, 0x44, 0x72, 0x6f, 0x70, 0x64, 0x6f, 0x77, 0x6e, 0x28, 0x29, 0x3b,
+ 0x0a, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x52, 0x45, 0x4c,
+ 0x41, 0x59, 0x20, 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x20, 0x61, 0x6e,
+ 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x66, 0x75, 0x6e, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x73, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x6c, 0x61, 0x79,
+ 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x73, 0x20, 0x3d, 0x20, 0x64, 0x6f,
+ 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79,
+ 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x41, 0x6c, 0x6c, 0x28,
+ 0x27, 0x2e, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x6c, 0x65, 0x74, 0x74,
+ 0x65, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65,
+ 0x74, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x64,
+ 0x65, 0x78, 0x20, 0x3d, 0x20, 0x30, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x61, 0x6e,
+ 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x28,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x20, 0x75, 0x6e,
+ 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x66, 0x72, 0x6f, 0x6d,
+ 0x20, 0x61, 0x6c, 0x6c, 0x20, 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x73,
+ 0x20, 0x66, 0x69, 0x72, 0x73, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x73, 0x2e, 0x66,
+ 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28, 0x6c, 0x65, 0x74, 0x74, 0x65,
+ 0x72, 0x20, 0x3d, 0x3e, 0x20, 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x2e,
+ 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x72, 0x65,
+ 0x6d, 0x6f, 0x76, 0x65, 0x28, 0x27, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c,
+ 0x69, 0x6e, 0x65, 0x64, 0x27, 0x29, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x41, 0x64, 0x64,
+ 0x20, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x74,
+ 0x6f, 0x20, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x20, 0x6c, 0x65,
+ 0x74, 0x74, 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x73,
+ 0x5b, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x64, 0x65,
+ 0x78, 0x5d, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72,
+ 0x73, 0x5b, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x64,
+ 0x65, 0x78, 0x5d, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73,
+ 0x74, 0x2e, 0x61, 0x64, 0x64, 0x28, 0x27, 0x75, 0x6e, 0x64, 0x65, 0x72,
+ 0x6c, 0x69, 0x6e, 0x65, 0x64, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4d, 0x6f, 0x76, 0x65, 0x20,
+ 0x74, 0x6f, 0x20, 0x6e, 0x65, 0x78, 0x74, 0x20, 0x6c, 0x65, 0x74, 0x74,
+ 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x2b,
+ 0x2b, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x49, 0x66, 0x20, 0x77, 0x65, 0x27, 0x76, 0x65, 0x20,
+ 0x67, 0x6f, 0x6e, 0x65, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68,
+ 0x20, 0x61, 0x6c, 0x6c, 0x20, 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x73,
+ 0x2c, 0x20, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x20, 0x61, 0x6c, 0x6c,
+ 0x20, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20,
+ 0x61, 0x6e, 0x64, 0x20, 0x77, 0x61, 0x69, 0x74, 0x20, 0x34, 0x30, 0x30,
+ 0x30, 0x6d, 0x73, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x20, 0x72, 0x65, 0x73,
+ 0x74, 0x61, 0x72, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74,
+ 0x49, 0x6e, 0x64, 0x65, 0x78, 0x20, 0x3e, 0x20, 0x6c, 0x65, 0x74, 0x74,
+ 0x65, 0x72, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x20,
+ 0x61, 0x6c, 0x6c, 0x20, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e,
+ 0x65, 0x73, 0x20, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x20, 0x74, 0x68,
+ 0x65, 0x20, 0x70, 0x61, 0x75, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x74,
+ 0x65, 0x72, 0x73, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28,
+ 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x20, 0x3d, 0x3e, 0x20, 0x6c, 0x65,
+ 0x74, 0x74, 0x65, 0x72, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69,
+ 0x73, 0x74, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x28, 0x27, 0x75,
+ 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x64, 0x27, 0x29, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x73, 0x65, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74,
+ 0x28, 0x28, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x64, 0x65,
+ 0x78, 0x20, 0x3d, 0x20, 0x30, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61,
+ 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72,
+ 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x2c, 0x20, 0x34, 0x30, 0x30, 0x30, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20,
+ 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4f, 0x74,
+ 0x68, 0x65, 0x72, 0x77, 0x69, 0x73, 0x65, 0x2c, 0x20, 0x63, 0x6f, 0x6e,
+ 0x74, 0x69, 0x6e, 0x75, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x6e, 0x65, 0x78,
+ 0x74, 0x20, 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x20, 0x61, 0x66, 0x74,
+ 0x65, 0x72, 0x20, 0x32, 0x30, 0x30, 0x6d, 0x73, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65, 0x74,
+ 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x28, 0x61, 0x6e, 0x69, 0x6d,
+ 0x61, 0x74, 0x65, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x2c, 0x20, 0x31,
+ 0x30, 0x30, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x74, 0x61, 0x72, 0x74, 0x20, 0x74,
+ 0x68, 0x65, 0x20, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x65,
+ 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x28, 0x29, 0x3b, 0x0a, 0x7d, 0x0a,
+ 0x0a, 0x2f, 0x2f, 0x20, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
+ 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
+ 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
+ 0x0a, 0x2f, 0x2f, 0x20, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x20, 0x54,
+ 0x4f, 0x47, 0x47, 0x4c, 0x45, 0x20, 0x42, 0x55, 0x54, 0x54, 0x4f, 0x4e,
+ 0x20, 0x43, 0x4f, 0x4d, 0x50, 0x4f, 0x4e, 0x45, 0x4e, 0x54, 0x0a, 0x2f,
+ 0x2f, 0x20, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
+ 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
+ 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x0a, 0x0a,
+ 0x2f, 0x2f, 0x20, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x20, 0x72, 0x65,
+ 0x67, 0x69, 0x73, 0x74, 0x72, 0x79, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x63,
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65,
+ 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73, 0x0a, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x54, 0x6f, 0x67,
+ 0x67, 0x6c, 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73, 0x20, 0x3d,
+ 0x20, 0x6e, 0x65, 0x77, 0x20, 0x4d, 0x61, 0x70, 0x28, 0x29, 0x3b, 0x0a,
+ 0x0a, 0x2f, 0x2f, 0x20, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x54, 0x6f,
+ 0x67, 0x67, 0x6c, 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x63,
+ 0x6c, 0x61, 0x73, 0x73, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x72, 0x69,
+ 0x2d, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x62, 0x6f, 0x6f, 0x6c, 0x65,
+ 0x61, 0x6e, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x74, 0x6f,
+ 0x67, 0x67, 0x6c, 0x65, 0x73, 0x0a, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x20,
+ 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x54, 0x6f, 0x67, 0x67, 0x6c, 0x65,
+ 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x6f, 0x72,
+ 0x28, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4b, 0x65, 0x79, 0x2c, 0x20,
+ 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x2c, 0x20, 0x6f,
+ 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x3d, 0x20, 0x7b, 0x7d, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74,
+ 0x68, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4b, 0x65,
+ 0x79, 0x20, 0x3d, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4b, 0x65,
+ 0x79, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74,
0x68, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65,
- 0x72, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20, 0x62,
- 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68,
- 0x69, 0x73, 0x2e, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x3d, 0x20,
- 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65,
- 0x61, 0x74, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27,
- 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x62,
- 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e,
- 0x61, 0x6d, 0x65, 0x20, 0x3d, 0x20, 0x27, 0x63, 0x6f, 0x6e, 0x66, 0x69,
- 0x67, 0x2d, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x2d, 0x62, 0x74, 0x6e,
- 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74,
+ 0x72, 0x20, 0x3d, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65,
+ 0x72, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74,
+ 0x68, 0x69, 0x73, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x3d, 0x20,
+ 0x27, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x27, 0x3b, 0x20, 0x2f, 0x2f, 0x20,
+ 0x53, 0x74, 0x61, 0x72, 0x74, 0x20, 0x69, 0x6e, 0x20, 0x66, 0x61, 0x6c,
+ 0x73, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x62, 0x79, 0x20,
+ 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x70, 0x65, 0x6e,
+ 0x64, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20,
+ 0x6e, 0x75, 0x6c, 0x6c, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f,
+ 0x6e, 0x73, 0x20, 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x61, 0x74, 0x61, 0x54,
+ 0x79, 0x70, 0x65, 0x3a, 0x20, 0x27, 0x62, 0x6f, 0x6f, 0x6c, 0x65, 0x61,
+ 0x6e, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79,
+ 0x3a, 0x20, 0x27, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e,
+ 0x67, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2e, 0x2e, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f,
+ 0x6e, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74,
+ 0x68, 0x69, 0x73, 0x2e, 0x72, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x28, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68,
+ 0x69, 0x73, 0x2e, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x45, 0x76, 0x65,
+ 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73, 0x28,
+ 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x20,
+ 0x74, 0x68, 0x69, 0x73, 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20,
+ 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x54,
+ 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73,
+ 0x2e, 0x73, 0x65, 0x74, 0x28, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4b,
+ 0x65, 0x79, 0x2c, 0x20, 0x74, 0x68, 0x69, 0x73, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
+ 0x6e, 0x64, 0x65, 0x72, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
+ 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x3d, 0x3d, 0x3d, 0x20, 0x52, 0x45,
+ 0x4e, 0x44, 0x45, 0x52, 0x49, 0x4e, 0x47, 0x20, 0x43, 0x4f, 0x4e, 0x46,
+ 0x49, 0x47, 0x20, 0x54, 0x4f, 0x47, 0x47, 0x4c, 0x45, 0x20, 0x42, 0x55,
+ 0x54, 0x54, 0x4f, 0x4e, 0x20, 0x3d, 0x3d, 0x3d, 0x27, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x6f, 0x6e,
+ 0x66, 0x69, 0x67, 0x20, 0x6b, 0x65, 0x79, 0x3a, 0x27, 0x2c, 0x20, 0x74,
+ 0x68, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4b, 0x65,
+ 0x79, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
+ 0x27, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x3a, 0x27,
+ 0x2c, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61,
+ 0x69, 0x6e, 0x65, 0x72, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74,
+ 0x65, 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x65, 0x6c, 0x65,
+ 0x6d, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e,
+ 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
+ 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
+ 0x74, 0x28, 0x27, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69,
+ 0x73, 0x2e, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x2e, 0x63, 0x6c, 0x61,
+ 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x3d, 0x20, 0x27, 0x63, 0x6f,
+ 0x6e, 0x66, 0x69, 0x67, 0x2d, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x2d,
+ 0x62, 0x74, 0x6e, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x62, 0x75, 0x74, 0x74, 0x6f,
+ 0x6e, 0x2e, 0x73, 0x65, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75,
+ 0x74, 0x65, 0x28, 0x27, 0x64, 0x61, 0x74, 0x61, 0x2d, 0x63, 0x6f, 0x6e,
+ 0x66, 0x69, 0x67, 0x2d, 0x6b, 0x65, 0x79, 0x27, 0x2c, 0x20, 0x74, 0x68,
+ 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4b, 0x65, 0x79,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74,
0x68, 0x69, 0x73, 0x2e, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x2e, 0x73,
0x65, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x28,
- 0x27, 0x64, 0x61, 0x74, 0x61, 0x2d, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
- 0x2d, 0x6b, 0x65, 0x79, 0x27, 0x2c, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e,
- 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4b, 0x65, 0x79, 0x29, 0x3b, 0x0a,
+ 0x27, 0x64, 0x61, 0x74, 0x61, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x65, 0x27,
+ 0x2c, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x65,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74,
+ 0x68, 0x69, 0x73, 0x2e, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x2e, 0x73,
+ 0x65, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x28,
+ 0x27, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x27, 0x2c, 0x20, 0x60, 0x54, 0x6f,
+ 0x67, 0x67, 0x6c, 0x65, 0x20, 0x24, 0x7b, 0x74, 0x68, 0x69, 0x73, 0x2e,
+ 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4b, 0x65, 0x79, 0x7d, 0x60, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68,
+ 0x69, 0x73, 0x2e, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x63, 0x6f,
+ 0x6e, 0x28, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
+ 0x67, 0x28, 0x27, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x65, 0x6c,
+ 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
+ 0x64, 0x3a, 0x27, 0x2c, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x62, 0x75,
+ 0x74, 0x74, 0x6f, 0x6e, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
+ 0x6f, 0x67, 0x28, 0x27, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65,
+ 0x72, 0x20, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x20, 0x61, 0x70, 0x70,
+ 0x65, 0x6e, 0x64, 0x3a, 0x27, 0x2c, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e,
+ 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x6f, 0x6e,
+ 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x20, 0x63, 0x68, 0x69, 0x6c, 0x64,
+ 0x72, 0x65, 0x6e, 0x20, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x3a, 0x27,
+ 0x2c, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61,
+ 0x69, 0x6e, 0x65, 0x72, 0x2e, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65,
+ 0x6e, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x29, 0x3b, 0x0a, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73,
- 0x2e, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x2e, 0x73, 0x65, 0x74, 0x41,
- 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x28, 0x27, 0x64, 0x61,
- 0x74, 0x61, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x65, 0x27, 0x2c, 0x20, 0x74,
- 0x68, 0x69, 0x73, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x65, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73,
- 0x2e, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x2e, 0x73, 0x65, 0x74, 0x41,
- 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x28, 0x27, 0x74, 0x69,
- 0x74, 0x6c, 0x65, 0x27, 0x2c, 0x20, 0x60, 0x54, 0x6f, 0x67, 0x67, 0x6c,
- 0x65, 0x20, 0x24, 0x7b, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6e,
- 0x66, 0x69, 0x67, 0x4b, 0x65, 0x79, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e,
- 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x63, 0x6f, 0x6e, 0x28, 0x29,
- 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27,
- 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x65, 0x6c, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x20, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x3a, 0x27,
- 0x2c, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x62, 0x75, 0x74, 0x74, 0x6f,
- 0x6e, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
- 0x27, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x20, 0x62,
- 0x65, 0x66, 0x6f, 0x72, 0x65, 0x20, 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64,
- 0x3a, 0x27, 0x2c, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6e,
- 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
- 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69,
- 0x6e, 0x65, 0x72, 0x20, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e,
- 0x20, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x3a, 0x27, 0x2c, 0x20, 0x74,
- 0x68, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65,
- 0x72, 0x2e, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x2e, 0x6c,
- 0x65, 0x6e, 0x67, 0x74, 0x68, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x63, 0x6f,
- 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x2e, 0x61, 0x70, 0x70, 0x65,
- 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28, 0x74, 0x68, 0x69, 0x73,
- 0x2e, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f,
- 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x6f, 0x6e, 0x74,
- 0x61, 0x69, 0x6e, 0x65, 0x72, 0x20, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72,
- 0x65, 0x6e, 0x20, 0x61, 0x66, 0x74, 0x65, 0x72, 0x3a, 0x27, 0x2c, 0x20,
- 0x74, 0x68, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e,
- 0x65, 0x72, 0x2e, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x2e,
- 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
- 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e,
- 0x20, 0x69, 0x6e, 0x20, 0x44, 0x4f, 0x4d, 0x3a, 0x27, 0x2c, 0x20, 0x64,
- 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x6f, 0x6e, 0x74,
- 0x61, 0x69, 0x6e, 0x73, 0x28, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x62, 0x75,
- 0x74, 0x74, 0x6f, 0x6e, 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x49, 0x63, 0x6f, 0x6e, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
- 0x69, 0x63, 0x6f, 0x6e, 0x73, 0x20, 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x27, 0x74,
- 0x72, 0x75, 0x65, 0x27, 0x3a, 0x20, 0x27, 0x49, 0x27, 0x2c, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x27,
- 0x66, 0x61, 0x6c, 0x73, 0x65, 0x27, 0x3a, 0x20, 0x27, 0x30, 0x27, 0x2c,
+ 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x2e, 0x61,
+ 0x70, 0x70, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28, 0x74,
+ 0x68, 0x69, 0x73, 0x2e, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x29, 0x3b,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43,
+ 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x20, 0x63, 0x68, 0x69,
+ 0x6c, 0x64, 0x72, 0x65, 0x6e, 0x20, 0x61, 0x66, 0x74, 0x65, 0x72, 0x3a,
+ 0x27, 0x2c, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6e, 0x74,
+ 0x61, 0x69, 0x6e, 0x65, 0x72, 0x2e, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72,
+ 0x65, 0x6e, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x42, 0x75, 0x74,
+ 0x74, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x20, 0x44, 0x4f, 0x4d, 0x3a, 0x27,
+ 0x2c, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63,
+ 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73, 0x28, 0x74, 0x68, 0x69, 0x73,
+ 0x2e, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x29, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75, 0x70,
+ 0x64, 0x61, 0x74, 0x65, 0x49, 0x63, 0x6f, 0x6e, 0x28, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x69, 0x63, 0x6f, 0x6e, 0x73, 0x20, 0x3d, 0x20, 0x7b,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x27, 0x69, 0x6e, 0x64, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e,
- 0x61, 0x74, 0x65, 0x27, 0x3a, 0x20, 0x27, 0xe2, 0x9f, 0xb3, 0x27, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x3b, 0x0a, 0x20,
+ 0x20, 0x27, 0x74, 0x72, 0x75, 0x65, 0x27, 0x3a, 0x20, 0x27, 0x49, 0x27,
+ 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x27, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x27, 0x3a, 0x20, 0x27,
+ 0x30, 0x27, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x27, 0x69, 0x6e, 0x64, 0x65, 0x74, 0x65, 0x72,
+ 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x27, 0x3a, 0x20, 0x27, 0xe2, 0x9f,
+ 0xb3, 0x27, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68,
+ 0x69, 0x73, 0x2e, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x2e, 0x74, 0x65,
+ 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20,
+ 0x69, 0x63, 0x6f, 0x6e, 0x73, 0x5b, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x73,
+ 0x74, 0x61, 0x74, 0x65, 0x5d, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x3f, 0x27,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x73, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x28, 0x6e, 0x65,
+ 0x77, 0x53, 0x74, 0x61, 0x74, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x5b, 0x27,
+ 0x74, 0x72, 0x75, 0x65, 0x27, 0x2c, 0x20, 0x27, 0x66, 0x61, 0x6c, 0x73,
+ 0x65, 0x27, 0x2c, 0x20, 0x27, 0x69, 0x6e, 0x64, 0x65, 0x74, 0x65, 0x72,
+ 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x27, 0x5d, 0x2e, 0x69, 0x6e, 0x63,
+ 0x6c, 0x75, 0x64, 0x65, 0x73, 0x28, 0x6e, 0x65, 0x77, 0x53, 0x74, 0x61,
+ 0x74, 0x65, 0x29, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e,
- 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x43,
- 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x69, 0x63, 0x6f,
- 0x6e, 0x73, 0x5b, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x5d, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x3f, 0x27, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65,
- 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x28, 0x6e, 0x65, 0x77, 0x53, 0x74,
- 0x61, 0x74, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x5b, 0x27, 0x74, 0x72, 0x75,
- 0x65, 0x27, 0x2c, 0x20, 0x27, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x27, 0x2c,
- 0x20, 0x27, 0x69, 0x6e, 0x64, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e,
- 0x61, 0x74, 0x65, 0x27, 0x5d, 0x2e, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64,
- 0x65, 0x73, 0x28, 0x6e, 0x65, 0x77, 0x53, 0x74, 0x61, 0x74, 0x65, 0x29,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x73, 0x74, 0x61,
- 0x74, 0x65, 0x20, 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x53, 0x74, 0x61, 0x74,
- 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x62, 0x75, 0x74, 0x74,
- 0x6f, 0x6e, 0x2e, 0x73, 0x65, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62,
- 0x75, 0x74, 0x65, 0x28, 0x27, 0x64, 0x61, 0x74, 0x61, 0x2d, 0x73, 0x74,
- 0x61, 0x74, 0x65, 0x27, 0x2c, 0x20, 0x6e, 0x65, 0x77, 0x53, 0x74, 0x61,
- 0x74, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x75, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x49, 0x63, 0x6f, 0x6e, 0x28, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x61, 0x73, 0x79,
- 0x6e, 0x63, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x28, 0x29, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x3d,
- 0x3d, 0x3d, 0x20, 0x54, 0x4f, 0x47, 0x47, 0x4c, 0x45, 0x20, 0x42, 0x55,
- 0x54, 0x54, 0x4f, 0x4e, 0x20, 0x43, 0x4c, 0x49, 0x43, 0x4b, 0x45, 0x44,
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x53,
+ 0x74, 0x61, 0x74, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x62,
+ 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x2e, 0x73, 0x65, 0x74, 0x41, 0x74, 0x74,
+ 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x28, 0x27, 0x64, 0x61, 0x74, 0x61,
+ 0x2d, 0x73, 0x74, 0x61, 0x74, 0x65, 0x27, 0x2c, 0x20, 0x6e, 0x65, 0x77,
+ 0x53, 0x74, 0x61, 0x74, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73,
+ 0x2e, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x63, 0x6f, 0x6e, 0x28,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x61, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65,
+ 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
+ 0x28, 0x27, 0x3d, 0x3d, 0x3d, 0x20, 0x54, 0x4f, 0x47, 0x47, 0x4c, 0x45,
+ 0x20, 0x42, 0x55, 0x54, 0x54, 0x4f, 0x4e, 0x20, 0x43, 0x4c, 0x49, 0x43,
+ 0x4b, 0x45, 0x44, 0x20, 0x3d, 0x3d, 0x3d, 0x27, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f,
+ 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x75, 0x72, 0x72,
+ 0x65, 0x6e, 0x74, 0x20, 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x27, 0x2c,
+ 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x65, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x42,
+ 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
+ 0x74, 0x3a, 0x27, 0x2c, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x62, 0x75,
+ 0x74, 0x74, 0x6f, 0x6e, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x68, 0x69, 0x73,
+ 0x2e, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27,
+ 0x69, 0x6e, 0x64, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74,
+ 0x65, 0x27, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
+ 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x49, 0x67, 0x6e, 0x6f, 0x72,
+ 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x2d,
+ 0x20, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x6c, 0x79, 0x20, 0x69,
+ 0x6e, 0x64, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x20,
+ 0x2f, 0x2f, 0x20, 0x44, 0x6f, 0x6e, 0x27, 0x74, 0x20, 0x74, 0x6f, 0x67,
+ 0x67, 0x6c, 0x65, 0x20, 0x77, 0x68, 0x69, 0x6c, 0x65, 0x20, 0x70, 0x65,
+ 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2f, 0x2f, 0x20, 0x54, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x62,
+ 0x65, 0x74, 0x77, 0x65, 0x65, 0x6e, 0x20, 0x74, 0x72, 0x75, 0x65, 0x20,
+ 0x61, 0x6e, 0x64, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x6e, 0x65, 0x77, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x74,
+ 0x68, 0x69, 0x73, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x3d, 0x3d,
+ 0x3d, 0x20, 0x27, 0x74, 0x72, 0x75, 0x65, 0x27, 0x20, 0x3f, 0x20, 0x27,
+ 0x66, 0x61, 0x6c, 0x73, 0x65, 0x27, 0x20, 0x3a, 0x20, 0x27, 0x74, 0x72,
+ 0x75, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e,
+ 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x6e, 0x65, 0x77,
+ 0x56, 0x61, 0x6c, 0x75, 0x65, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
+ 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x53, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67,
+ 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x61, 0x6e, 0x64, 0x3a, 0x27, 0x2c, 0x20, 0x6e, 0x65, 0x77, 0x56, 0x61,
+ 0x6c, 0x75, 0x65, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x65, 0x74, 0x20, 0x74, 0x6f,
+ 0x20, 0x69, 0x6e, 0x64, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61,
+ 0x74, 0x65, 0x20, 0x77, 0x68, 0x69, 0x6c, 0x65, 0x20, 0x77, 0x61, 0x69,
+ 0x74, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x73, 0x65, 0x74, 0x53, 0x74, 0x61,
+ 0x74, 0x65, 0x28, 0x27, 0x69, 0x6e, 0x64, 0x65, 0x74, 0x65, 0x72, 0x6d,
+ 0x69, 0x6e, 0x61, 0x74, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65,
+ 0x61, 0x74, 0x65, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x6f,
+ 0x62, 0x6a, 0x65, 0x63, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x66,
+ 0x69, 0x67, 0x4f, 0x62, 0x6a, 0x20, 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x65,
+ 0x79, 0x3a, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6e, 0x66,
+ 0x69, 0x67, 0x4b, 0x65, 0x79, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65,
+ 0x3a, 0x20, 0x6e, 0x65, 0x77, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x2c, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x20, 0x74,
+ 0x68, 0x69, 0x73, 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e,
+ 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x2c, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x61,
+ 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x3a, 0x20, 0x74, 0x68, 0x69, 0x73,
+ 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x63, 0x61, 0x74,
+ 0x65, 0x67, 0x6f, 0x72, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
+ 0x67, 0x28, 0x27, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x6f, 0x62,
+ 0x6a, 0x65, 0x63, 0x74, 0x3a, 0x27, 0x2c, 0x20, 0x63, 0x6f, 0x6e, 0x66,
+ 0x69, 0x67, 0x4f, 0x62, 0x6a, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f,
+ 0x2f, 0x20, 0x53, 0x65, 0x6e, 0x64, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69,
+ 0x67, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x63, 0x6f, 0x6d,
+ 0x6d, 0x61, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
+ 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x53, 0x65, 0x6e, 0x64, 0x69, 0x6e,
+ 0x67, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x75, 0x70, 0x64,
+ 0x61, 0x74, 0x65, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e,
+ 0x2e, 0x2e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20,
+ 0x73, 0x65, 0x6e, 0x64, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x55, 0x70,
+ 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x28,
+ 0x5b, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4f, 0x62, 0x6a, 0x5d, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
+ 0x67, 0x28, 0x27, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x75, 0x70,
+ 0x64, 0x61, 0x74, 0x65, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
+ 0x20, 0x73, 0x65, 0x6e, 0x74, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73,
+ 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f,
+ 0x67, 0x28, 0x60, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x74, 0x6f,
+ 0x67, 0x67, 0x6c, 0x65, 0x20, 0x73, 0x65, 0x6e, 0x74, 0x3a, 0x20, 0x24,
+ 0x7b, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
+ 0x4b, 0x65, 0x79, 0x7d, 0x20, 0x3d, 0x20, 0x24, 0x7b, 0x6e, 0x65, 0x77,
+ 0x56, 0x61, 0x6c, 0x75, 0x65, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x49, 0x4e,
+ 0x46, 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x6f, 0x6e,
+ 0x66, 0x69, 0x67, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x63,
+ 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65,
+ 0x64, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64,
+ 0x20, 0x74, 0x6f, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x20, 0x63, 0x6f, 0x6e,
+ 0x66, 0x69, 0x67, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x3a, 0x20,
+ 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73,
+ 0x61, 0x67, 0x65, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f,
+ 0x52, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x52, 0x65, 0x76, 0x65,
+ 0x72, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f,
+ 0x75, 0x73, 0x20, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x6f, 0x6e, 0x20,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x73,
+ 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x28, 0x27, 0x66, 0x61, 0x6c,
+ 0x73, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x70,
+ 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x20,
+ 0x3d, 0x20, 0x6e, 0x75, 0x6c, 0x6c, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x28, 0x73, 0x75, 0x63, 0x63,
+ 0x65, 0x73, 0x73, 0x2c, 0x20, 0x61, 0x63, 0x74, 0x75, 0x61, 0x6c, 0x56,
+ 0x61, 0x6c, 0x75, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
+ 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x3d, 0x3d, 0x3d, 0x20, 0x48, 0x41, 0x4e,
+ 0x44, 0x4c, 0x45, 0x20, 0x52, 0x45, 0x53, 0x50, 0x4f, 0x4e, 0x53, 0x45,
0x20, 0x3d, 0x3d, 0x3d, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
- 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74,
- 0x20, 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x27, 0x2c, 0x20, 0x74, 0x68,
- 0x69, 0x73, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x65, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f,
- 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x42, 0x75, 0x74, 0x74,
- 0x6f, 0x6e, 0x20, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x3a, 0x27,
- 0x2c, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x62, 0x75, 0x74, 0x74, 0x6f,
- 0x6e, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x73, 0x74,
- 0x61, 0x74, 0x65, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x69, 0x6e, 0x64,
- 0x65, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x27, 0x29,
+ 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73,
+ 0x3a, 0x27, 0x2c, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x41,
+ 0x63, 0x74, 0x75, 0x61, 0x6c, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a,
+ 0x27, 0x2c, 0x20, 0x61, 0x63, 0x74, 0x75, 0x61, 0x6c, 0x56, 0x61, 0x6c,
+ 0x75, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
+ 0x28, 0x27, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x76, 0x61,
+ 0x6c, 0x75, 0x65, 0x3a, 0x27, 0x2c, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e,
+ 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65,
+ 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x69, 0x66, 0x20, 0x28, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x29,
0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
- 0x6f, 0x67, 0x28, 0x27, 0x49, 0x67, 0x6e, 0x6f, 0x72, 0x69, 0x6e, 0x67,
- 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x2d, 0x20, 0x63, 0x75,
- 0x72, 0x72, 0x65, 0x6e, 0x74, 0x6c, 0x79, 0x20, 0x69, 0x6e, 0x64, 0x65,
- 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x27, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x20, 0x2f, 0x2f, 0x20,
- 0x44, 0x6f, 0x6e, 0x27, 0x74, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65,
- 0x20, 0x77, 0x68, 0x69, 0x6c, 0x65, 0x20, 0x70, 0x65, 0x6e, 0x64, 0x69,
- 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x54, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x62, 0x65, 0x74, 0x77,
- 0x65, 0x65, 0x6e, 0x20, 0x74, 0x72, 0x75, 0x65, 0x20, 0x61, 0x6e, 0x64,
- 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x65, 0x77,
- 0x56, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x74, 0x68, 0x69, 0x73,
- 0x2e, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27,
- 0x74, 0x72, 0x75, 0x65, 0x27, 0x20, 0x3f, 0x20, 0x27, 0x66, 0x61, 0x6c,
- 0x73, 0x65, 0x27, 0x20, 0x3a, 0x20, 0x27, 0x74, 0x72, 0x75, 0x65, 0x27,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68,
- 0x69, 0x73, 0x2e, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x56, 0x61,
- 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x6e, 0x65, 0x77, 0x56, 0x61, 0x6c,
- 0x75, 0x65, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
- 0x28, 0x27, 0x53, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f,
- 0x67, 0x67, 0x6c, 0x65, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
- 0x3a, 0x27, 0x2c, 0x20, 0x6e, 0x65, 0x77, 0x56, 0x61, 0x6c, 0x75, 0x65,
- 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x53, 0x65, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x69, 0x6e,
- 0x64, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x20,
- 0x77, 0x68, 0x69, 0x6c, 0x65, 0x20, 0x77, 0x61, 0x69, 0x74, 0x69, 0x6e,
- 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68,
- 0x69, 0x73, 0x2e, 0x73, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x28,
- 0x27, 0x69, 0x6e, 0x64, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61,
- 0x74, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
- 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x6f, 0x62, 0x6a, 0x65,
- 0x63, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4f,
- 0x62, 0x6a, 0x20, 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x65, 0x79, 0x3a, 0x20,
- 0x74, 0x68, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4b,
- 0x65, 0x79, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x20, 0x6e,
- 0x65, 0x77, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x61, 0x74,
- 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x20, 0x74, 0x68, 0x69, 0x73,
- 0x2e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x64, 0x61, 0x74,
- 0x61, 0x54, 0x79, 0x70, 0x65, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x61, 0x74, 0x65, 0x67,
- 0x6f, 0x72, 0x79, 0x3a, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x6f, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f,
- 0x72, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27,
- 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x6f, 0x62, 0x6a, 0x65, 0x63,
- 0x74, 0x3a, 0x27, 0x2c, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4f,
- 0x62, 0x6a, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53,
- 0x65, 0x6e, 0x64, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x75,
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e,
- 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
- 0x67, 0x28, 0x27, 0x53, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x63,
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
- 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x2e, 0x2e, 0x27,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x73, 0x65, 0x6e,
- 0x64, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x55, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x28, 0x5b, 0x63, 0x6f,
- 0x6e, 0x66, 0x69, 0x67, 0x4f, 0x62, 0x6a, 0x5d, 0x29, 0x3b, 0x0a, 0x20,
+ 0x6f, 0x67, 0x28, 0x27, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x20,
+ 0x2d, 0x20, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f,
+ 0x20, 0x61, 0x63, 0x74, 0x75, 0x61, 0x6c, 0x20, 0x73, 0x65, 0x72, 0x76,
+ 0x65, 0x72, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x27, 0x2c, 0x20,
+ 0x61, 0x63, 0x74, 0x75, 0x61, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x73, 0x65, 0x74, 0x53, 0x74,
+ 0x61, 0x74, 0x65, 0x28, 0x61, 0x63, 0x74, 0x75, 0x61, 0x6c, 0x56, 0x61,
+ 0x6c, 0x75, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27,
- 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x73, 0x65,
- 0x6e, 0x74, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x66, 0x75,
- 0x6c, 0x6c, 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x60,
- 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c,
- 0x65, 0x20, 0x73, 0x65, 0x6e, 0x74, 0x3a, 0x20, 0x24, 0x7b, 0x74, 0x68,
- 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4b, 0x65, 0x79,
- 0x7d, 0x20, 0x3d, 0x20, 0x24, 0x7b, 0x6e, 0x65, 0x77, 0x56, 0x61, 0x6c,
- 0x75, 0x65, 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
- 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
- 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x63, 0x6f, 0x6d, 0x6d,
- 0x61, 0x6e, 0x64, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x3a, 0x27,
- 0x2c, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f,
- 0x67, 0x28, 0x60, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f,
- 0x20, 0x73, 0x65, 0x6e, 0x64, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
- 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x3a, 0x20, 0x24, 0x7b, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
- 0x7d, 0x60, 0x2c, 0x20, 0x27, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x52, 0x65, 0x76, 0x65, 0x72, 0x74, 0x20,
- 0x74, 0x6f, 0x20, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x20,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x6f, 0x6e, 0x20, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x73, 0x65, 0x74, 0x53,
- 0x74, 0x61, 0x74, 0x65, 0x28, 0x27, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x27,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x70, 0x65, 0x6e, 0x64,
- 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x6e,
- 0x75, 0x6c, 0x6c, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x28, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73,
- 0x2c, 0x20, 0x61, 0x63, 0x74, 0x75, 0x61, 0x6c, 0x56, 0x61, 0x6c, 0x75,
- 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
- 0x28, 0x27, 0x3d, 0x3d, 0x3d, 0x20, 0x48, 0x41, 0x4e, 0x44, 0x4c, 0x45,
- 0x20, 0x52, 0x45, 0x53, 0x50, 0x4f, 0x4e, 0x53, 0x45, 0x20, 0x3d, 0x3d,
- 0x3d, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
- 0x28, 0x27, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x3a, 0x27, 0x2c,
- 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f,
- 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x41, 0x63, 0x74, 0x75,
- 0x61, 0x6c, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x27, 0x2c, 0x20,
- 0x61, 0x63, 0x74, 0x75, 0x61, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x50,
- 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65,
- 0x3a, 0x27, 0x2c, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x70, 0x65, 0x6e,
- 0x64, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x29, 0x3b, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
- 0x27, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x20, 0x2d, 0x20, 0x73,
- 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x63,
- 0x74, 0x75, 0x61, 0x6c, 0x20, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x20,
- 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x27, 0x2c, 0x20, 0x61, 0x63, 0x74,
- 0x75, 0x61, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x29, 0x3b, 0x0a, 0x20,
+ 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x2d, 0x20, 0x72, 0x65, 0x76,
+ 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x20, 0x66, 0x61,
+ 0x6c, 0x73, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x65, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2f, 0x2f, 0x20, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x2d,
+ 0x20, 0x72, 0x65, 0x76, 0x65, 0x72, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x66,
+ 0x61, 0x6c, 0x73, 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x65, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74,
0x68, 0x69, 0x73, 0x2e, 0x73, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65,
- 0x28, 0x61, 0x63, 0x74, 0x75, 0x61, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x46, 0x61, 0x69,
- 0x6c, 0x65, 0x64, 0x20, 0x2d, 0x20, 0x72, 0x65, 0x76, 0x65, 0x72, 0x74,
- 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65,
- 0x20, 0x73, 0x74, 0x61, 0x74, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x2d, 0x20, 0x72, 0x65,
- 0x76, 0x65, 0x72, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x66, 0x61, 0x6c, 0x73,
- 0x65, 0x20, 0x73, 0x74, 0x61, 0x74, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73,
- 0x2e, 0x73, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x28, 0x27, 0x66,
- 0x61, 0x6c, 0x73, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x70, 0x65, 0x6e, 0x64, 0x69,
- 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x6e, 0x75,
- 0x6c, 0x6c, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
- 0x27, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x76, 0x61, 0x6c,
- 0x75, 0x65, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x65, 0x64, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x45, 0x76, 0x65, 0x6e, 0x74,
- 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73, 0x28, 0x29, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68,
- 0x69, 0x73, 0x2e, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x2e, 0x61, 0x64,
- 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e,
- 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20,
- 0x28, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x74,
- 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x28, 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x48, 0x65,
- 0x6c, 0x70, 0x65, 0x72, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
- 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x65, 0x74, 0x20, 0x61, 0x20, 0x72,
- 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x65, 0x64, 0x20, 0x74, 0x6f,
- 0x67, 0x67, 0x6c, 0x65, 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x0a,
- 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x67, 0x65, 0x74,
- 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x54, 0x6f, 0x67, 0x67, 0x6c, 0x65,
- 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x28, 0x63, 0x6f, 0x6e, 0x66, 0x69,
- 0x67, 0x4b, 0x65, 0x79, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69,
- 0x67, 0x54, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f,
- 0x6e, 0x73, 0x2e, 0x67, 0x65, 0x74, 0x28, 0x63, 0x6f, 0x6e, 0x66, 0x69,
- 0x67, 0x4b, 0x65, 0x79, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f,
- 0x20, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20,
- 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x77, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63,
- 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x62, 0x61, 0x73, 0x65,
- 0x64, 0x20, 0x2d, 0x20, 0x6e, 0x6f, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c,
- 0x65, 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x6e, 0x65, 0x65,
- 0x64, 0x65, 0x64, 0x0a, 0x2f, 0x2f, 0x20, 0x4d, 0x6f, 0x6e, 0x69, 0x74,
- 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61,
- 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x20, 0x61, 0x63, 0x74, 0x69,
- 0x76, 0x61, 0x74, 0x65, 0x73, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x73,
- 0x6f, 0x6d, 0x65, 0x6f, 0x6e, 0x65, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63,
- 0x72, 0x69, 0x62, 0x65, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x6b, 0x69, 0x6e,
- 0x64, 0x20, 0x32, 0x34, 0x35, 0x36, 0x37, 0x20, 0x65, 0x76, 0x65, 0x6e,
- 0x74, 0x73, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
- 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x4d, 0x6f,
- 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x54, 0x6f, 0x67, 0x67,
- 0x6c, 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x28, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
- 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x3d, 0x3d, 0x3d, 0x20, 0x4d, 0x4f,
- 0x4e, 0x49, 0x54, 0x4f, 0x52, 0x49, 0x4e, 0x47, 0x20, 0x49, 0x53, 0x20,
- 0x4e, 0x4f, 0x57, 0x20, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50,
- 0x54, 0x49, 0x4f, 0x4e, 0x2d, 0x42, 0x41, 0x53, 0x45, 0x44, 0x20, 0x3d,
- 0x3d, 0x3d, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x4e,
- 0x6f, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x62, 0x75, 0x74,
- 0x74, 0x6f, 0x6e, 0x20, 0x6e, 0x65, 0x65, 0x64, 0x65, 0x64, 0x20, 0x2d,
- 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20,
- 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x73, 0x20, 0x61, 0x75,
- 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x20,
- 0x77, 0x68, 0x65, 0x6e, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
- 0x62, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x20, 0x6b, 0x69, 0x6e, 0x64,
- 0x20, 0x32, 0x34, 0x35, 0x36, 0x37, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x4d, 0x6f, 0x6e, 0x69, 0x74,
- 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d,
- 0x20, 0x69, 0x73, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x62, 0x61, 0x73, 0x65, 0x64, 0x20, 0x2d,
- 0x20, 0x6e, 0x6f, 0x20, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x20, 0x74,
- 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72,
- 0x65, 0x64, 0x27, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e,
- 0x20, 0x6e, 0x75, 0x6c, 0x6c, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f,
- 0x20, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20,
- 0x69, 0x73, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x2d, 0x62, 0x61, 0x73, 0x65, 0x64, 0x20, 0x2d, 0x20,
- 0x6e, 0x6f, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x62, 0x75,
- 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x6e,
- 0x65, 0x65, 0x64, 0x65, 0x64, 0x0a, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
- 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x48, 0x61, 0x6e, 0x64,
- 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x55, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x3d,
- 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69,
- 0x67, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x3b, 0x0a, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x43,
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x3d, 0x20, 0x66, 0x75,
- 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x72, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x28, 0x27, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x70, 0x65,
+ 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d,
+ 0x20, 0x6e, 0x75, 0x6c, 0x6c, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
- 0x6f, 0x67, 0x28, 0x27, 0x3d, 0x3d, 0x3d, 0x20, 0x43, 0x4f, 0x4e, 0x46,
- 0x49, 0x47, 0x20, 0x55, 0x50, 0x44, 0x41, 0x54, 0x45, 0x20, 0x52, 0x45,
- 0x53, 0x50, 0x4f, 0x4e, 0x53, 0x45, 0x20, 0x48, 0x41, 0x4e, 0x44, 0x4c,
- 0x45, 0x52, 0x20, 0x3d, 0x3d, 0x3d, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
- 0x67, 0x28, 0x27, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20,
- 0x64, 0x61, 0x74, 0x61, 0x3a, 0x27, 0x2c, 0x20, 0x72, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x61, 0x6c, 0x6c, 0x20,
- 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x20, 0x68, 0x61, 0x6e,
- 0x64, 0x6c, 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x72, 0x69,
- 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x43,
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x28, 0x72, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4d, 0x6f, 0x6e, 0x69, 0x74,
- 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x77,
- 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x2d, 0x62, 0x61, 0x73, 0x65, 0x64, 0x20, 0x2d, 0x20, 0x6e, 0x6f,
+ 0x6f, 0x67, 0x28, 0x27, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x20,
+ 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x65,
+ 0x64, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x45, 0x76,
+ 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x73,
+ 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x74, 0x68, 0x69, 0x73, 0x2e, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e,
+ 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73,
+ 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b,
+ 0x27, 0x2c, 0x20, 0x28, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x74, 0x68, 0x69,
+ 0x73, 0x2e, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x28, 0x29, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f,
+ 0x20, 0x48, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x20, 0x66, 0x75, 0x6e, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x65, 0x74, 0x20,
+ 0x61, 0x20, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x65, 0x64,
0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x62, 0x75, 0x74, 0x74,
- 0x6f, 0x6e, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
- 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x4d, 0x6f, 0x6e, 0x69, 0x74,
- 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d,
- 0x20, 0x69, 0x73, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x62, 0x61, 0x73, 0x65, 0x64, 0x20, 0x2d,
- 0x20, 0x6e, 0x6f, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x62,
- 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x68, 0x61,
- 0x6e, 0x64, 0x6c, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x7d, 0x3b, 0x0a, 0x0a,
- 0x2f, 0x2f, 0x20, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e,
- 0x67, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x77, 0x20, 0x73, 0x75, 0x62,
- 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x62, 0x61,
- 0x73, 0x65, 0x64, 0x20, 0x2d, 0x20, 0x6e, 0x6f, 0x20, 0x74, 0x6f, 0x67,
- 0x67, 0x6c, 0x65, 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73, 0x20,
- 0x6e, 0x65, 0x65, 0x64, 0x65, 0x64, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69,
- 0x7a, 0x65, 0x54, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x42, 0x75, 0x74, 0x74,
- 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x66, 0x69,
- 0x67, 0x28, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x61, 0x74, 0x61,
+ 0x6f, 0x6e, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
+ 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x54, 0x6f, 0x67,
+ 0x67, 0x6c, 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x28, 0x63, 0x6f,
+ 0x6e, 0x66, 0x69, 0x67, 0x4b, 0x65, 0x79, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x63, 0x6f,
+ 0x6e, 0x66, 0x69, 0x67, 0x54, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x42, 0x75,
+ 0x74, 0x74, 0x6f, 0x6e, 0x73, 0x2e, 0x67, 0x65, 0x74, 0x28, 0x63, 0x6f,
+ 0x6e, 0x66, 0x69, 0x67, 0x4b, 0x65, 0x79, 0x29, 0x3b, 0x0a, 0x7d, 0x0a,
+ 0x0a, 0x2f, 0x2f, 0x20, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69,
+ 0x6e, 0x67, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x77, 0x20, 0x73, 0x75,
+ 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x62,
+ 0x61, 0x73, 0x65, 0x64, 0x20, 0x2d, 0x20, 0x6e, 0x6f, 0x20, 0x74, 0x6f,
+ 0x67, 0x67, 0x6c, 0x65, 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20,
+ 0x6e, 0x65, 0x65, 0x64, 0x65, 0x64, 0x0a, 0x2f, 0x2f, 0x20, 0x4d, 0x6f,
+ 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x75, 0x74,
+ 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x20, 0x61,
+ 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x73, 0x20, 0x77, 0x68, 0x65,
+ 0x6e, 0x20, 0x73, 0x6f, 0x6d, 0x65, 0x6f, 0x6e, 0x65, 0x20, 0x73, 0x75,
+ 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x73, 0x20, 0x74, 0x6f, 0x20,
+ 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x32, 0x34, 0x35, 0x36, 0x37, 0x20, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x73, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a,
+ 0x65, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x54,
+ 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x28,
0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x3d, 0x3d, 0x3d,
0x20, 0x4d, 0x4f, 0x4e, 0x49, 0x54, 0x4f, 0x52, 0x49, 0x4e, 0x47, 0x20,
- 0x49, 0x53, 0x20, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54,
- 0x49, 0x4f, 0x4e, 0x2d, 0x42, 0x41, 0x53, 0x45, 0x44, 0x20, 0x3d, 0x3d,
- 0x3d, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x4e, 0x6f,
- 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x62, 0x75, 0x74, 0x74,
- 0x6f, 0x6e, 0x73, 0x20, 0x6e, 0x65, 0x65, 0x64, 0x65, 0x64, 0x20, 0x2d,
- 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20,
- 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x73, 0x20, 0x61, 0x75,
- 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x20,
- 0x77, 0x68, 0x65, 0x6e, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
- 0x62, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x20, 0x6b, 0x69, 0x6e, 0x64,
- 0x20, 0x32, 0x34, 0x35, 0x36, 0x37, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x4d, 0x6f, 0x6e, 0x69, 0x74,
- 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d,
- 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x64,
- 0x20, 0x2d, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x2d, 0x62, 0x61, 0x73, 0x65, 0x64, 0x20, 0x61, 0x63,
- 0x74, 0x69, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x72, 0x65, 0x61,
- 0x64, 0x79, 0x27, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46, 0x4f, 0x27, 0x29,
- 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x3d, 0x3d, 0x3d, 0x3d,
+ 0x49, 0x53, 0x20, 0x4e, 0x4f, 0x57, 0x20, 0x53, 0x55, 0x42, 0x53, 0x43,
+ 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x2d, 0x42, 0x41, 0x53, 0x45,
+ 0x44, 0x20, 0x3d, 0x3d, 0x3d, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
+ 0x28, 0x27, 0x4e, 0x6f, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20,
+ 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x6e, 0x65, 0x65, 0x64, 0x65,
+ 0x64, 0x20, 0x2d, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69,
+ 0x6e, 0x67, 0x20, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x73,
+ 0x20, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c,
+ 0x6c, 0x79, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x73, 0x75, 0x62, 0x73,
+ 0x63, 0x72, 0x69, 0x62, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x20, 0x6b,
+ 0x69, 0x6e, 0x64, 0x20, 0x32, 0x34, 0x35, 0x36, 0x37, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x4d, 0x6f,
+ 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x73, 0x79, 0x73,
+ 0x74, 0x65, 0x6d, 0x20, 0x69, 0x73, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63,
+ 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x62, 0x61, 0x73, 0x65,
+ 0x64, 0x20, 0x2d, 0x20, 0x6e, 0x6f, 0x20, 0x6d, 0x61, 0x6e, 0x75, 0x61,
+ 0x6c, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x72, 0x65, 0x71,
+ 0x75, 0x69, 0x72, 0x65, 0x64, 0x27, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46,
+ 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74,
+ 0x75, 0x72, 0x6e, 0x20, 0x6e, 0x75, 0x6c, 0x6c, 0x3b, 0x0a, 0x7d, 0x0a,
+ 0x0a, 0x2f, 0x2f, 0x20, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69,
+ 0x6e, 0x67, 0x20, 0x69, 0x73, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
+ 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x62, 0x61, 0x73, 0x65, 0x64,
+ 0x20, 0x2d, 0x20, 0x6e, 0x6f, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65,
+ 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x70,
+ 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x69, 0x6e,
+ 0x67, 0x20, 0x6e, 0x65, 0x65, 0x64, 0x65, 0x64, 0x0a, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x48,
+ 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x55,
+ 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x65, 0x20, 0x3d, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x43, 0x6f,
+ 0x6e, 0x66, 0x69, 0x67, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x3b, 0x0a, 0x68, 0x61, 0x6e, 0x64,
+ 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x55, 0x70, 0x64, 0x61,
+ 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x20, 0x3d,
+ 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x72, 0x65,
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
+ 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x3d, 0x3d, 0x3d, 0x20, 0x43,
+ 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x20, 0x55, 0x50, 0x44, 0x41, 0x54, 0x45,
+ 0x20, 0x52, 0x45, 0x53, 0x50, 0x4f, 0x4e, 0x53, 0x45, 0x20, 0x48, 0x41,
+ 0x4e, 0x44, 0x4c, 0x45, 0x52, 0x20, 0x3d, 0x3d, 0x3d, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
+ 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
+ 0x73, 0x65, 0x20, 0x64, 0x61, 0x74, 0x61, 0x3a, 0x27, 0x2c, 0x20, 0x72,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x29,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x61,
+ 0x6c, 0x6c, 0x20, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x20,
+ 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x48, 0x61, 0x6e, 0x64,
+ 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x55, 0x70, 0x64, 0x61,
+ 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x28, 0x72,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x29,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x4d, 0x6f,
+ 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x69, 0x73, 0x20,
+ 0x6e, 0x6f, 0x77, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
+ 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x62, 0x61, 0x73, 0x65, 0x64, 0x20, 0x2d,
+ 0x20, 0x6e, 0x6f, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x62,
+ 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x75, 0x70,
+ 0x64, 0x61, 0x74, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x4d, 0x6f,
+ 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x73, 0x79, 0x73,
+ 0x74, 0x65, 0x6d, 0x20, 0x69, 0x73, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63,
+ 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x62, 0x61, 0x73, 0x65,
+ 0x64, 0x20, 0x2d, 0x20, 0x6e, 0x6f, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c,
+ 0x65, 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73, 0x20, 0x74, 0x6f,
+ 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x7d,
+ 0x3b, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f,
+ 0x72, 0x69, 0x6e, 0x67, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x6f, 0x77, 0x20,
+ 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
+ 0x2d, 0x62, 0x61, 0x73, 0x65, 0x64, 0x20, 0x2d, 0x20, 0x6e, 0x6f, 0x20,
+ 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f,
+ 0x6e, 0x73, 0x20, 0x6e, 0x65, 0x65, 0x64, 0x65, 0x64, 0x0a, 0x66, 0x75,
+ 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69,
+ 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x54, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x42,
+ 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x43, 0x6f,
+ 0x6e, 0x66, 0x69, 0x67, 0x28, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44,
+ 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27,
+ 0x3d, 0x3d, 0x3d, 0x20, 0x4d, 0x4f, 0x4e, 0x49, 0x54, 0x4f, 0x52, 0x49,
+ 0x4e, 0x47, 0x20, 0x49, 0x53, 0x20, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52,
+ 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x2d, 0x42, 0x41, 0x53, 0x45, 0x44,
+ 0x20, 0x3d, 0x3d, 0x3d, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
+ 0x27, 0x4e, 0x6f, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x62,
+ 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x73, 0x20, 0x6e, 0x65, 0x65, 0x64, 0x65,
+ 0x64, 0x20, 0x2d, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69,
+ 0x6e, 0x67, 0x20, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x73,
+ 0x20, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c,
+ 0x6c, 0x79, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x73, 0x75, 0x62, 0x73,
+ 0x63, 0x72, 0x69, 0x62, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x20, 0x6b,
+ 0x69, 0x6e, 0x64, 0x20, 0x32, 0x34, 0x35, 0x36, 0x37, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x4d, 0x6f,
+ 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x73, 0x79, 0x73,
+ 0x74, 0x65, 0x6d, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69,
+ 0x7a, 0x65, 0x64, 0x20, 0x2d, 0x20, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
+ 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x62, 0x61, 0x73, 0x65, 0x64,
+ 0x20, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20,
+ 0x72, 0x65, 0x61, 0x64, 0x79, 0x27, 0x2c, 0x20, 0x27, 0x49, 0x4e, 0x46,
+ 0x4f, 0x27, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x3d,
0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
- 0x3d, 0x3d, 0x3d, 0x3d, 0x0a, 0x2f, 0x2f, 0x20, 0x52, 0x45, 0x4c, 0x41,
- 0x59, 0x20, 0x45, 0x56, 0x45, 0x4e, 0x54, 0x53, 0x20, 0x46, 0x55, 0x4e,
- 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x53, 0x0a, 0x2f, 0x2f, 0x20, 0x3d, 0x3d,
+ 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x0a, 0x2f, 0x2f, 0x20, 0x52,
+ 0x45, 0x4c, 0x41, 0x59, 0x20, 0x45, 0x56, 0x45, 0x4e, 0x54, 0x53, 0x20,
+ 0x46, 0x55, 0x4e, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x53, 0x0a, 0x2f, 0x2f,
+ 0x20, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
- 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d,
- 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x0a, 0x0a, 0x0a, 0x2f, 0x2f, 0x20,
- 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x72, 0x65, 0x63, 0x65, 0x69,
- 0x76, 0x65, 0x64, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x73, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
- 0x6e, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x52, 0x65, 0x6c, 0x61,
- 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76,
- 0x65, 0x64, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
- 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x69, 0x6e,
- 0x67, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x76, 0x65, 0x6e,
- 0x74, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x6b,
- 0x69, 0x6e, 0x64, 0x2c, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b,
- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68,
- 0x20, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x6b, 0x69, 0x6e, 0x64,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x61, 0x73, 0x65, 0x20, 0x30, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x6f, 0x70, 0x75,
- 0x6c, 0x61, 0x74, 0x65, 0x4b, 0x69, 0x6e, 0x64, 0x30, 0x46, 0x6f, 0x72,
+ 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x3d, 0x0a, 0x0a, 0x0a,
+ 0x2f, 0x2f, 0x20, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x72, 0x65,
+ 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79,
+ 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x0a, 0x66, 0x75, 0x6e, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x52,
+ 0x65, 0x6c, 0x61, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x63,
+ 0x65, 0x69, 0x76, 0x65, 0x64, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f,
+ 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x48, 0x61, 0x6e, 0x64,
+ 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x2c, 0x20, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x77, 0x69,
+ 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x6b,
+ 0x69, 0x6e, 0x64, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x61, 0x73, 0x65, 0x20, 0x30, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70,
+ 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x4b, 0x69, 0x6e, 0x64, 0x30,
+ 0x46, 0x6f, 0x72, 0x6d, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x62, 0x72, 0x65, 0x61, 0x6b, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x61, 0x73, 0x65, 0x20, 0x31, 0x30, 0x30,
+ 0x35, 0x30, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65,
+ 0x4b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x46, 0x6f, 0x72,
0x6d, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x72,
0x65, 0x61, 0x6b, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x61, 0x73, 0x65, 0x20, 0x31, 0x30, 0x30, 0x35, 0x30, 0x3a,
+ 0x20, 0x63, 0x61, 0x73, 0x65, 0x20, 0x31, 0x30, 0x30, 0x30, 0x32, 0x3a,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x4b, 0x69, 0x6e,
- 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x46, 0x6f, 0x72, 0x6d, 0x28, 0x65,
+ 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x46, 0x6f, 0x72, 0x6d, 0x28, 0x65,
0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x72, 0x65, 0x61, 0x6b,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x61,
- 0x73, 0x65, 0x20, 0x31, 0x30, 0x30, 0x30, 0x32, 0x3a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x6f,
- 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x4b, 0x69, 0x6e, 0x64, 0x31, 0x30,
- 0x30, 0x30, 0x32, 0x46, 0x6f, 0x72, 0x6d, 0x28, 0x65, 0x76, 0x65, 0x6e,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x65,
+ 0x66, 0x61, 0x75, 0x6c, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f,
+ 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x55, 0x6e, 0x6b, 0x6e,
+ 0x6f, 0x77, 0x6e, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x3a, 0x27, 0x2c, 0x20,
+ 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f,
+ 0x20, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x4b, 0x69,
+ 0x6e, 0x64, 0x20, 0x30, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x20, 0x28, 0x55,
+ 0x73, 0x65, 0x72, 0x20, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61,
+ 0x29, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x70,
+ 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x4b, 0x69, 0x6e, 0x64, 0x30,
+ 0x46, 0x6f, 0x72, 0x6d, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x20, 0x3d,
+ 0x20, 0x4a, 0x53, 0x4f, 0x4e, 0x2e, 0x70, 0x61, 0x72, 0x73, 0x65, 0x28,
+ 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x62, 0x72, 0x65, 0x61, 0x6b, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x64, 0x65, 0x66, 0x61, 0x75,
- 0x6c, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
- 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x55, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e,
- 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74,
- 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x2e, 0x6b, 0x69, 0x6e, 0x64, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x50, 0x6f,
- 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20,
- 0x30, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x20, 0x28, 0x55, 0x73, 0x65, 0x72,
- 0x20, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x29, 0x0a, 0x66,
+ 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
+ 0x27, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x20,
+ 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x30, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x20,
+ 0x77, 0x69, 0x74, 0x68, 0x3a, 0x27, 0x2c, 0x20, 0x6d, 0x65, 0x74, 0x61,
+ 0x64, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74,
+ 0x65, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x20, 0x66, 0x69, 0x65, 0x6c, 0x64,
+ 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x46, 0x69, 0x65, 0x6c,
+ 0x64, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74,
+ 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42,
+ 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x6e,
+ 0x61, 0x6d, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x61, 0x62, 0x6f,
+ 0x75, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x3d, 0x20, 0x64, 0x6f,
+ 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c,
+ 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b,
+ 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x61, 0x62, 0x6f, 0x75, 0x74, 0x27, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x74, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x46,
+ 0x69, 0x65, 0x6c, 0x64, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
+ 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65,
+ 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64,
+ 0x30, 0x2d, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x65,
+ 0x6c, 0x64, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e,
+ 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
+ 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d,
+ 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x6e, 0x69, 0x70, 0x30, 0x35, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x3d,
+ 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65,
+ 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64,
+ 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x6e, 0x69, 0x70, 0x30,
+ 0x35, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x77, 0x65, 0x62, 0x73, 0x69,
+ 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x3d, 0x20, 0x64, 0x6f,
+ 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c,
+ 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b,
+ 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65,
+ 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x46, 0x69, 0x65,
+ 0x6c, 0x64, 0x29, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x46, 0x69, 0x65, 0x6c,
+ 0x64, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x6d, 0x65,
+ 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x6e, 0x61, 0x6d, 0x65, 0x20,
+ 0x7c, 0x7c, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x61, 0x62, 0x6f, 0x75, 0x74,
+ 0x46, 0x69, 0x65, 0x6c, 0x64, 0x29, 0x20, 0x61, 0x62, 0x6f, 0x75, 0x74,
+ 0x46, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20,
+ 0x3d, 0x20, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x61,
+ 0x62, 0x6f, 0x75, 0x74, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x27, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64,
+ 0x29, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x46, 0x69, 0x65,
+ 0x6c, 0x64, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x6d,
+ 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x69, 0x63, 0x74,
+ 0x75, 0x72, 0x65, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x62,
+ 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x29, 0x20,
+ 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x2e,
+ 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x6d, 0x65, 0x74, 0x61,
+ 0x64, 0x61, 0x74, 0x61, 0x2e, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x20,
+ 0x7c, 0x7c, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x6e, 0x69, 0x70, 0x30, 0x35,
+ 0x46, 0x69, 0x65, 0x6c, 0x64, 0x29, 0x20, 0x6e, 0x69, 0x70, 0x30, 0x35,
+ 0x46, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20,
+ 0x3d, 0x20, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x6e,
+ 0x69, 0x70, 0x30, 0x35, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x27, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64,
+ 0x29, 0x20, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x46, 0x69, 0x65,
+ 0x6c, 0x64, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x6d,
+ 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x77, 0x65, 0x62, 0x73,
+ 0x69, 0x74, 0x65, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77,
+ 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64,
+ 0x30, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20, 0x27,
+ 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x20, 0x6c, 0x6f, 0x61,
+ 0x64, 0x65, 0x64, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x72, 0x65, 0x6c,
+ 0x61, 0x79, 0x27, 0x2c, 0x20, 0x27, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73,
+ 0x73, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20,
+ 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x28, 0x27, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x70, 0x6f, 0x70,
+ 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x4b, 0x69, 0x6e, 0x64,
+ 0x20, 0x30, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x3a, 0x27, 0x2c, 0x20, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75,
+ 0x73, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x73, 0x74, 0x61,
+ 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x6d, 0x65, 0x74,
+ 0x61, 0x64, 0x61, 0x74, 0x61, 0x27, 0x2c, 0x20, 0x27, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
+ 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61,
+ 0x74, 0x65, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30, 0x35,
+ 0x30, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x20, 0x28, 0x44, 0x4d, 0x20, 0x52,
+ 0x65, 0x6c, 0x61, 0x79, 0x20, 0x4c, 0x69, 0x73, 0x74, 0x29, 0x0a, 0x66,
0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x70, 0x6f, 0x70, 0x75,
- 0x6c, 0x61, 0x74, 0x65, 0x4b, 0x69, 0x6e, 0x64, 0x30, 0x46, 0x6f, 0x72,
- 0x6d, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6d,
- 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x20, 0x3d, 0x20, 0x4a, 0x53,
- 0x4f, 0x4e, 0x2e, 0x70, 0x61, 0x72, 0x73, 0x65, 0x28, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x29, 0x3b,
+ 0x6c, 0x61, 0x74, 0x65, 0x4b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35,
+ 0x30, 0x46, 0x6f, 0x72, 0x6d, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x50, 0x6f,
0x70, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x4b, 0x69, 0x6e,
- 0x64, 0x20, 0x30, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x20, 0x77, 0x69, 0x74,
- 0x68, 0x3a, 0x27, 0x2c, 0x20, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74,
- 0x61, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x20, 0x66,
- 0x6f, 0x72, 0x6d, 0x20, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x3d,
- 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65,
- 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64,
- 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x6e, 0x61, 0x6d, 0x65,
- 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x61, 0x62, 0x6f, 0x75, 0x74, 0x46,
- 0x69, 0x65, 0x6c, 0x64, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64,
- 0x30, 0x2d, 0x61, 0x62, 0x6f, 0x75, 0x74, 0x27, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x46, 0x69, 0x65, 0x6c,
+ 0x64, 0x20, 0x31, 0x30, 0x30, 0x35, 0x30, 0x20, 0x66, 0x6f, 0x72, 0x6d,
+ 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x74, 0x61, 0x67, 0x73, 0x3a, 0x27,
+ 0x2c, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x74, 0x61, 0x67, 0x73,
+ 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x45, 0x78, 0x74, 0x72, 0x61, 0x63, 0x74, 0x20, 0x72,
+ 0x65, 0x6c, 0x61, 0x79, 0x20, 0x55, 0x52, 0x4c, 0x73, 0x20, 0x66, 0x72,
+ 0x6f, 0x6d, 0x20, 0x22, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x22, 0x20, 0x74,
+ 0x61, 0x67, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x55,
+ 0x72, 0x6c, 0x73, 0x20, 0x3d, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e,
+ 0x74, 0x61, 0x67, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2e, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72,
+ 0x28, 0x74, 0x61, 0x67, 0x20, 0x3d, 0x3e, 0x20, 0x74, 0x61, 0x67, 0x5b,
+ 0x30, 0x5d, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x72, 0x65, 0x6c, 0x61,
+ 0x79, 0x27, 0x20, 0x26, 0x26, 0x20, 0x74, 0x61, 0x67, 0x5b, 0x31, 0x5d,
+ 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x2e, 0x6d, 0x61, 0x70, 0x28, 0x74, 0x61, 0x67, 0x20, 0x3d,
+ 0x3e, 0x20, 0x74, 0x61, 0x67, 0x5b, 0x31, 0x5d, 0x29, 0x3b, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x46, 0x69, 0x65, 0x6c,
0x64, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74,
0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42,
- 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x70,
- 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
- 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x20,
- 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67,
- 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49,
- 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x62, 0x61, 0x6e,
- 0x6e, 0x65, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6e, 0x69, 0x70,
- 0x30, 0x35, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x3d, 0x20, 0x64, 0x6f,
- 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b,
- 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x6e, 0x69, 0x70, 0x30, 0x35, 0x27, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x46,
- 0x69, 0x65, 0x6c, 0x64, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
+ 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30,
+ 0x35, 0x30, 0x2d, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
+ 0x28, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x46, 0x69, 0x65, 0x6c, 0x64,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x46, 0x69,
+ 0x65, 0x6c, 0x64, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20,
+ 0x72, 0x65, 0x6c, 0x61, 0x79, 0x55, 0x72, 0x6c, 0x73, 0x2e, 0x6a, 0x6f,
+ 0x69, 0x6e, 0x28, 0x27, 0x5c, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61,
+ 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30,
+ 0x35, 0x30, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20,
+ 0x27, 0x44, 0x4d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6c, 0x69,
+ 0x73, 0x74, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x20, 0x66, 0x72,
+ 0x6f, 0x6d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x27, 0x2c, 0x20, 0x27,
+ 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x27, 0x29, 0x3b, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20,
+ 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
+ 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6e,
+ 0x67, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30, 0x35, 0x30,
+ 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28,
+ 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x2d, 0x73,
+ 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x44,
+ 0x4d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6c, 0x69, 0x73, 0x74,
+ 0x27, 0x2c, 0x20, 0x27, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x27, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f,
+ 0x20, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x4b, 0x69,
+ 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30, 0x30, 0x32, 0x20, 0x66, 0x6f, 0x72,
+ 0x6d, 0x20, 0x28, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x4c, 0x69, 0x73,
+ 0x74, 0x29, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
+ 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x4b, 0x69, 0x6e, 0x64,
+ 0x31, 0x30, 0x30, 0x30, 0x32, 0x46, 0x6f, 0x72, 0x6d, 0x28, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74,
+ 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
+ 0x28, 0x27, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6e, 0x67,
+ 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30, 0x30, 0x32, 0x20,
+ 0x66, 0x6f, 0x72, 0x6d, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x74, 0x61,
+ 0x67, 0x73, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e,
+ 0x74, 0x61, 0x67, 0x73, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x6c, 0x65, 0x61, 0x72,
+ 0x20, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x6e,
+ 0x74, 0x72, 0x69, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x74,
+ 0x61, 0x69, 0x6e, 0x65, 0x72, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
+ 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d,
+ 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e,
+ 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x2d, 0x72, 0x65, 0x6c, 0x61, 0x79,
+ 0x2d, 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x27, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x2e, 0x69,
+ 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27,
+ 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
+ 0x20, 0x45, 0x78, 0x74, 0x72, 0x61, 0x63, 0x74, 0x20, 0x72, 0x65, 0x6c,
+ 0x61, 0x79, 0x20, 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x20, 0x66,
+ 0x72, 0x6f, 0x6d, 0x20, 0x22, 0x72, 0x22, 0x20, 0x74, 0x61, 0x67, 0x73,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x76, 0x65,
+ 0x6e, 0x74, 0x2e, 0x74, 0x61, 0x67, 0x73, 0x2e, 0x66, 0x6f, 0x72, 0x45,
+ 0x61, 0x63, 0x68, 0x28, 0x74, 0x61, 0x67, 0x20, 0x3d, 0x3e, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x74, 0x61, 0x67, 0x5b, 0x30, 0x5d, 0x20,
+ 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x72, 0x27, 0x20, 0x26, 0x26, 0x20, 0x74,
+ 0x61, 0x67, 0x5b, 0x31, 0x5d, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x75, 0x72, 0x6c, 0x20, 0x3d,
+ 0x20, 0x74, 0x61, 0x67, 0x5b, 0x31, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6d, 0x61, 0x72, 0x6b, 0x65,
+ 0x72, 0x20, 0x3d, 0x20, 0x74, 0x61, 0x67, 0x5b, 0x32, 0x5d, 0x20, 0x7c,
+ 0x7c, 0x20, 0x27, 0x72, 0x65, 0x61, 0x64, 0x27, 0x3b, 0x20, 0x2f, 0x2f,
+ 0x20, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x20, 0x74, 0x6f, 0x20,
+ 0x72, 0x65, 0x61, 0x64, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x20, 0x6d,
+ 0x61, 0x72, 0x6b, 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x74, 0x20, 0x72, 0x65, 0x61, 0x64, 0x20, 0x3d, 0x20, 0x6d,
+ 0x61, 0x72, 0x6b, 0x65, 0x72, 0x2e, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64,
+ 0x65, 0x73, 0x28, 0x27, 0x72, 0x65, 0x61, 0x64, 0x27, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x77, 0x72,
+ 0x69, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x72,
+ 0x2e, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x73, 0x28, 0x27, 0x77,
+ 0x72, 0x69, 0x74, 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x61, 0x64, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x45, 0x6e, 0x74,
+ 0x72, 0x79, 0x28, 0x75, 0x72, 0x6c, 0x2c, 0x20, 0x72, 0x65, 0x61, 0x64,
+ 0x2c, 0x20, 0x77, 0x72, 0x69, 0x74, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f,
+ 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69, 0x6e,
+ 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75,
+ 0x73, 0x27, 0x2c, 0x20, 0x27, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6c,
+ 0x69, 0x73, 0x74, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x20, 0x66,
+ 0x72, 0x6f, 0x6d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x27, 0x2c, 0x20,
+ 0x27, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x27, 0x29, 0x3b, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68,
+ 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f,
+ 0x6c, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x69,
+ 0x6e, 0x67, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30, 0x30,
+ 0x32, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
+ 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x2d,
+ 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x20,
+ 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6c, 0x69, 0x73, 0x74, 0x27, 0x2c,
+ 0x20, 0x27, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x53,
+ 0x75, 0x62, 0x6d, 0x69, 0x74, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x30,
+ 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x61, 0x73, 0x79, 0x6e, 0x63,
+ 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x75,
+ 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x30, 0x45, 0x76, 0x65,
+ 0x6e, 0x74, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74,
+ 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28,
+ 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75,
+ 0x73, 0x27, 0x2c, 0x20, 0x27, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x74,
+ 0x69, 0x6e, 0x67, 0x20, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61,
+ 0x2e, 0x2e, 0x2e, 0x27, 0x2c, 0x20, 0x27, 0x69, 0x6e, 0x66, 0x6f, 0x27,
+ 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x20, 0x66,
+ 0x6f, 0x72, 0x6d, 0x20, 0x64, 0x61, 0x74, 0x61, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6d,
+ 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x20, 0x3d, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
+ 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
+ 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x30,
+ 0x2d, 0x6e, 0x61, 0x6d, 0x65, 0x27, 0x29, 0x2e, 0x76, 0x61, 0x6c, 0x75,
+ 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29, 0x2c, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x62,
+ 0x6f, 0x75, 0x74, 0x3a, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e,
+ 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
+ 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d,
+ 0x61, 0x62, 0x6f, 0x75, 0x74, 0x27, 0x29, 0x2e, 0x76, 0x61, 0x6c, 0x75,
+ 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29, 0x2c, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x69,
+ 0x63, 0x74, 0x75, 0x72, 0x65, 0x3a, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65,
0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64,
- 0x30, 0x2d, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x27, 0x29, 0x3b,
- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x29,
- 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x6d, 0x65, 0x74, 0x61, 0x64,
- 0x61, 0x74, 0x61, 0x2e, 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x7c, 0x7c, 0x20,
- 0x27, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x66, 0x20, 0x28, 0x61, 0x62, 0x6f, 0x75, 0x74, 0x46, 0x69, 0x65,
- 0x6c, 0x64, 0x29, 0x20, 0x61, 0x62, 0x6f, 0x75, 0x74, 0x46, 0x69, 0x65,
- 0x6c, 0x64, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x6d,
- 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x61, 0x62, 0x6f, 0x75,
- 0x74, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x70, 0x69, 0x63,
- 0x74, 0x75, 0x72, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x29, 0x20, 0x70,
- 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x2e,
- 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x6d, 0x65, 0x74, 0x61,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
- 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x62, 0x61, 0x6e, 0x6e,
- 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x29, 0x20, 0x62, 0x61, 0x6e,
- 0x6e, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x76, 0x61, 0x6c,
- 0x75, 0x65, 0x20, 0x3d, 0x20, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74,
- 0x61, 0x2e, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x20, 0x7c, 0x7c, 0x20,
- 0x27, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x66, 0x20, 0x28, 0x6e, 0x69, 0x70, 0x30, 0x35, 0x46, 0x69, 0x65,
- 0x6c, 0x64, 0x29, 0x20, 0x6e, 0x69, 0x70, 0x30, 0x35, 0x46, 0x69, 0x65,
- 0x6c, 0x64, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x6d,
- 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x6e, 0x69, 0x70, 0x30,
- 0x35, 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x77, 0x65, 0x62,
- 0x73, 0x69, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x29, 0x20, 0x77,
- 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x2e,
- 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x6d, 0x65, 0x74, 0x61,
- 0x64, 0x61, 0x74, 0x61, 0x2e, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65,
- 0x20, 0x7c, 0x7c, 0x20, 0x27, 0x27, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x30, 0x2d, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x27, 0x29, 0x2e,
+ 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29,
+ 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x3a, 0x20, 0x64, 0x6f,
+ 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c,
+ 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b,
+ 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x27,
+ 0x29, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d,
+ 0x28, 0x29, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x6e, 0x69, 0x70, 0x30, 0x35, 0x3a, 0x20, 0x64,
+ 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45,
+ 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27,
+ 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x6e, 0x69, 0x70, 0x30, 0x35, 0x27,
+ 0x29, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d,
+ 0x28, 0x29, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x3a,
+ 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65,
+ 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64,
+ 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x77, 0x65, 0x62, 0x73,
+ 0x69, 0x74, 0x65, 0x27, 0x29, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e,
+ 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65,
+ 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x20, 0x66, 0x69, 0x65, 0x6c, 0x64,
+ 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x4f, 0x62,
+ 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x6b, 0x65, 0x79, 0x73, 0x28, 0x6d, 0x65,
+ 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x29, 0x2e, 0x66, 0x6f, 0x72, 0x45,
+ 0x61, 0x63, 0x68, 0x28, 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x3e, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61,
+ 0x74, 0x61, 0x5b, 0x6b, 0x65, 0x79, 0x5d, 0x29, 0x20, 0x64, 0x65, 0x6c,
+ 0x65, 0x74, 0x65, 0x20, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61,
+ 0x5b, 0x6b, 0x65, 0x79, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x56, 0x61, 0x6c, 0x69, 0x64,
+ 0x61, 0x74, 0x65, 0x20, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64,
+ 0x20, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x6d, 0x65, 0x74,
+ 0x61, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x6e, 0x61, 0x6d, 0x65, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
+ 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x73, 0x74, 0x61, 0x74,
+ 0x75, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x69,
+ 0x73, 0x20, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x27, 0x2c,
+ 0x20, 0x27, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72,
+ 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x73, 0x65, 0x6e, 0x64,
+ 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x45,
+ 0x76, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x28,
+ 0x30, 0x2c, 0x20, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68,
+ 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69,
+ 0x6e, 0x64, 0x30, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c,
+ 0x20, 0x27, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x20, 0x75,
+ 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65,
+ 0x73, 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x27, 0x2c, 0x20, 0x27, 0x73,
+ 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
+ 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x20, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x74, 0x69, 0x6e, 0x67,
+ 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x30, 0x20, 0x65, 0x76, 0x65, 0x6e,
+ 0x74, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f,
+ 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69, 0x6e,
+ 0x64, 0x30, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20,
+ 0x27, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74,
+ 0x69, 0x6e, 0x67, 0x20, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61,
+ 0x3a, 0x20, 0x27, 0x20, 0x2b, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
+ 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2c, 0x20, 0x27, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x53, 0x75, 0x62, 0x6d, 0x69,
+ 0x74, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30, 0x35, 0x30,
+ 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x61, 0x73, 0x79, 0x6e, 0x63,
+ 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x75,
+ 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35,
+ 0x30, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61,
- 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x73,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x4d, 0x65, 0x74,
- 0x61, 0x64, 0x61, 0x74, 0x61, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64,
- 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x27,
+ 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30,
+ 0x35, 0x30, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20,
+ 0x27, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x20,
+ 0x44, 0x4d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6c, 0x69, 0x73,
+ 0x74, 0x2e, 0x2e, 0x2e, 0x27, 0x2c, 0x20, 0x27, 0x69, 0x6e, 0x66, 0x6f,
+ 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2f, 0x2f, 0x20, 0x50, 0x61, 0x72, 0x73, 0x65, 0x20, 0x74, 0x65,
+ 0x78, 0x74, 0x61, 0x72, 0x65, 0x61, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65,
+ 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x54,
+ 0x65, 0x78, 0x74, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
+ 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
+ 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31,
+ 0x30, 0x30, 0x35, 0x30, 0x2d, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x27,
+ 0x29, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d,
+ 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73,
+ 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x54, 0x65, 0x78,
+ 0x74, 0x2e, 0x73, 0x70, 0x6c, 0x69, 0x74, 0x28, 0x27, 0x5c, 0x6e, 0x27,
+ 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x2e, 0x6d, 0x61, 0x70, 0x28, 0x75, 0x72, 0x6c, 0x20, 0x3d,
+ 0x3e, 0x20, 0x75, 0x72, 0x6c, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29,
+ 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x2e, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x28, 0x75, 0x72,
+ 0x6c, 0x20, 0x3d, 0x3e, 0x20, 0x75, 0x72, 0x6c, 0x2e, 0x6c, 0x65, 0x6e,
+ 0x67, 0x74, 0x68, 0x20, 0x3e, 0x20, 0x30, 0x29, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2e, 0x66, 0x69,
+ 0x6c, 0x74, 0x65, 0x72, 0x28, 0x75, 0x72, 0x6c, 0x20, 0x3d, 0x3e, 0x20,
+ 0x69, 0x73, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x79,
+ 0x55, 0x72, 0x6c, 0x28, 0x75, 0x72, 0x6c, 0x29, 0x29, 0x3b, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74,
+ 0x68, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73,
+ 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b,
+ 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x2d, 0x73, 0x74, 0x61,
+ 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x41, 0x74, 0x20, 0x6c, 0x65,
+ 0x61, 0x73, 0x74, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x76, 0x61, 0x6c, 0x69,
+ 0x64, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x55, 0x52, 0x4c, 0x20,
+ 0x69, 0x73, 0x20, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x27,
+ 0x2c, 0x20, 0x27, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x27, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x73, 0x65, 0x6e,
+ 0x64, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6c, 0x61, 0x79,
+ 0x45, 0x76, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
+ 0x28, 0x31, 0x30, 0x30, 0x35, 0x30, 0x2c, 0x20, 0x7b, 0x20, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x73, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61,
+ 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30,
+ 0x35, 0x30, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20,
+ 0x27, 0x44, 0x4d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6c, 0x69,
+ 0x73, 0x74, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x20, 0x73,
+ 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x27,
0x2c, 0x20, 0x27, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x27, 0x29,
0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74,
0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61,
- 0x74, 0x69, 0x6e, 0x67, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x30, 0x20,
- 0x66, 0x6f, 0x72, 0x6d, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27,
- 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x27, 0x2c, 0x20, 0x27, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x6c, 0x6f,
- 0x61, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61,
- 0x74, 0x61, 0x27, 0x2c, 0x20, 0x27, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x27,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a,
- 0x2f, 0x2f, 0x20, 0x50, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20,
- 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30, 0x35, 0x30, 0x20, 0x66,
- 0x6f, 0x72, 0x6d, 0x20, 0x28, 0x44, 0x4d, 0x20, 0x52, 0x65, 0x6c, 0x61,
- 0x79, 0x20, 0x4c, 0x69, 0x73, 0x74, 0x29, 0x0a, 0x66, 0x75, 0x6e, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74,
- 0x65, 0x4b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x46, 0x6f,
- 0x72, 0x6d, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
- 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x50, 0x6f, 0x70, 0x75, 0x6c,
- 0x61, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31,
- 0x30, 0x30, 0x35, 0x30, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x20, 0x77, 0x69,
- 0x74, 0x68, 0x20, 0x74, 0x61, 0x67, 0x73, 0x3a, 0x27, 0x2c, 0x20, 0x65,
- 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x74, 0x61, 0x67, 0x73, 0x29, 0x3b, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x45, 0x78, 0x74, 0x72, 0x61, 0x63, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61,
- 0x79, 0x20, 0x55, 0x52, 0x4c, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20,
- 0x22, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x22, 0x20, 0x74, 0x61, 0x67, 0x73,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x55, 0x72, 0x6c, 0x73,
- 0x20, 0x3d, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x74, 0x61, 0x67,
- 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x2e, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x28, 0x74, 0x61,
- 0x67, 0x20, 0x3d, 0x3e, 0x20, 0x74, 0x61, 0x67, 0x5b, 0x30, 0x5d, 0x20,
- 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x27, 0x20,
- 0x26, 0x26, 0x20, 0x74, 0x61, 0x67, 0x5b, 0x31, 0x5d, 0x29, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2e,
- 0x6d, 0x61, 0x70, 0x28, 0x74, 0x61, 0x67, 0x20, 0x3d, 0x3e, 0x20, 0x74,
- 0x61, 0x67, 0x5b, 0x31, 0x5d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x73, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x20, 0x3d,
- 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65,
- 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64,
- 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x2d,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65,
- 0x6c, 0x61, 0x79, 0x73, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x46, 0x69, 0x65, 0x6c, 0x64,
- 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c,
- 0x61, 0x79, 0x55, 0x72, 0x6c, 0x73, 0x2e, 0x6a, 0x6f, 0x69, 0x6e, 0x28,
- 0x27, 0x5c, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x2d,
- 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x44, 0x4d,
- 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6c, 0x69, 0x73, 0x74, 0x20,
- 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x27, 0x2c, 0x20, 0x27, 0x73, 0x75, 0x63,
- 0x63, 0x65, 0x73, 0x73, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20,
- 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x4b,
- 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30, 0x35, 0x30, 0x20, 0x66, 0x6f,
- 0x72, 0x6d, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68,
- 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69,
- 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x2d, 0x73, 0x74, 0x61, 0x74,
- 0x75, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20,
- 0x6c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x44, 0x4d, 0x20, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6c, 0x69, 0x73, 0x74, 0x27, 0x2c, 0x20,
- 0x27, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x50, 0x6f,
- 0x70, 0x75, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20,
- 0x31, 0x30, 0x30, 0x30, 0x32, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x20, 0x28,
- 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x4c, 0x69, 0x73, 0x74, 0x29, 0x0a,
- 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x70, 0x6f, 0x70,
- 0x75, 0x6c, 0x61, 0x74, 0x65, 0x4b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30,
- 0x30, 0x32, 0x46, 0x6f, 0x72, 0x6d, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74,
+ 0x74, 0x69, 0x6e, 0x67, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30,
+ 0x30, 0x35, 0x30, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x3a, 0x27, 0x2c,
+ 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61,
+ 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30,
+ 0x35, 0x30, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20,
+ 0x27, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74,
+ 0x69, 0x6e, 0x67, 0x20, 0x44, 0x4d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79,
+ 0x20, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x20, 0x27, 0x20, 0x2b, 0x20, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
+ 0x2c, 0x20, 0x27, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x27, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20,
+ 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20,
+ 0x31, 0x30, 0x30, 0x30, 0x32, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a,
+ 0x61, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x20, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69, 0x6e,
+ 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28,
0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68,
+ 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69,
+ 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x2d, 0x73, 0x74, 0x61, 0x74,
+ 0x75, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74,
+ 0x74, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6c,
+ 0x69, 0x73, 0x74, 0x2e, 0x2e, 0x2e, 0x27, 0x2c, 0x20, 0x27, 0x69, 0x6e,
+ 0x66, 0x6f, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
+ 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x6e, 0x74, 0x72,
+ 0x69, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73,
+ 0x20, 0x3d, 0x20, 0x5b, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x65, 0x6e, 0x74,
+ 0x72, 0x69, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
+ 0x65, 0x6e, 0x74, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x6c,
+ 0x65, 0x63, 0x74, 0x6f, 0x72, 0x41, 0x6c, 0x6c, 0x28, 0x27, 0x2e, 0x72,
+ 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x27, 0x29,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65,
+ 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61,
+ 0x63, 0x68, 0x28, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x20, 0x3d, 0x3e, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x75, 0x72, 0x6c, 0x20,
+ 0x3d, 0x20, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x2e, 0x71, 0x75, 0x65, 0x72,
+ 0x79, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x28, 0x27, 0x2e,
+ 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x75, 0x72, 0x6c, 0x27, 0x29, 0x2e,
+ 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x65, 0x61, 0x64,
+ 0x20, 0x3d, 0x20, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x2e, 0x71, 0x75, 0x65,
+ 0x72, 0x79, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x28, 0x27,
+ 0x2e, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x72, 0x65, 0x61, 0x64, 0x27,
+ 0x29, 0x2e, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x77, 0x72, 0x69, 0x74, 0x65, 0x20, 0x3d,
+ 0x20, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79,
+ 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x28, 0x27, 0x2e, 0x72,
+ 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x77, 0x72, 0x69, 0x74, 0x65, 0x27, 0x29,
+ 0x2e, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
+ 0x66, 0x20, 0x28, 0x75, 0x72, 0x6c, 0x20, 0x26, 0x26, 0x20, 0x69, 0x73,
+ 0x56, 0x61, 0x6c, 0x69, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x55, 0x72,
+ 0x6c, 0x28, 0x75, 0x72, 0x6c, 0x29, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x2e, 0x70, 0x75, 0x73,
+ 0x68, 0x28, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x75, 0x72, 0x6c, 0x3a, 0x20, 0x75, 0x72, 0x6c, 0x2c, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x61, 0x64, 0x3a, 0x20,
+ 0x72, 0x65, 0x61, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x77, 0x72, 0x69, 0x74, 0x65, 0x3a, 0x20, 0x77, 0x72, 0x69,
+ 0x74, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
+ 0x20, 0x28, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x2e, 0x6c, 0x65, 0x6e,
+ 0x67, 0x74, 0x68, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x30, 0x29, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28,
+ 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x2d, 0x73,
+ 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x41, 0x74, 0x20,
+ 0x6c, 0x65, 0x61, 0x73, 0x74, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x76, 0x61,
+ 0x6c, 0x69, 0x64, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x6e,
+ 0x74, 0x72, 0x79, 0x20, 0x69, 0x73, 0x20, 0x72, 0x65, 0x71, 0x75, 0x69,
+ 0x72, 0x65, 0x64, 0x27, 0x2c, 0x20, 0x27, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74,
+ 0x20, 0x73, 0x65, 0x6e, 0x64, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52,
+ 0x65, 0x6c, 0x61, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6d,
+ 0x6d, 0x61, 0x6e, 0x64, 0x28, 0x31, 0x30, 0x30, 0x30, 0x32, 0x2c, 0x20,
+ 0x7b, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x20, 0x7d, 0x29, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f,
+ 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69, 0x6e,
+ 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75,
+ 0x73, 0x27, 0x2c, 0x20, 0x27, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6c,
+ 0x69, 0x73, 0x74, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x20,
+ 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79,
+ 0x27, 0x2c, 0x20, 0x27, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x27,
+ 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61,
+ 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20,
0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x50,
- 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x4b, 0x69,
- 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30, 0x30, 0x32, 0x20, 0x66, 0x6f, 0x72,
- 0x6d, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x74, 0x61, 0x67, 0x73, 0x3a,
- 0x27, 0x2c, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x74, 0x61, 0x67,
- 0x73, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x20, 0x65, 0x78,
- 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x65, 0x6e, 0x74, 0x72, 0x69,
- 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28,
+ 0x27, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x73, 0x75, 0x62, 0x6d, 0x69,
+ 0x74, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31,
+ 0x30, 0x30, 0x30, 0x32, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x3a, 0x27,
+ 0x2c, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74,
+ 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30,
+ 0x30, 0x30, 0x32, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c,
+ 0x20, 0x27, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x75, 0x70, 0x64, 0x61,
+ 0x74, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6c,
+ 0x69, 0x73, 0x74, 0x3a, 0x20, 0x27, 0x20, 0x2b, 0x20, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2c, 0x20,
+ 0x27, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x53, 0x65,
+ 0x6e, 0x64, 0x20, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x63, 0x6f,
+ 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x0a, 0x61, 0x73, 0x79, 0x6e, 0x63, 0x20,
+ 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x65, 0x6e,
+ 0x64, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6c, 0x61, 0x79,
+ 0x45, 0x76, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
+ 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x2c, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74,
+ 0x44, 0x61, 0x74, 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x69, 0x66, 0x20, 0x28, 0x21, 0x69, 0x73, 0x4c, 0x6f, 0x67, 0x67, 0x65,
+ 0x64, 0x49, 0x6e, 0x20, 0x7c, 0x7c, 0x20, 0x21, 0x75, 0x73, 0x65, 0x72,
+ 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20,
+ 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x4d,
+ 0x75, 0x73, 0x74, 0x20, 0x62, 0x65, 0x20, 0x6c, 0x6f, 0x67, 0x67, 0x65,
+ 0x64, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x63, 0x72, 0x65, 0x61,
+ 0x74, 0x65, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x76, 0x65,
+ 0x6e, 0x74, 0x73, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x72,
+ 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x29, 0x20, 0x7b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f,
+ 0x77, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28,
+ 0x27, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x20,
+ 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6e,
+ 0x6f, 0x74, 0x20, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
+ 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x53, 0x65, 0x6e, 0x64, 0x69, 0x6e,
+ 0x67, 0x20, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x65, 0x6c,
+ 0x61, 0x79, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x63, 0x6f, 0x6d,
+ 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x6b, 0x69, 0x6e,
+ 0x64, 0x20, 0x24, 0x7b, 0x6b, 0x69, 0x6e, 0x64, 0x7d, 0x2e, 0x2e, 0x2e,
+ 0x60, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20, 0x63,
+ 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x61, 0x72, 0x72, 0x61, 0x79,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x61,
+ 0x72, 0x72, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x5b, 0x22, 0x63, 0x72, 0x65,
+ 0x61, 0x74, 0x65, 0x5f, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x5f, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x22, 0x2c, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x2c, 0x20,
+ 0x65, 0x76, 0x65, 0x6e, 0x74, 0x44, 0x61, 0x74, 0x61, 0x5d, 0x3b, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x45, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20,
+ 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x61, 0x72, 0x72, 0x61,
+ 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x74, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65,
+ 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20,
+ 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70,
+ 0x74, 0x46, 0x6f, 0x72, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x28, 0x4a, 0x53,
+ 0x4f, 0x4e, 0x2e, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x69, 0x66, 0x79,
+ 0x28, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x61, 0x72, 0x72,
+ 0x61, 0x79, 0x29, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x65, 0x6e, 0x63, 0x72, 0x79,
+ 0x70, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65,
+ 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x46, 0x61, 0x69,
+ 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79,
+ 0x70, 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x61,
+ 0x72, 0x72, 0x61, 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
+ 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x32, 0x33, 0x34, 0x35, 0x36, 0x20,
+ 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x20, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74,
+ 0x20, 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x3a, 0x20, 0x32,
+ 0x33, 0x34, 0x35, 0x36, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x3a, 0x20, 0x75, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74,
+ 0x3a, 0x20, 0x4d, 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f, 0x72,
+ 0x28, 0x44, 0x61, 0x74, 0x65, 0x2e, 0x6e, 0x6f, 0x77, 0x28, 0x29, 0x20,
+ 0x2f, 0x20, 0x31, 0x30, 0x30, 0x30, 0x29, 0x2c, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x67,
+ 0x73, 0x3a, 0x20, 0x5b, 0x5b, 0x22, 0x70, 0x22, 0x2c, 0x20, 0x67, 0x65,
+ 0x74, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79,
+ 0x28, 0x29, 0x5d, 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
+ 0x74, 0x3a, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64,
+ 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x69, 0x67, 0x6e,
+ 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
+ 0x20, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74,
+ 0x20, 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x77, 0x69, 0x6e,
+ 0x64, 0x6f, 0x77, 0x2e, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2e, 0x73, 0x69,
+ 0x67, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x61, 0x64, 0x6d, 0x69,
+ 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x73, 0x69,
+ 0x67, 0x6e, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x7c, 0x7c,
+ 0x20, 0x21, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e,
+ 0x74, 0x2e, 0x73, 0x69, 0x67, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72,
+ 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x28, 0x27, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x73, 0x69, 0x67, 0x6e,
+ 0x69, 0x6e, 0x67, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x27, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
+ 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x20, 0x76, 0x69, 0x61, 0x20,
+ 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
+ 0x20, 0x75, 0x72, 0x6c, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79,
+ 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x72,
+ 0x6c, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d,
+ 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73,
+ 0x68, 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x73, 0x20, 0x3d, 0x20,
+ 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x70, 0x75,
+ 0x62, 0x6c, 0x69, 0x73, 0x68, 0x28, 0x5b, 0x75, 0x72, 0x6c, 0x5d, 0x2c,
+ 0x20, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74,
+ 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x2f, 0x2f, 0x20, 0x57, 0x61, 0x69, 0x74, 0x20, 0x66, 0x6f, 0x72, 0x20,
+ 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x20, 0x72, 0x65, 0x73, 0x75,
+ 0x6c, 0x74, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
+ 0x73, 0x20, 0x3d, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x50, 0x72,
+ 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x2e, 0x61, 0x6c, 0x6c, 0x53, 0x65, 0x74,
+ 0x74, 0x6c, 0x65, 0x64, 0x28, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68,
+ 0x50, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x73, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x73,
+ 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x20,
+ 0x3d, 0x20, 0x30, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x2e, 0x66, 0x6f, 0x72,
+ 0x45, 0x61, 0x63, 0x68, 0x28, 0x28, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
+ 0x2c, 0x20, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x29, 0x20, 0x3d, 0x3e, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
+ 0x2e, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x20, 0x3d, 0x3d, 0x3d, 0x20,
+ 0x27, 0x66, 0x75, 0x6c, 0x66, 0x69, 0x6c, 0x6c, 0x65, 0x64, 0x27, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65,
+ 0x73, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x2b, 0x2b, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
+ 0x6f, 0x67, 0x28, 0x60, 0xe2, 0x9c, 0x85, 0x20, 0x52, 0x65, 0x6c, 0x61,
+ 0x79, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x70, 0x75, 0x62, 0x6c,
+ 0x69, 0x73, 0x68, 0x65, 0x64, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73,
+ 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x20, 0x24, 0x7b, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x7d,
+ 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
+ 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x60, 0xe2, 0x9d, 0x8c, 0x20,
+ 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20,
+ 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x6f, 0x6e, 0x20, 0x72, 0x65,
+ 0x6c, 0x61, 0x79, 0x20, 0x24, 0x7b, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x7d,
+ 0x3a, 0x60, 0x2c, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x2e, 0x72,
+ 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x73,
+ 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x20,
+ 0x3d, 0x3d, 0x3d, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
+ 0x73, 0x74, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61,
+ 0x69, 0x6c, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
+ 0x73, 0x2e, 0x6d, 0x61, 0x70, 0x28, 0x28, 0x72, 0x2c, 0x20, 0x69, 0x29,
+ 0x20, 0x3d, 0x3e, 0x20, 0x60, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x24,
+ 0x7b, 0x69, 0x7d, 0x3a, 0x20, 0x24, 0x7b, 0x72, 0x2e, 0x72, 0x65, 0x61,
+ 0x73, 0x6f, 0x6e, 0x3f, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
+ 0x20, 0x7c, 0x7c, 0x20, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e,
+ 0x7d, 0x60, 0x29, 0x2e, 0x6a, 0x6f, 0x69, 0x6e, 0x28, 0x27, 0x3b, 0x20,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65,
+ 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x60, 0x41, 0x6c, 0x6c,
+ 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x20, 0x72, 0x65, 0x6a, 0x65,
+ 0x63, 0x74, 0x65, 0x64, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x20, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c,
+ 0x73, 0x3a, 0x20, 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65,
+ 0x74, 0x61, 0x69, 0x6c, 0x73, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
+ 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x60, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20,
+ 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e,
+ 0x64, 0x20, 0x73, 0x65, 0x6e, 0x74, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65,
+ 0x73, 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x20, 0x66, 0x6f, 0x72, 0x20,
+ 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x24, 0x7b, 0x6b, 0x69, 0x6e, 0x64, 0x7d,
+ 0x60, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63,
+ 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x28, 0x60, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20,
+ 0x73, 0x65, 0x6e, 0x64, 0x20, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f,
+ 0x72, 0x65, 0x6c, 0x61, 0x79, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20,
+ 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20,
+ 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x24, 0x7b, 0x6b, 0x69, 0x6e, 0x64, 0x7d,
+ 0x3a, 0x60, 0x2c, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f,
+ 0x77, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x56, 0x61, 0x6c,
+ 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x68, 0x65, 0x6c, 0x70,
+ 0x65, 0x72, 0x73, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x20, 0x69, 0x73, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x55, 0x72, 0x6c, 0x28,
+ 0x75, 0x72, 0x6c, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74,
+ 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x6e, 0x65, 0x77, 0x20, 0x55, 0x52, 0x4c, 0x28, 0x75, 0x72, 0x6c,
+ 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72,
+ 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x74, 0x72, 0x75, 0x65, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
+ 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x66, 0x75, 0x6e,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x73, 0x56, 0x61, 0x6c, 0x69,
+ 0x64, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x55, 0x72, 0x6c, 0x28, 0x75, 0x72,
+ 0x6c, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
+ 0x28, 0x21, 0x69, 0x73, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x55, 0x72, 0x6c,
+ 0x28, 0x75, 0x72, 0x6c, 0x29, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72,
+ 0x6e, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x75, 0x72, 0x6c, 0x2e,
+ 0x73, 0x74, 0x61, 0x72, 0x74, 0x73, 0x57, 0x69, 0x74, 0x68, 0x28, 0x27,
+ 0x77, 0x73, 0x3a, 0x2f, 0x2f, 0x27, 0x29, 0x20, 0x7c, 0x7c, 0x20, 0x75,
+ 0x72, 0x6c, 0x2e, 0x73, 0x74, 0x61, 0x72, 0x74, 0x73, 0x57, 0x69, 0x74,
+ 0x68, 0x28, 0x27, 0x77, 0x73, 0x73, 0x3a, 0x2f, 0x2f, 0x27, 0x29, 0x3b,
+ 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x55, 0x49, 0x20, 0x68, 0x65,
+ 0x6c, 0x70, 0x65, 0x72, 0x73, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75,
+ 0x73, 0x28, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x2c,
+ 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2c, 0x20, 0x74, 0x79,
+ 0x70, 0x65, 0x20, 0x3d, 0x20, 0x27, 0x69, 0x6e, 0x66, 0x6f, 0x27, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
+ 0x20, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x64,
+ 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45,
+ 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x65,
+ 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x29, 0x3b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x65, 0x6c, 0x65, 0x6d,
+ 0x65, 0x6e, 0x74, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x52, 0x65, 0x6d,
+ 0x6f, 0x76, 0x65, 0x20, 0x65, 0x6d, 0x6f, 0x6a, 0x69, 0x73, 0x20, 0x66,
+ 0x72, 0x6f, 0x6d, 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x6c,
+ 0x65, 0x61, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x3d,
+ 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x72, 0x65, 0x70,
+ 0x6c, 0x61, 0x63, 0x65, 0x28, 0x2f, 0x5b, 0x5c, 0x75, 0x7b, 0x31, 0x46,
+ 0x36, 0x30, 0x30, 0x7d, 0x2d, 0x5c, 0x75, 0x7b, 0x31, 0x46, 0x36, 0x34,
+ 0x46, 0x7d, 0x5d, 0x7c, 0x5b, 0x5c, 0x75, 0x7b, 0x31, 0x46, 0x33, 0x30,
+ 0x30, 0x7d, 0x2d, 0x5c, 0x75, 0x7b, 0x31, 0x46, 0x35, 0x46, 0x46, 0x7d,
+ 0x5d, 0x7c, 0x5b, 0x5c, 0x75, 0x7b, 0x31, 0x46, 0x36, 0x38, 0x30, 0x7d,
+ 0x2d, 0x5c, 0x75, 0x7b, 0x31, 0x46, 0x36, 0x46, 0x46, 0x7d, 0x5d, 0x7c,
+ 0x5b, 0x5c, 0x75, 0x7b, 0x31, 0x46, 0x31, 0x45, 0x30, 0x7d, 0x2d, 0x5c,
+ 0x75, 0x7b, 0x31, 0x46, 0x31, 0x46, 0x46, 0x7d, 0x5d, 0x7c, 0x5b, 0x5c,
+ 0x75, 0x7b, 0x32, 0x36, 0x30, 0x30, 0x7d, 0x2d, 0x5c, 0x75, 0x7b, 0x32,
+ 0x36, 0x46, 0x46, 0x7d, 0x5d, 0x7c, 0x5b, 0x5c, 0x75, 0x7b, 0x32, 0x37,
+ 0x30, 0x30, 0x7d, 0x2d, 0x5c, 0x75, 0x7b, 0x32, 0x37, 0x42, 0x46, 0x7d,
+ 0x5d, 0x2f, 0x67, 0x75, 0x2c, 0x20, 0x27, 0x27, 0x29, 0x3b, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
+ 0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20,
+ 0x3d, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61,
+ 0x67, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x65, 0x6d,
+ 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d,
+ 0x65, 0x20, 0x3d, 0x20, 0x27, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2d,
+ 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x74,
+ 0x79, 0x6c, 0x65, 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20,
+ 0x3d, 0x20, 0x27, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x27, 0x3b, 0x20, 0x2f,
+ 0x2f, 0x20, 0x45, 0x6e, 0x73, 0x75, 0x72, 0x65, 0x20, 0x69, 0x74, 0x27,
+ 0x73, 0x20, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x0a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x41, 0x64, 0x64, 0x20, 0x74, 0x79,
+ 0x70, 0x65, 0x2d, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20,
+ 0x73, 0x74, 0x79, 0x6c, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x20, 0x28, 0x74, 0x79, 0x70, 0x65,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x61, 0x73, 0x65, 0x20, 0x27, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73,
+ 0x73, 0x27, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
+ 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x20,
+ 0x3d, 0x20, 0x27, 0x76, 0x61, 0x72, 0x28, 0x2d, 0x2d, 0x61, 0x63, 0x63,
+ 0x65, 0x6e, 0x74, 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x29, 0x27, 0x3b,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x62, 0x72, 0x65, 0x61, 0x6b, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x61, 0x73, 0x65, 0x20, 0x27, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x27, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
+ 0x74, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6c, 0x6f,
+ 0x72, 0x20, 0x3d, 0x20, 0x27, 0x23, 0x66, 0x66, 0x30, 0x30, 0x30, 0x30,
+ 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x62, 0x72, 0x65, 0x61, 0x6b, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x61, 0x73, 0x65, 0x20, 0x27,
+ 0x69, 0x6e, 0x66, 0x6f, 0x27, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x3a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x74, 0x79, 0x6c,
+ 0x65, 0x2e, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x20, 0x3d, 0x20, 0x27, 0x76,
+ 0x61, 0x72, 0x28, 0x2d, 0x2d, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79,
+ 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x29, 0x27, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x72,
+ 0x65, 0x61, 0x6b, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x41, 0x75, 0x74, 0x6f, 0x2d,
+ 0x68, 0x69, 0x64, 0x65, 0x20, 0x61, 0x66, 0x74, 0x65, 0x72, 0x20, 0x35,
+ 0x20, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x73, 0x65, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x28,
+ 0x28, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
+ 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
+ 0x79, 0x20, 0x3d, 0x20, 0x27, 0x6e, 0x6f, 0x6e, 0x65, 0x27, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x2c, 0x20, 0x35, 0x30, 0x30, 0x30, 0x29,
+ 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x61, 0x64, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x45, 0x6e,
+ 0x74, 0x72, 0x79, 0x28, 0x75, 0x72, 0x6c, 0x20, 0x3d, 0x20, 0x27, 0x27,
+ 0x2c, 0x20, 0x72, 0x65, 0x61, 0x64, 0x20, 0x3d, 0x20, 0x74, 0x72, 0x75,
+ 0x65, 0x2c, 0x20, 0x77, 0x72, 0x69, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x74,
+ 0x72, 0x75, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e,
0x65, 0x72, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e,
0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30,
0x30, 0x30, 0x32, 0x2d, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x65, 0x6e,
0x74, 0x72, 0x69, 0x65, 0x73, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x63, 0x6f, 0x6e,
- 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x2e, 0x69, 0x6e, 0x6e, 0x65,
- 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x45, 0x78,
- 0x74, 0x72, 0x61, 0x63, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20,
- 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d,
- 0x20, 0x22, 0x72, 0x22, 0x20, 0x74, 0x61, 0x67, 0x73, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x2e,
- 0x74, 0x61, 0x67, 0x73, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68,
- 0x28, 0x74, 0x61, 0x67, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x74, 0x61, 0x67, 0x5b, 0x30, 0x5d, 0x20, 0x3d, 0x3d, 0x3d,
- 0x20, 0x27, 0x72, 0x27, 0x20, 0x26, 0x26, 0x20, 0x74, 0x61, 0x67, 0x5b,
- 0x31, 0x5d, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x75, 0x72, 0x6c, 0x20, 0x3d, 0x20, 0x74, 0x61,
- 0x67, 0x5b, 0x31, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
- 0x6e, 0x73, 0x74, 0x20, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x72, 0x20, 0x3d,
- 0x20, 0x74, 0x61, 0x67, 0x5b, 0x32, 0x5d, 0x20, 0x7c, 0x7c, 0x20, 0x27,
- 0x72, 0x65, 0x61, 0x64, 0x27, 0x3b, 0x20, 0x2f, 0x2f, 0x20, 0x44, 0x65,
- 0x66, 0x61, 0x75, 0x6c, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65, 0x61,
- 0x64, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x20, 0x6d, 0x61, 0x72, 0x6b,
- 0x65, 0x72, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x72, 0x65, 0x61, 0x64, 0x20, 0x3d, 0x20, 0x6d, 0x61, 0x72, 0x6b,
- 0x65, 0x72, 0x2e, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x73, 0x28,
- 0x27, 0x72, 0x65, 0x61, 0x64, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69,
+ 0x6e, 0x65, 0x72, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x65, 0x6e, 0x74, 0x72, 0x79, 0x44, 0x69, 0x76, 0x20, 0x3d, 0x20, 0x64,
+ 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61,
+ 0x74, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x64,
+ 0x69, 0x76, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e,
+ 0x74, 0x72, 0x79, 0x44, 0x69, 0x76, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73,
+ 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x3d, 0x20, 0x27, 0x72, 0x65, 0x6c, 0x61,
+ 0x79, 0x2d, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x27, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x44, 0x69, 0x76, 0x2e, 0x69,
+ 0x6e, 0x6e, 0x65, 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x60,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69,
+ 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x66, 0x6f, 0x72,
+ 0x6d, 0x2d, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x20, 0x73, 0x74, 0x79,
+ 0x6c, 0x65, 0x3d, 0x22, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a,
+ 0x20, 0x66, 0x6c, 0x65, 0x78, 0x3b, 0x20, 0x61, 0x6c, 0x69, 0x67, 0x6e,
+ 0x2d, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x3a, 0x20, 0x63, 0x65, 0x6e, 0x74,
+ 0x65, 0x72, 0x3b, 0x20, 0x67, 0x61, 0x70, 0x3a, 0x20, 0x31, 0x30, 0x70,
+ 0x78, 0x3b, 0x20, 0x6d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x2d, 0x62, 0x6f,
+ 0x74, 0x74, 0x6f, 0x6d, 0x3a, 0x20, 0x31, 0x30, 0x70, 0x78, 0x3b, 0x22,
+ 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x3c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x74, 0x79, 0x70,
+ 0x65, 0x3d, 0x22, 0x75, 0x72, 0x6c, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73,
+ 0x73, 0x3d, 0x22, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x75, 0x72, 0x6c,
+ 0x22, 0x20, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65,
+ 0x72, 0x3d, 0x22, 0x77, 0x73, 0x73, 0x3a, 0x2f, 0x2f, 0x72, 0x65, 0x6c,
+ 0x61, 0x79, 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63,
+ 0x6f, 0x6d, 0x22, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3d, 0x22, 0x24,
+ 0x7b, 0x75, 0x72, 0x6c, 0x7d, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65,
+ 0x3d, 0x22, 0x66, 0x6c, 0x65, 0x78, 0x3a, 0x20, 0x31, 0x3b, 0x20, 0x6d,
+ 0x69, 0x6e, 0x2d, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x20, 0x33, 0x30,
+ 0x30, 0x70, 0x78, 0x3b, 0x20, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72,
+ 0x2d, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x3a, 0x20, 0x61, 0x75, 0x74,
+ 0x6f, 0x3b, 0x20, 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x3a, 0x20, 0x74,
+ 0x65, 0x78, 0x74, 0x3b, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x61, 0x62, 0x65,
+ 0x6c, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x64, 0x69, 0x73,
+ 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x66, 0x6c, 0x65, 0x78, 0x3b, 0x20,
+ 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x2d, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x3a,
+ 0x20, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x3b, 0x20, 0x67, 0x61, 0x70,
+ 0x3a, 0x20, 0x35, 0x70, 0x78, 0x3b, 0x20, 0x77, 0x68, 0x69, 0x74, 0x65,
+ 0x2d, 0x73, 0x70, 0x61, 0x63, 0x65, 0x3a, 0x20, 0x6e, 0x6f, 0x77, 0x72,
+ 0x61, 0x70, 0x3b, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x69,
+ 0x6e, 0x70, 0x75, 0x74, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x63,
+ 0x68, 0x65, 0x63, 0x6b, 0x62, 0x6f, 0x78, 0x22, 0x20, 0x63, 0x6c, 0x61,
+ 0x73, 0x73, 0x3d, 0x22, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x72, 0x65,
+ 0x61, 0x64, 0x22, 0x20, 0x24, 0x7b, 0x72, 0x65, 0x61, 0x64, 0x20, 0x3f,
+ 0x20, 0x27, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x27, 0x20, 0x3a,
+ 0x20, 0x27, 0x27, 0x7d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x52, 0x65,
+ 0x61, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x77, 0x72, 0x69, 0x74, 0x65,
- 0x20, 0x3d, 0x20, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x72, 0x2e, 0x69, 0x6e,
- 0x63, 0x6c, 0x75, 0x64, 0x65, 0x73, 0x28, 0x27, 0x77, 0x72, 0x69, 0x74,
- 0x65, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x64,
- 0x64, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x28,
- 0x75, 0x72, 0x6c, 0x2c, 0x20, 0x72, 0x65, 0x61, 0x64, 0x2c, 0x20, 0x77,
- 0x72, 0x69, 0x74, 0x65, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30,
- 0x30, 0x30, 0x32, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c,
- 0x20, 0x27, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6c, 0x69, 0x73, 0x74,
- 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x20, 0x66, 0x72, 0x6f, 0x6d,
- 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x27, 0x2c, 0x20, 0x27, 0x73, 0x75,
- 0x63, 0x63, 0x65, 0x73, 0x73, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x20, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x20,
- 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30, 0x30, 0x32, 0x20, 0x66,
- 0x6f, 0x72, 0x6d, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73,
- 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b,
- 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x2d, 0x73, 0x74, 0x61,
- 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x65, 0x6c,
- 0x61, 0x79, 0x20, 0x6c, 0x69, 0x73, 0x74, 0x27, 0x2c, 0x20, 0x27, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x53, 0x75, 0x62, 0x6d,
- 0x69, 0x74, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x30, 0x20, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x0a, 0x61, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x66, 0x75,
- 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x75, 0x62, 0x6d, 0x69,
- 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x30, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68,
- 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69,
- 0x6e, 0x64, 0x30, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c,
- 0x20, 0x27, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x74, 0x69, 0x6e, 0x67,
- 0x20, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x2e, 0x2e, 0x2e,
- 0x27, 0x2c, 0x20, 0x27, 0x69, 0x6e, 0x66, 0x6f, 0x27, 0x29, 0x3b, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x20, 0x66, 0x6f, 0x72, 0x6d,
- 0x20, 0x64, 0x61, 0x74, 0x61, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6d, 0x65, 0x74, 0x61,
- 0x64, 0x61, 0x74, 0x61, 0x20, 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6e, 0x61, 0x6d,
- 0x65, 0x3a, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79,
- 0x49, 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x6e, 0x61,
- 0x6d, 0x65, 0x27, 0x29, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x74,
- 0x72, 0x69, 0x6d, 0x28, 0x29, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x62, 0x6f, 0x75, 0x74,
- 0x3a, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67,
- 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49,
- 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x61, 0x62, 0x6f,
- 0x75, 0x74, 0x27, 0x29, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x74,
- 0x72, 0x69, 0x6d, 0x28, 0x29, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x69, 0x63, 0x74, 0x75,
- 0x72, 0x65, 0x3a, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42,
- 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x70,
- 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x27, 0x29, 0x2e, 0x76, 0x61, 0x6c,
- 0x75, 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29, 0x2c, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62,
- 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x3a, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64,
- 0x30, 0x2d, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x27, 0x29, 0x2e, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29, 0x2c,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x6e, 0x69, 0x70, 0x30, 0x35, 0x3a, 0x20, 0x64, 0x6f, 0x63, 0x75,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e,
- 0x64, 0x30, 0x2d, 0x6e, 0x69, 0x70, 0x30, 0x35, 0x27, 0x29, 0x2e, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29, 0x2c,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x3a, 0x20, 0x64, 0x6f,
- 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x6b,
- 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65,
- 0x27, 0x29, 0x2e, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x74, 0x72, 0x69,
- 0x6d, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x20, 0x65, 0x6d,
- 0x70, 0x74, 0x79, 0x20, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x4f, 0x62, 0x6a, 0x65, 0x63,
- 0x74, 0x2e, 0x6b, 0x65, 0x79, 0x73, 0x28, 0x6d, 0x65, 0x74, 0x61, 0x64,
- 0x61, 0x74, 0x61, 0x29, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68,
- 0x28, 0x6b, 0x65, 0x79, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x21, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x5b,
- 0x6b, 0x65, 0x79, 0x5d, 0x29, 0x20, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65,
- 0x20, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x5b, 0x6b, 0x65,
- 0x79, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65,
- 0x20, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x20, 0x66, 0x69,
- 0x65, 0x6c, 0x64, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61,
- 0x74, 0x61, 0x2e, 0x6e, 0x61, 0x6d, 0x65, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73,
- 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b,
- 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27,
- 0x2c, 0x20, 0x27, 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x69, 0x73, 0x20, 0x72,
- 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x27, 0x2c, 0x20, 0x27, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75,
- 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61,
- 0x77, 0x61, 0x69, 0x74, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x43, 0x72, 0x65,
- 0x61, 0x74, 0x65, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x45, 0x76, 0x65, 0x6e,
- 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x28, 0x30, 0x2c, 0x20,
- 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x30,
- 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x4d,
- 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x20, 0x75, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x64, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x66,
- 0x75, 0x6c, 0x6c, 0x79, 0x27, 0x2c, 0x20, 0x27, 0x73, 0x75, 0x63, 0x63,
- 0x65, 0x73, 0x73, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x28, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x28, 0x27, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x20, 0x73,
- 0x75, 0x62, 0x6d, 0x69, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x4b, 0x69,
- 0x6e, 0x64, 0x20, 0x30, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x3a, 0x27,
- 0x2c, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d,
- 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x69, 0x6e, 0x67,
- 0x20, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x3a, 0x20, 0x27,
- 0x20, 0x2b, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x6d, 0x65, 0x73,
- 0x73, 0x61, 0x67, 0x65, 0x2c, 0x20, 0x27, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x7d, 0x0a,
- 0x0a, 0x2f, 0x2f, 0x20, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x20, 0x4b,
- 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30, 0x35, 0x30, 0x20, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x0a, 0x61, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x66, 0x75,
- 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x75, 0x62, 0x6d, 0x69,
- 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x45, 0x76,
- 0x65, 0x6e, 0x74, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x2d,
- 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x53, 0x75,
- 0x62, 0x6d, 0x69, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x44, 0x4d, 0x20,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6c, 0x69, 0x73, 0x74, 0x2e, 0x2e,
- 0x2e, 0x27, 0x2c, 0x20, 0x27, 0x69, 0x6e, 0x66, 0x6f, 0x27, 0x29, 0x3b,
- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x50, 0x61, 0x72, 0x73, 0x65, 0x20, 0x74, 0x65, 0x78, 0x74, 0x61,
- 0x72, 0x65, 0x61, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x54, 0x65, 0x78, 0x74,
- 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79,
- 0x49, 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35,
- 0x30, 0x2d, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x27, 0x29, 0x2e, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x20, 0x3d, 0x20,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x54, 0x65, 0x78, 0x74, 0x2e, 0x73,
- 0x70, 0x6c, 0x69, 0x74, 0x28, 0x27, 0x5c, 0x6e, 0x27, 0x29, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2e,
- 0x6d, 0x61, 0x70, 0x28, 0x75, 0x72, 0x6c, 0x20, 0x3d, 0x3e, 0x20, 0x75,
- 0x72, 0x6c, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29, 0x29, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2e,
- 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x28, 0x75, 0x72, 0x6c, 0x20, 0x3d,
- 0x3e, 0x20, 0x75, 0x72, 0x6c, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68,
- 0x20, 0x3e, 0x20, 0x30, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2e, 0x66, 0x69, 0x6c, 0x74, 0x65,
- 0x72, 0x28, 0x75, 0x72, 0x6c, 0x20, 0x3d, 0x3e, 0x20, 0x69, 0x73, 0x56,
- 0x61, 0x6c, 0x69, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x55, 0x72, 0x6c,
- 0x28, 0x75, 0x72, 0x6c, 0x29, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72, 0x65, 0x6c,
- 0x61, 0x79, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3d,
- 0x3d, 0x3d, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77,
- 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64,
- 0x31, 0x30, 0x30, 0x35, 0x30, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x27, 0x2c, 0x20, 0x27, 0x41, 0x74, 0x20, 0x6c, 0x65, 0x61, 0x73, 0x74,
- 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x20, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x20, 0x55, 0x52, 0x4c, 0x20, 0x69, 0x73, 0x20,
- 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x27, 0x2c, 0x20, 0x27,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74,
- 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x43, 0x72,
- 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x45, 0x76, 0x65,
- 0x6e, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x28, 0x31, 0x30,
- 0x30, 0x35, 0x30, 0x2c, 0x20, 0x7b, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79,
- 0x73, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x2d,
- 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x44, 0x4d,
- 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6c, 0x69, 0x73, 0x74, 0x20,
- 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x20, 0x73, 0x75, 0x63, 0x63,
- 0x65, 0x73, 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x27, 0x2c, 0x20, 0x27,
- 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x27, 0x29, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20,
- 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c,
- 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x20, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x74, 0x69, 0x6e,
- 0x67, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30, 0x35, 0x30,
- 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x3a, 0x27, 0x2c, 0x20, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x2d,
- 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x69, 0x6e, 0x67,
- 0x20, 0x44, 0x4d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6c, 0x69,
- 0x73, 0x74, 0x3a, 0x20, 0x27, 0x20, 0x2b, 0x20, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2c, 0x20, 0x27,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x53, 0x75, 0x62,
- 0x6d, 0x69, 0x74, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30,
- 0x30, 0x32, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x61, 0x73, 0x79,
- 0x6e, 0x63, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
- 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x31, 0x30,
- 0x30, 0x30, 0x32, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x28, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31,
- 0x30, 0x30, 0x30, 0x32, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27,
- 0x2c, 0x20, 0x27, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x74, 0x69, 0x6e,
- 0x67, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6c, 0x69, 0x73, 0x74,
- 0x2e, 0x2e, 0x2e, 0x27, 0x2c, 0x20, 0x27, 0x69, 0x6e, 0x66, 0x6f, 0x27,
- 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x20, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x74, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x73, 0x20, 0x3d, 0x20,
- 0x5b, 0x5d, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65,
- 0x73, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74,
- 0x6f, 0x72, 0x41, 0x6c, 0x6c, 0x28, 0x27, 0x2e, 0x72, 0x65, 0x6c, 0x61,
- 0x79, 0x2d, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x74, 0x72,
- 0x69, 0x65, 0x73, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63, 0x68, 0x28,
- 0x65, 0x6e, 0x74, 0x72, 0x79, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x75, 0x72, 0x6c, 0x20, 0x3d, 0x20, 0x65,
- 0x6e, 0x74, 0x72, 0x79, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65,
- 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x28, 0x27, 0x2e, 0x72, 0x65, 0x6c,
- 0x61, 0x79, 0x2d, 0x75, 0x72, 0x6c, 0x27, 0x29, 0x2e, 0x76, 0x61, 0x6c,
- 0x75, 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x72, 0x65, 0x61, 0x64, 0x20, 0x3d, 0x20,
- 0x65, 0x6e, 0x74, 0x72, 0x79, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x53,
- 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x28, 0x27, 0x2e, 0x72, 0x65,
- 0x6c, 0x61, 0x79, 0x2d, 0x72, 0x65, 0x61, 0x64, 0x27, 0x29, 0x2e, 0x63,
- 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x74, 0x20, 0x77, 0x72, 0x69, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x65, 0x6e,
- 0x74, 0x72, 0x79, 0x2e, 0x71, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x6c,
- 0x65, 0x63, 0x74, 0x6f, 0x72, 0x28, 0x27, 0x2e, 0x72, 0x65, 0x6c, 0x61,
- 0x79, 0x2d, 0x77, 0x72, 0x69, 0x74, 0x65, 0x27, 0x29, 0x2e, 0x63, 0x68,
- 0x65, 0x63, 0x6b, 0x65, 0x64, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
- 0x75, 0x72, 0x6c, 0x20, 0x26, 0x26, 0x20, 0x69, 0x73, 0x56, 0x61, 0x6c,
- 0x69, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x55, 0x72, 0x6c, 0x28, 0x75,
- 0x72, 0x6c, 0x29, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x73, 0x2e, 0x70, 0x75, 0x73, 0x68, 0x28, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x75, 0x72, 0x6c,
- 0x3a, 0x20, 0x75, 0x72, 0x6c, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x3c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65,
+ 0x3d, 0x22, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x66,
+ 0x6c, 0x65, 0x78, 0x3b, 0x20, 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x2d, 0x69,
+ 0x74, 0x65, 0x6d, 0x73, 0x3a, 0x20, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72,
+ 0x3b, 0x20, 0x67, 0x61, 0x70, 0x3a, 0x20, 0x35, 0x70, 0x78, 0x3b, 0x20,
+ 0x77, 0x68, 0x69, 0x74, 0x65, 0x2d, 0x73, 0x70, 0x61, 0x63, 0x65, 0x3a,
+ 0x20, 0x6e, 0x6f, 0x77, 0x72, 0x61, 0x70, 0x3b, 0x22, 0x3e, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x72, 0x65, 0x61, 0x64, 0x3a, 0x20, 0x72, 0x65, 0x61,
- 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x77,
- 0x72, 0x69, 0x74, 0x65, 0x3a, 0x20, 0x77, 0x72, 0x69, 0x74, 0x65, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x73, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68,
- 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68,
- 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69,
- 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x2d, 0x73, 0x74, 0x61, 0x74,
- 0x75, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x41, 0x74, 0x20, 0x6c, 0x65, 0x61,
- 0x73, 0x74, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x76, 0x61, 0x6c, 0x69, 0x64,
- 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x6e, 0x74, 0x72, 0x79,
- 0x20, 0x69, 0x73, 0x20, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64,
- 0x27, 0x2c, 0x20, 0x27, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x27, 0x29, 0x3b,
+ 0x20, 0x20, 0x20, 0x3c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x74, 0x79,
+ 0x70, 0x65, 0x3d, 0x22, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x62, 0x6f, 0x78,
+ 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x72, 0x65, 0x6c,
+ 0x61, 0x79, 0x2d, 0x77, 0x72, 0x69, 0x74, 0x65, 0x22, 0x20, 0x24, 0x7b,
+ 0x77, 0x72, 0x69, 0x74, 0x65, 0x20, 0x3f, 0x20, 0x27, 0x63, 0x68, 0x65,
+ 0x63, 0x6b, 0x65, 0x64, 0x27, 0x20, 0x3a, 0x20, 0x27, 0x27, 0x7d, 0x3e,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x73, 0x65,
- 0x6e, 0x64, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6c, 0x61,
- 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e,
- 0x64, 0x28, 0x31, 0x30, 0x30, 0x30, 0x32, 0x2c, 0x20, 0x7b, 0x20, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x73, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30,
- 0x30, 0x30, 0x32, 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c,
- 0x20, 0x27, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6c, 0x69, 0x73, 0x74,
- 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x20, 0x73, 0x75, 0x63,
- 0x63, 0x65, 0x73, 0x73, 0x66, 0x75, 0x6c, 0x6c, 0x79, 0x27, 0x2c, 0x20,
- 0x27, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x27, 0x29, 0x3b, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68,
- 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f,
- 0x6c, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x20, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x74, 0x69,
- 0x6e, 0x67, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30, 0x30,
- 0x32, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x3a, 0x27, 0x2c, 0x20, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75,
- 0x73, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32,
- 0x2d, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x27, 0x2c, 0x20, 0x27, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x20, 0x75, 0x70, 0x64, 0x61, 0x74, 0x69, 0x6e,
- 0x67, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x6c, 0x69, 0x73, 0x74,
- 0x3a, 0x20, 0x27, 0x20, 0x2b, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
- 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2c, 0x20, 0x27, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
- 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x53, 0x65, 0x6e, 0x64, 0x20,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x65, 0x6c, 0x61, 0x79,
- 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61,
- 0x6e, 0x64, 0x0a, 0x61, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x66, 0x75, 0x6e,
- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x65, 0x6e, 0x64, 0x43, 0x72,
- 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x45, 0x76, 0x65,
- 0x6e, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x28, 0x6b, 0x69,
- 0x6e, 0x64, 0x2c, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x44, 0x61, 0x74,
- 0x61, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20,
- 0x28, 0x21, 0x69, 0x73, 0x4c, 0x6f, 0x67, 0x67, 0x65, 0x64, 0x49, 0x6e,
- 0x20, 0x7c, 0x7c, 0x20, 0x21, 0x75, 0x73, 0x65, 0x72, 0x50, 0x75, 0x62,
- 0x6b, 0x65, 0x79, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77,
- 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x4d, 0x75, 0x73, 0x74,
- 0x20, 0x62, 0x65, 0x20, 0x6c, 0x6f, 0x67, 0x67, 0x65, 0x64, 0x20, 0x69,
- 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73,
- 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x72, 0x65, 0x6c, 0x61,
- 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e,
- 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x53, 0x69,
- 0x6d, 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x20, 0x63, 0x6f, 0x6e,
- 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6e, 0x6f, 0x74, 0x20,
- 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x27, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x74, 0x72, 0x79, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
- 0x67, 0x28, 0x60, 0x53, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x20, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x5f,
- 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e,
- 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x20, 0x24,
- 0x7b, 0x6b, 0x69, 0x6e, 0x64, 0x7d, 0x2e, 0x2e, 0x2e, 0x60, 0x29, 0x3b,
- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20, 0x63, 0x6f, 0x6d, 0x6d,
- 0x61, 0x6e, 0x64, 0x20, 0x61, 0x72, 0x72, 0x61, 0x79, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
- 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x61, 0x72, 0x72, 0x61,
- 0x79, 0x20, 0x3d, 0x20, 0x5b, 0x22, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
- 0x5f, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74,
- 0x22, 0x2c, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x2c, 0x20, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x44, 0x61, 0x74, 0x61, 0x5d, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x45, 0x6e, 0x63,
- 0x72, 0x79, 0x70, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6d,
- 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x61, 0x72, 0x72, 0x61, 0x79, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x63,
- 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x61, 0x77, 0x61,
- 0x69, 0x74, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x46, 0x6f,
- 0x72, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x28, 0x4a, 0x53, 0x4f, 0x4e, 0x2e,
- 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x69, 0x66, 0x79, 0x28, 0x63, 0x6f,
- 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x61, 0x72, 0x72, 0x61, 0x79, 0x29,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
- 0x66, 0x20, 0x28, 0x21, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65,
- 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64,
- 0x20, 0x74, 0x6f, 0x20, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x20,
- 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x61, 0x72, 0x72, 0x61,
- 0x79, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x20, 0x6b, 0x69,
- 0x6e, 0x64, 0x20, 0x32, 0x33, 0x34, 0x35, 0x36, 0x20, 0x61, 0x64, 0x6d,
- 0x69, 0x6e, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x61,
- 0x64, 0x6d, 0x69, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x3a, 0x20, 0x32, 0x33, 0x34, 0x35,
- 0x36, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x70, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x3a, 0x20, 0x75,
- 0x73, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x2c, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x3a, 0x20, 0x4d,
- 0x61, 0x74, 0x68, 0x2e, 0x66, 0x6c, 0x6f, 0x6f, 0x72, 0x28, 0x44, 0x61,
- 0x74, 0x65, 0x2e, 0x6e, 0x6f, 0x77, 0x28, 0x29, 0x20, 0x2f, 0x20, 0x31,
- 0x30, 0x30, 0x30, 0x29, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x61, 0x67, 0x73, 0x3a, 0x20,
- 0x5b, 0x5b, 0x22, 0x70, 0x22, 0x2c, 0x20, 0x67, 0x65, 0x74, 0x52, 0x65,
- 0x6c, 0x61, 0x79, 0x50, 0x75, 0x62, 0x6b, 0x65, 0x79, 0x28, 0x29, 0x5d,
- 0x5d, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x3a, 0x20,
- 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x7d, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x69, 0x67, 0x6e, 0x20, 0x74, 0x68,
- 0x65, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73, 0x69,
- 0x67, 0x6e, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20,
- 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77,
- 0x2e, 0x6e, 0x6f, 0x73, 0x74, 0x72, 0x2e, 0x73, 0x69, 0x67, 0x6e, 0x45,
- 0x76, 0x65, 0x6e, 0x74, 0x28, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x45, 0x76,
- 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x73, 0x69, 0x67, 0x6e, 0x65,
- 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x7c, 0x7c, 0x20, 0x21, 0x73,
- 0x69, 0x67, 0x6e, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x2e, 0x73,
- 0x69, 0x67, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20,
- 0x6e, 0x65, 0x77, 0x20, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x27, 0x45,
- 0x76, 0x65, 0x6e, 0x74, 0x20, 0x73, 0x69, 0x67, 0x6e, 0x69, 0x6e, 0x67,
- 0x20, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x27, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x50, 0x75, 0x62,
- 0x6c, 0x69, 0x73, 0x68, 0x20, 0x76, 0x69, 0x61, 0x20, 0x53, 0x69, 0x6d,
- 0x70, 0x6c, 0x65, 0x50, 0x6f, 0x6f, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x75, 0x72,
- 0x6c, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x43, 0x6f, 0x6e,
- 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x72, 0x6c, 0x2e, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x74, 0x72, 0x69, 0x6d, 0x28, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x74, 0x20, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x50, 0x72,
- 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x6c,
- 0x61, 0x79, 0x50, 0x6f, 0x6f, 0x6c, 0x2e, 0x70, 0x75, 0x62, 0x6c, 0x69,
- 0x73, 0x68, 0x28, 0x5b, 0x75, 0x72, 0x6c, 0x5d, 0x2c, 0x20, 0x73, 0x69,
- 0x67, 0x6e, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20,
- 0x57, 0x61, 0x69, 0x74, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x70, 0x75, 0x62,
- 0x6c, 0x69, 0x73, 0x68, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x74, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x20, 0x3d,
- 0x20, 0x61, 0x77, 0x61, 0x69, 0x74, 0x20, 0x50, 0x72, 0x6f, 0x6d, 0x69,
- 0x73, 0x65, 0x2e, 0x61, 0x6c, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x6c, 0x65,
- 0x64, 0x28, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x50, 0x72, 0x6f,
- 0x6d, 0x69, 0x73, 0x65, 0x73, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x65, 0x74, 0x20, 0x73, 0x75, 0x63, 0x63,
- 0x65, 0x73, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x30,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
- 0x73, 0x75, 0x6c, 0x74, 0x73, 0x2e, 0x66, 0x6f, 0x72, 0x45, 0x61, 0x63,
- 0x68, 0x28, 0x28, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x2c, 0x20, 0x69,
- 0x6e, 0x64, 0x65, 0x78, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
- 0x66, 0x20, 0x28, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x2e, 0x73, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x20, 0x3d, 0x3d, 0x3d, 0x20, 0x27, 0x66, 0x75,
- 0x6c, 0x66, 0x69, 0x6c, 0x6c, 0x65, 0x64, 0x27, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x43,
- 0x6f, 0x75, 0x6e, 0x74, 0x2b, 0x2b, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
- 0x60, 0xe2, 0x9c, 0x85, 0x20, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65,
- 0x76, 0x65, 0x6e, 0x74, 0x20, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68,
- 0x65, 0x64, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x66, 0x75,
- 0x6c, 0x6c, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79,
- 0x20, 0x24, 0x7b, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x7d, 0x60, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x20, 0x7b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x28, 0x60, 0xe2, 0x9d, 0x8c, 0x20, 0x52, 0x65, 0x6c,
- 0x61, 0x79, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x66, 0x61, 0x69,
- 0x6c, 0x65, 0x64, 0x20, 0x6f, 0x6e, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79,
- 0x20, 0x24, 0x7b, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x7d, 0x3a, 0x60, 0x2c,
- 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x2e, 0x72, 0x65, 0x61, 0x73,
- 0x6f, 0x6e, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x75, 0x63, 0x63,
- 0x65, 0x73, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x20, 0x3d, 0x3d, 0x3d,
- 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73,
- 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x2e, 0x6d,
- 0x61, 0x70, 0x28, 0x28, 0x72, 0x2c, 0x20, 0x69, 0x29, 0x20, 0x3d, 0x3e,
- 0x20, 0x60, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x24, 0x7b, 0x69, 0x7d,
- 0x3a, 0x20, 0x24, 0x7b, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e,
- 0x3f, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x7c, 0x7c,
- 0x20, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x7d, 0x60, 0x29,
- 0x2e, 0x6a, 0x6f, 0x69, 0x6e, 0x28, 0x27, 0x3b, 0x20, 0x27, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x6e, 0x65, 0x77, 0x20, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x28, 0x60, 0x41, 0x6c, 0x6c, 0x20, 0x72, 0x65,
- 0x6c, 0x61, 0x79, 0x73, 0x20, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x65,
- 0x64, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x76, 0x65, 0x6e,
- 0x74, 0x2e, 0x20, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x3a, 0x20,
- 0x24, 0x7b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69,
- 0x6c, 0x73, 0x7d, 0x60, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
- 0x67, 0x28, 0x60, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x73,
- 0x65, 0x6e, 0x74, 0x20, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x66,
- 0x75, 0x6c, 0x6c, 0x79, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x6b, 0x69, 0x6e,
- 0x64, 0x20, 0x24, 0x7b, 0x6b, 0x69, 0x6e, 0x64, 0x7d, 0x60, 0x29, 0x3b,
- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63,
- 0x68, 0x20, 0x28, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x6f, 0x6c, 0x65, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x60, 0x46,
- 0x61, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x65, 0x6e,
- 0x64, 0x20, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x65, 0x6c,
- 0x61, 0x79, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x63, 0x6f, 0x6d,
- 0x6d, 0x61, 0x6e, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x6b, 0x69, 0x6e,
- 0x64, 0x20, 0x24, 0x7b, 0x6b, 0x69, 0x6e, 0x64, 0x7d, 0x3a, 0x60, 0x2c,
- 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x72, 0x6f, 0x77, 0x20, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
- 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x68, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x73,
- 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x73,
- 0x56, 0x61, 0x6c, 0x69, 0x64, 0x55, 0x72, 0x6c, 0x28, 0x75, 0x72, 0x6c,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x72, 0x79, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6e, 0x65,
- 0x77, 0x20, 0x55, 0x52, 0x4c, 0x28, 0x75, 0x72, 0x6c, 0x29, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75,
- 0x72, 0x6e, 0x20, 0x74, 0x72, 0x75, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x20, 0x63, 0x61, 0x74, 0x63, 0x68, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72,
- 0x6e, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x20, 0x69, 0x73, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x52, 0x65,
- 0x6c, 0x61, 0x79, 0x55, 0x72, 0x6c, 0x28, 0x75, 0x72, 0x6c, 0x29, 0x20,
- 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x21, 0x69,
- 0x73, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x55, 0x72, 0x6c, 0x28, 0x75, 0x72,
- 0x6c, 0x29, 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66,
- 0x61, 0x6c, 0x73, 0x65, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65,
- 0x74, 0x75, 0x72, 0x6e, 0x20, 0x75, 0x72, 0x6c, 0x2e, 0x73, 0x74, 0x61,
- 0x72, 0x74, 0x73, 0x57, 0x69, 0x74, 0x68, 0x28, 0x27, 0x77, 0x73, 0x3a,
- 0x2f, 0x2f, 0x27, 0x29, 0x20, 0x7c, 0x7c, 0x20, 0x75, 0x72, 0x6c, 0x2e,
- 0x73, 0x74, 0x61, 0x72, 0x74, 0x73, 0x57, 0x69, 0x74, 0x68, 0x28, 0x27,
- 0x77, 0x73, 0x73, 0x3a, 0x2f, 0x2f, 0x27, 0x29, 0x3b, 0x0a, 0x7d, 0x0a,
- 0x0a, 0x2f, 0x2f, 0x20, 0x55, 0x49, 0x20, 0x68, 0x65, 0x6c, 0x70, 0x65,
- 0x72, 0x73, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
- 0x73, 0x68, 0x6f, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x28, 0x65,
- 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x2c, 0x20, 0x6d, 0x65,
- 0x73, 0x73, 0x61, 0x67, 0x65, 0x2c, 0x20, 0x74, 0x79, 0x70, 0x65, 0x20,
- 0x3d, 0x20, 0x27, 0x69, 0x6e, 0x66, 0x6f, 0x27, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x65, 0x6c,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x65, 0x6c, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x49, 0x64, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x69, 0x66, 0x20, 0x28, 0x21, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65,
- 0x20, 0x65, 0x6d, 0x6f, 0x6a, 0x69, 0x73, 0x20, 0x66, 0x72, 0x6f, 0x6d,
- 0x20, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x63, 0x6c, 0x65, 0x61, 0x6e,
- 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x20, 0x3d, 0x20, 0x6d, 0x65,
- 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x72, 0x65, 0x70, 0x6c, 0x61, 0x63,
- 0x65, 0x28, 0x2f, 0x5b, 0x5c, 0x75, 0x7b, 0x31, 0x46, 0x36, 0x30, 0x30,
- 0x7d, 0x2d, 0x5c, 0x75, 0x7b, 0x31, 0x46, 0x36, 0x34, 0x46, 0x7d, 0x5d,
- 0x7c, 0x5b, 0x5c, 0x75, 0x7b, 0x31, 0x46, 0x33, 0x30, 0x30, 0x7d, 0x2d,
- 0x5c, 0x75, 0x7b, 0x31, 0x46, 0x35, 0x46, 0x46, 0x7d, 0x5d, 0x7c, 0x5b,
- 0x5c, 0x75, 0x7b, 0x31, 0x46, 0x36, 0x38, 0x30, 0x7d, 0x2d, 0x5c, 0x75,
- 0x7b, 0x31, 0x46, 0x36, 0x46, 0x46, 0x7d, 0x5d, 0x7c, 0x5b, 0x5c, 0x75,
- 0x7b, 0x31, 0x46, 0x31, 0x45, 0x30, 0x7d, 0x2d, 0x5c, 0x75, 0x7b, 0x31,
- 0x46, 0x31, 0x46, 0x46, 0x7d, 0x5d, 0x7c, 0x5b, 0x5c, 0x75, 0x7b, 0x32,
- 0x36, 0x30, 0x30, 0x7d, 0x2d, 0x5c, 0x75, 0x7b, 0x32, 0x36, 0x46, 0x46,
- 0x7d, 0x5d, 0x7c, 0x5b, 0x5c, 0x75, 0x7b, 0x32, 0x37, 0x30, 0x30, 0x7d,
- 0x2d, 0x5c, 0x75, 0x7b, 0x32, 0x37, 0x42, 0x46, 0x7d, 0x5d, 0x2f, 0x67,
- 0x75, 0x2c, 0x20, 0x27, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x74, 0x65, 0x78,
- 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x20, 0x3d, 0x20, 0x63,
- 0x6c, 0x65, 0x61, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x20, 0x3d,
- 0x20, 0x27, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2d, 0x6d, 0x65, 0x73,
- 0x73, 0x61, 0x67, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65,
- 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65,
- 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d, 0x20, 0x27,
- 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x27, 0x3b, 0x20, 0x2f, 0x2f, 0x20, 0x45,
- 0x6e, 0x73, 0x75, 0x72, 0x65, 0x20, 0x69, 0x74, 0x27, 0x73, 0x20, 0x76,
- 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x2f, 0x2f, 0x20, 0x41, 0x64, 0x64, 0x20, 0x74, 0x79, 0x70, 0x65, 0x2d,
- 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x63, 0x20, 0x73, 0x74, 0x79,
- 0x6c, 0x69, 0x6e, 0x67, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x77, 0x69,
- 0x74, 0x63, 0x68, 0x20, 0x28, 0x74, 0x79, 0x70, 0x65, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63, 0x61, 0x73,
- 0x65, 0x20, 0x27, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x27, 0x3a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x74, 0x79,
- 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x20, 0x3d, 0x20, 0x27,
- 0x76, 0x61, 0x72, 0x28, 0x2d, 0x2d, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74,
- 0x2d, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x29, 0x27, 0x3b, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x72,
- 0x65, 0x61, 0x6b, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x61, 0x73, 0x65, 0x20, 0x27, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x27, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x73,
- 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x20, 0x3d,
- 0x20, 0x27, 0x23, 0x66, 0x66, 0x30, 0x30, 0x30, 0x30, 0x27, 0x3b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x62, 0x72, 0x65, 0x61, 0x6b, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x61, 0x73, 0x65, 0x20, 0x27, 0x69, 0x6e, 0x66,
- 0x6f, 0x27, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x2e, 0x63,
- 0x6f, 0x6c, 0x6f, 0x72, 0x20, 0x3d, 0x20, 0x27, 0x76, 0x61, 0x72, 0x28,
- 0x2d, 0x2d, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x2d, 0x63, 0x6f,
- 0x6c, 0x6f, 0x72, 0x29, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x62, 0x72, 0x65, 0x61, 0x6b,
- 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x2f, 0x2f, 0x20, 0x41, 0x75, 0x74, 0x6f, 0x2d, 0x68, 0x69, 0x64,
- 0x65, 0x20, 0x61, 0x66, 0x74, 0x65, 0x72, 0x20, 0x35, 0x20, 0x73, 0x65,
- 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65,
- 0x74, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x28, 0x28, 0x29, 0x20,
- 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x73, 0x74, 0x79,
- 0x6c, 0x65, 0x2e, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x20, 0x3d,
- 0x20, 0x27, 0x6e, 0x6f, 0x6e, 0x65, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x2c, 0x20, 0x35, 0x30, 0x30, 0x30, 0x29, 0x3b, 0x0a, 0x7d,
- 0x0a, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x61,
- 0x64, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79,
- 0x28, 0x75, 0x72, 0x6c, 0x20, 0x3d, 0x20, 0x27, 0x27, 0x2c, 0x20, 0x72,
- 0x65, 0x61, 0x64, 0x20, 0x3d, 0x20, 0x74, 0x72, 0x75, 0x65, 0x2c, 0x20,
- 0x77, 0x72, 0x69, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x74, 0x72, 0x75, 0x65,
- 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
- 0x74, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x20,
- 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67,
- 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49,
- 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32,
- 0x2d, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x65, 0x6e, 0x74, 0x72, 0x69,
- 0x65, 0x73, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x21, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72,
- 0x29, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x3b, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x65, 0x6e, 0x74,
- 0x72, 0x79, 0x44, 0x69, 0x76, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45,
- 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x28, 0x27, 0x64, 0x69, 0x76, 0x27,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x74, 0x72, 0x79,
- 0x44, 0x69, 0x76, 0x2e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d,
- 0x65, 0x20, 0x3d, 0x20, 0x27, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x65,
- 0x6e, 0x74, 0x72, 0x79, 0x27, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65,
- 0x6e, 0x74, 0x72, 0x79, 0x44, 0x69, 0x76, 0x2e, 0x69, 0x6e, 0x6e, 0x65,
- 0x72, 0x48, 0x54, 0x4d, 0x4c, 0x20, 0x3d, 0x20, 0x60, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63,
- 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x66, 0x6f, 0x72, 0x6d, 0x2d, 0x67,
- 0x72, 0x6f, 0x75, 0x70, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d,
- 0x22, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x66, 0x6c,
- 0x65, 0x78, 0x3b, 0x20, 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x2d, 0x69, 0x74,
- 0x65, 0x6d, 0x73, 0x3a, 0x20, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x3b,
- 0x20, 0x67, 0x61, 0x70, 0x3a, 0x20, 0x31, 0x30, 0x70, 0x78, 0x3b, 0x20,
- 0x6d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x2d, 0x62, 0x6f, 0x74, 0x74, 0x6f,
- 0x6d, 0x3a, 0x20, 0x31, 0x30, 0x70, 0x78, 0x3b, 0x22, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x57, 0x72, 0x69, 0x74, 0x65, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
- 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22,
- 0x75, 0x72, 0x6c, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
- 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x75, 0x72, 0x6c, 0x22, 0x20, 0x70,
- 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x3d, 0x22,
- 0x77, 0x73, 0x73, 0x3a, 0x2f, 0x2f, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2e,
- 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x22,
- 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3d, 0x22, 0x24, 0x7b, 0x75, 0x72,
- 0x6c, 0x7d, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x66,
- 0x6c, 0x65, 0x78, 0x3a, 0x20, 0x31, 0x3b, 0x20, 0x6d, 0x69, 0x6e, 0x2d,
- 0x77, 0x69, 0x64, 0x74, 0x68, 0x3a, 0x20, 0x33, 0x30, 0x30, 0x70, 0x78,
- 0x3b, 0x20, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x2d, 0x65, 0x76,
- 0x65, 0x6e, 0x74, 0x73, 0x3a, 0x20, 0x61, 0x75, 0x74, 0x6f, 0x3b, 0x20,
- 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x3a, 0x20, 0x74, 0x65, 0x78, 0x74,
- 0x3b, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x20, 0x73,
- 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
- 0x79, 0x3a, 0x20, 0x66, 0x6c, 0x65, 0x78, 0x3b, 0x20, 0x61, 0x6c, 0x69,
- 0x67, 0x6e, 0x2d, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x3a, 0x20, 0x63, 0x65,
- 0x6e, 0x74, 0x65, 0x72, 0x3b, 0x20, 0x67, 0x61, 0x70, 0x3a, 0x20, 0x35,
- 0x70, 0x78, 0x3b, 0x20, 0x77, 0x68, 0x69, 0x74, 0x65, 0x2d, 0x73, 0x70,
- 0x61, 0x63, 0x65, 0x3a, 0x20, 0x6e, 0x6f, 0x77, 0x72, 0x61, 0x70, 0x3b,
- 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x69, 0x6e, 0x70, 0x75,
- 0x74, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x63, 0x68, 0x65, 0x63,
- 0x6b, 0x62, 0x6f, 0x78, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
- 0x22, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x72, 0x65, 0x61, 0x64, 0x22,
- 0x20, 0x24, 0x7b, 0x72, 0x65, 0x61, 0x64, 0x20, 0x3f, 0x20, 0x27, 0x63,
- 0x68, 0x65, 0x63, 0x6b, 0x65, 0x64, 0x27, 0x20, 0x3a, 0x20, 0x27, 0x27,
- 0x7d, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x52, 0x65, 0x61, 0x64, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6c, 0x61,
- 0x62, 0x65, 0x6c, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x64,
- 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x66, 0x6c, 0x65, 0x78,
- 0x3b, 0x20, 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x2d, 0x69, 0x74, 0x65, 0x6d,
- 0x73, 0x3a, 0x20, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x3b, 0x20, 0x67,
- 0x61, 0x70, 0x3a, 0x20, 0x35, 0x70, 0x78, 0x3b, 0x20, 0x77, 0x68, 0x69,
+ 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62, 0x75, 0x74,
+ 0x74, 0x6f, 0x6e, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x62, 0x75,
+ 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x20, 0x6f, 0x6e, 0x63, 0x6c, 0x69, 0x63,
+ 0x6b, 0x3d, 0x22, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x6c,
+ 0x61, 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x28, 0x74, 0x68, 0x69, 0x73,
+ 0x29, 0x22, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x70, 0x61,
+ 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x34, 0x70, 0x78, 0x20, 0x38,
+ 0x70, 0x78, 0x3b, 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x69, 0x7a,
+ 0x65, 0x3a, 0x20, 0x31, 0x32, 0x70, 0x78, 0x3b, 0x20, 0x77, 0x68, 0x69,
0x74, 0x65, 0x2d, 0x73, 0x70, 0x61, 0x63, 0x65, 0x3a, 0x20, 0x6e, 0x6f,
- 0x77, 0x72, 0x61, 0x70, 0x3b, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x3c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d,
- 0x22, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x62, 0x6f, 0x78, 0x22, 0x20, 0x63,
- 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2d,
- 0x77, 0x72, 0x69, 0x74, 0x65, 0x22, 0x20, 0x24, 0x7b, 0x77, 0x72, 0x69,
- 0x74, 0x65, 0x20, 0x3f, 0x20, 0x27, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x65,
- 0x64, 0x27, 0x20, 0x3a, 0x20, 0x27, 0x27, 0x7d, 0x3e, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x57, 0x72, 0x69, 0x74, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6c, 0x61,
- 0x62, 0x65, 0x6c, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e,
- 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x62, 0x75, 0x74, 0x74, 0x6f,
- 0x6e, 0x22, 0x20, 0x6f, 0x6e, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x3d, 0x22,
- 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x45,
- 0x6e, 0x74, 0x72, 0x79, 0x28, 0x74, 0x68, 0x69, 0x73, 0x29, 0x22, 0x20,
- 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x70, 0x61, 0x64, 0x64, 0x69,
- 0x6e, 0x67, 0x3a, 0x20, 0x34, 0x70, 0x78, 0x20, 0x38, 0x70, 0x78, 0x3b,
- 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x69, 0x7a, 0x65, 0x3a, 0x20,
- 0x31, 0x32, 0x70, 0x78, 0x3b, 0x20, 0x77, 0x68, 0x69, 0x74, 0x65, 0x2d,
- 0x73, 0x70, 0x61, 0x63, 0x65, 0x3a, 0x20, 0x6e, 0x6f, 0x77, 0x72, 0x61,
- 0x70, 0x3b, 0x22, 0x3e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x3c, 0x2f,
- 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x60, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x2e, 0x61, 0x70, 0x70,
- 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28, 0x65, 0x6e, 0x74,
- 0x72, 0x79, 0x44, 0x69, 0x76, 0x29, 0x3b, 0x0a, 0x7d, 0x0a, 0x0a, 0x66,
- 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x72, 0x65, 0x6d, 0x6f,
- 0x76, 0x65, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79,
- 0x28, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x65, 0x6e, 0x74,
- 0x72, 0x79, 0x20, 0x3d, 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x2e,
- 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x73, 0x74, 0x28, 0x27, 0x2e, 0x72, 0x65,
- 0x6c, 0x61, 0x79, 0x2d, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x27, 0x29, 0x3b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x65, 0x6e, 0x74,
- 0x72, 0x79, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x2e, 0x72, 0x65, 0x6d, 0x6f,
- 0x76, 0x65, 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a,
- 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61,
- 0x6c, 0x69, 0x7a, 0x65, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20,
- 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x61, 0x66, 0x74, 0x65, 0x72,
- 0x20, 0x44, 0x4f, 0x4d, 0x20, 0x69, 0x73, 0x20, 0x72, 0x65, 0x61, 0x64,
- 0x79, 0x0a, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65,
- 0x6e, 0x65, 0x72, 0x28, 0x27, 0x44, 0x4f, 0x4d, 0x43, 0x6f, 0x6e, 0x74,
- 0x65, 0x6e, 0x74, 0x4c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x27, 0x2c, 0x20,
- 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x20, 0x7b,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65,
- 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x3d, 0x3d, 0x3d, 0x20, 0x44, 0x4f,
- 0x4d, 0x20, 0x43, 0x4f, 0x4e, 0x54, 0x45, 0x4e, 0x54, 0x20, 0x4c, 0x4f,
- 0x41, 0x44, 0x45, 0x44, 0x20, 0x2d, 0x20, 0x49, 0x4e, 0x49, 0x54, 0x49,
- 0x41, 0x4c, 0x49, 0x5a, 0x49, 0x4e, 0x47, 0x20, 0x54, 0x4f, 0x47, 0x47,
- 0x4c, 0x45, 0x20, 0x42, 0x55, 0x54, 0x54, 0x4f, 0x4e, 0x20, 0x3d, 0x3d,
- 0x3d, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x20,
- 0x74, 0x68, 0x65, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69,
- 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x20, 0x62, 0x75,
- 0x74, 0x74, 0x6f, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x65, 0x74,
- 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x28, 0x28, 0x29, 0x20, 0x3d,
- 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
- 0x27, 0x3d, 0x3d, 0x3d, 0x20, 0x53, 0x45, 0x54, 0x54, 0x49, 0x4d, 0x45,
- 0x4f, 0x55, 0x54, 0x20, 0x43, 0x41, 0x4c, 0x4c, 0x42, 0x41, 0x43, 0x4b,
- 0x20, 0x2d, 0x20, 0x43, 0x41, 0x4c, 0x4c, 0x49, 0x4e, 0x47, 0x20, 0x69,
- 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x4d, 0x6f, 0x6e,
- 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x54, 0x6f, 0x67, 0x67, 0x6c,
- 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x3d, 0x3d, 0x3d, 0x27,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69,
- 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x4d, 0x6f, 0x6e,
- 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x54, 0x6f, 0x67, 0x67, 0x6c,
- 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x28, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x2c, 0x20, 0x35, 0x30, 0x30, 0x29, 0x3b, 0x20,
- 0x2f, 0x2f, 0x20, 0x53, 0x6d, 0x61, 0x6c, 0x6c, 0x20, 0x64, 0x65, 0x6c,
- 0x61, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x65, 0x6e, 0x73, 0x75, 0x72, 0x65,
- 0x20, 0x44, 0x4f, 0x4d, 0x20, 0x69, 0x73, 0x20, 0x66, 0x75, 0x6c, 0x6c,
- 0x79, 0x20, 0x72, 0x65, 0x61, 0x64, 0x79, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x77, 0x72, 0x61, 0x70, 0x3b, 0x22, 0x3e, 0x52, 0x65, 0x6d, 0x6f, 0x76,
+ 0x65, 0x3c, 0x2f, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76,
+ 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x60, 0x3b, 0x0a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x2e,
+ 0x61, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x28,
+ 0x65, 0x6e, 0x74, 0x72, 0x79, 0x44, 0x69, 0x76, 0x29, 0x3b, 0x0a, 0x7d,
+ 0x0a, 0x0a, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x72,
+ 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x45, 0x6e,
+ 0x74, 0x72, 0x79, 0x28, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x29, 0x20,
+ 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x65, 0x6e, 0x74, 0x72, 0x79, 0x20, 0x3d, 0x20, 0x62, 0x75, 0x74, 0x74,
+ 0x6f, 0x6e, 0x2e, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x73, 0x74, 0x28, 0x27,
+ 0x2e, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x65, 0x6e, 0x74, 0x72, 0x79,
+ 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x65, 0x6e, 0x74, 0x72, 0x79, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x2e, 0x72,
+ 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x28, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x7d, 0x0a, 0x7d, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x69,
+ 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x20, 0x74, 0x6f, 0x67, 0x67,
+ 0x6c, 0x65, 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x61, 0x66,
+ 0x74, 0x65, 0x72, 0x20, 0x44, 0x4f, 0x4d, 0x20, 0x69, 0x73, 0x20, 0x72,
+ 0x65, 0x61, 0x64, 0x79, 0x0a, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e,
+ 0x74, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69,
+ 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x44, 0x4f, 0x4d, 0x43,
+ 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4c, 0x6f, 0x61, 0x64, 0x65, 0x64,
+ 0x27, 0x2c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28,
+ 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73,
+ 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x3d, 0x3d, 0x3d,
+ 0x20, 0x44, 0x4f, 0x4d, 0x20, 0x43, 0x4f, 0x4e, 0x54, 0x45, 0x4e, 0x54,
+ 0x20, 0x4c, 0x4f, 0x41, 0x44, 0x45, 0x44, 0x20, 0x2d, 0x20, 0x49, 0x4e,
+ 0x49, 0x54, 0x49, 0x41, 0x4c, 0x49, 0x5a, 0x49, 0x4e, 0x47, 0x20, 0x54,
+ 0x4f, 0x47, 0x47, 0x4c, 0x45, 0x20, 0x42, 0x55, 0x54, 0x54, 0x4f, 0x4e,
+ 0x20, 0x3d, 0x3d, 0x3d, 0x27, 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69,
- 0x7a, 0x65, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x73, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x61, 0x6c, 0x69, 0x74, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6e,
- 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x52, 0x65, 0x6c, 0x61,
- 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x28, 0x29, 0x3b, 0x0a, 0x7d,
- 0x29, 0x3b, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x69, 0x74, 0x69,
+ 0x7a, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6d, 0x6f, 0x6e, 0x69, 0x74,
+ 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65,
+ 0x20, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x73, 0x65, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x28, 0x28,
+ 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
+ 0x6f, 0x67, 0x28, 0x27, 0x3d, 0x3d, 0x3d, 0x20, 0x53, 0x45, 0x54, 0x54,
+ 0x49, 0x4d, 0x45, 0x4f, 0x55, 0x54, 0x20, 0x43, 0x41, 0x4c, 0x4c, 0x42,
+ 0x41, 0x43, 0x4b, 0x20, 0x2d, 0x20, 0x43, 0x41, 0x4c, 0x4c, 0x49, 0x4e,
+ 0x47, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65,
+ 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x54, 0x6f,
+ 0x67, 0x67, 0x6c, 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x3d,
+ 0x3d, 0x3d, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65,
+ 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x69, 0x6e, 0x67, 0x54, 0x6f,
+ 0x67, 0x67, 0x6c, 0x65, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x28, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x2c, 0x20, 0x35, 0x30, 0x30,
+ 0x29, 0x3b, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x6d, 0x61, 0x6c, 0x6c, 0x20,
+ 0x64, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x65, 0x6e, 0x73,
+ 0x75, 0x72, 0x65, 0x20, 0x44, 0x4f, 0x4d, 0x20, 0x69, 0x73, 0x20, 0x66,
+ 0x75, 0x6c, 0x6c, 0x79, 0x20, 0x72, 0x65, 0x61, 0x64, 0x79, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x49, 0x6e, 0x69, 0x74, 0x69,
0x61, 0x6c, 0x69, 0x7a, 0x65, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20,
0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x0a, 0x66, 0x75, 0x6e,
- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61,
- 0x6c, 0x69, 0x7a, 0x65, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x45, 0x76, 0x65,
- 0x6e, 0x74, 0x73, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28,
- 0x27, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x69, 0x6e,
- 0x67, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x76, 0x65, 0x6e,
- 0x74, 0x73, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61,
- 0x6c, 0x69, 0x74, 0x79, 0x2e, 0x2e, 0x2e, 0x27, 0x29, 0x3b, 0x0a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x65, 0x74, 0x20, 0x75,
- 0x70, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x68, 0x61, 0x6e, 0x64,
- 0x6c, 0x65, 0x72, 0x73, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x72, 0x65, 0x6c,
- 0x61, 0x79, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x70, 0x61,
- 0x67, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x30,
- 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x73, 0x75, 0x62, 0x6d, 0x69,
- 0x74, 0x2d, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x62, 0x74, 0x6e, 0x27,
- 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74,
- 0x20, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x31,
- 0x30, 0x30, 0x35, 0x30, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f,
- 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x73,
- 0x75, 0x62, 0x6d, 0x69, 0x74, 0x2d, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30,
- 0x30, 0x35, 0x30, 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x73, 0x75, 0x62,
- 0x6d, 0x69, 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32,
- 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x73, 0x75, 0x62, 0x6d, 0x69,
- 0x74, 0x2d, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x2d,
- 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x61, 0x64, 0x64, 0x52, 0x65, 0x6c, 0x61,
- 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20,
- 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74,
- 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28,
- 0x27, 0x61, 0x64, 0x64, 0x2d, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x65,
- 0x6e, 0x74, 0x72, 0x79, 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x75, 0x62,
- 0x6d, 0x69, 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x30, 0x42, 0x74, 0x6e, 0x29,
- 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73,
- 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x30, 0x42, 0x74,
- 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69,
- 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63,
- 0x6b, 0x27, 0x2c, 0x20, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69,
- 0x6e, 0x64, 0x30, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66,
- 0x20, 0x28, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69, 0x6e, 0x64,
- 0x31, 0x30, 0x30, 0x35, 0x30, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x75, 0x62, 0x6d,
- 0x69, 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x42,
- 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c,
- 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69,
- 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4b,
- 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x45, 0x76, 0x65, 0x6e,
- 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x75, 0x62, 0x6d, 0x69,
- 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x42, 0x74,
- 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x31,
- 0x30, 0x30, 0x30, 0x32, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45,
- 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72,
- 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x73, 0x75,
- 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30,
- 0x32, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
- 0x61, 0x64, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x45, 0x6e, 0x74, 0x72,
- 0x79, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x61, 0x64, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x79,
- 0x45, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64,
- 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65,
- 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x28,
- 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x61, 0x64, 0x64, 0x52, 0x65, 0x6c, 0x61,
- 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x28, 0x29, 0x29, 0x3b, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f,
- 0x20, 0x41, 0x64, 0x64, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x65, 0x6d, 0x70,
- 0x74, 0x79, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x6e, 0x74,
- 0x72, 0x79, 0x20, 0x62, 0x79, 0x20, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
- 0x74, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31,
- 0x30, 0x30, 0x30, 0x32, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e,
- 0x73, 0x74, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32,
- 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x20, 0x3d, 0x20,
- 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74,
- 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28,
- 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x2d, 0x72,
- 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73,
- 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
- 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x43, 0x6f, 0x6e,
- 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x20, 0x26, 0x26, 0x20, 0x6b, 0x69,
- 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x43, 0x6f, 0x6e, 0x74, 0x61,
- 0x69, 0x6e, 0x65, 0x72, 0x2e, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x72, 0x65,
- 0x6e, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20, 0x3d, 0x3d, 0x3d,
- 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x61, 0x64, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x45, 0x6e,
- 0x74, 0x72, 0x79, 0x28, 0x29, 0x3b, 0x20, 0x2f, 0x2f, 0x20, 0x41, 0x64,
- 0x64, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x20,
- 0x65, 0x6e, 0x74, 0x72, 0x79, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x74, 0x61,
- 0x72, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67, 0x28, 0x27,
- 0x41, 0x64, 0x64, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61,
- 0x6c, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x20, 0x72, 0x65, 0x6c, 0x61,
- 0x79, 0x20, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x20, 0x66, 0x6f, 0x72, 0x20,
- 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30, 0x30, 0x32, 0x27, 0x29,
+ 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x52,
+ 0x65, 0x6c, 0x61, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x28, 0x29,
+ 0x3b, 0x0a, 0x7d, 0x29, 0x3b, 0x0a, 0x0a, 0x2f, 0x2f, 0x20, 0x49, 0x6e,
+ 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x20, 0x72, 0x65, 0x6c,
+ 0x61, 0x79, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x66, 0x75,
+ 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x0a,
+ 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x69,
+ 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x52, 0x65, 0x6c, 0x61, 0x79,
+ 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x28, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c,
+ 0x6f, 0x67, 0x28, 0x27, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69,
+ 0x7a, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2e, 0x2e, 0x2e, 0x27, 0x29,
+ 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2f, 0x2f, 0x20, 0x53, 0x65,
+ 0x74, 0x20, 0x75, 0x70, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x20, 0x68,
+ 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x73, 0x20, 0x66, 0x6f, 0x72, 0x20,
+ 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73,
+ 0x20, 0x70, 0x61, 0x67, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x74, 0x20, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69,
+ 0x6e, 0x64, 0x30, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63,
+ 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65,
+ 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x73, 0x75,
+ 0x62, 0x6d, 0x69, 0x74, 0x2d, 0x6b, 0x69, 0x6e, 0x64, 0x30, 0x2d, 0x62,
+ 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f,
+ 0x6e, 0x73, 0x74, 0x20, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69,
+ 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x42, 0x74, 0x6e, 0x20, 0x3d,
+ 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65,
+ 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64,
+ 0x28, 0x27, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x2d, 0x6b, 0x69, 0x6e,
+ 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20,
+ 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x31, 0x30,
+ 0x30, 0x30, 0x32, 0x42, 0x74, 0x6e, 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63,
+ 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65,
+ 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x28, 0x27, 0x73, 0x75,
+ 0x62, 0x6d, 0x69, 0x74, 0x2d, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30,
+ 0x30, 0x32, 0x2d, 0x62, 0x74, 0x6e, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x61, 0x64, 0x64, 0x52,
+ 0x65, 0x6c, 0x61, 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x74, 0x6e,
+ 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
+ 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79,
+ 0x49, 0x64, 0x28, 0x27, 0x61, 0x64, 0x64, 0x2d, 0x72, 0x65, 0x6c, 0x61,
+ 0x79, 0x2d, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x2d, 0x62, 0x74, 0x6e, 0x27,
+ 0x29, 0x3b, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28,
+ 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x30, 0x42,
+ 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69, 0x6e, 0x64,
+ 0x30, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e,
+ 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63,
+ 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x73, 0x75, 0x62, 0x6d, 0x69,
+ 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x30, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x29,
0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f, 0x67,
- 0x28, 0x27, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x76, 0x65, 0x6e,
- 0x74, 0x73, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x61,
- 0x6c, 0x69, 0x74, 0x79, 0x20, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c,
- 0x69, 0x7a, 0x65, 0x64, 0x27, 0x29, 0x3b, 0x0a, 0x7d
+ 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4b,
+ 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x42, 0x74, 0x6e, 0x29,
+ 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73,
+ 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30,
+ 0x35, 0x30, 0x42, 0x74, 0x6e, 0x2e, 0x61, 0x64, 0x64, 0x45, 0x76, 0x65,
+ 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27,
+ 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c, 0x20, 0x73, 0x75, 0x62, 0x6d,
+ 0x69, 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x35, 0x30, 0x45,
+ 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d,
+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x28, 0x73, 0x75,
+ 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30,
+ 0x32, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69,
+ 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x42, 0x74, 0x6e, 0x2e, 0x61,
+ 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x65,
+ 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27, 0x2c,
+ 0x20, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4b, 0x69, 0x6e, 0x64, 0x31,
+ 0x30, 0x30, 0x30, 0x32, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x3b, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69,
+ 0x66, 0x20, 0x28, 0x61, 0x64, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x45,
+ 0x6e, 0x74, 0x72, 0x79, 0x42, 0x74, 0x6e, 0x29, 0x20, 0x7b, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x64, 0x64, 0x52, 0x65,
+ 0x6c, 0x61, 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x74, 0x6e, 0x2e,
+ 0x61, 0x64, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74,
+ 0x65, 0x6e, 0x65, 0x72, 0x28, 0x27, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x27,
+ 0x2c, 0x20, 0x28, 0x29, 0x20, 0x3d, 0x3e, 0x20, 0x61, 0x64, 0x64, 0x52,
+ 0x65, 0x6c, 0x61, 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x28, 0x29, 0x29,
+ 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x2f, 0x2f, 0x20, 0x41, 0x64, 0x64, 0x20, 0x6f, 0x6e, 0x65, 0x20,
+ 0x65, 0x6d, 0x70, 0x74, 0x79, 0x20, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x20,
+ 0x65, 0x6e, 0x74, 0x72, 0x79, 0x20, 0x62, 0x79, 0x20, 0x64, 0x65, 0x66,
+ 0x61, 0x75, 0x6c, 0x74, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x4b, 0x69, 0x6e,
+ 0x64, 0x20, 0x31, 0x30, 0x30, 0x30, 0x32, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30,
+ 0x30, 0x30, 0x32, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72,
+ 0x20, 0x3d, 0x20, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
+ 0x67, 0x65, 0x74, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x79,
+ 0x49, 0x64, 0x28, 0x27, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30,
+ 0x32, 0x2d, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x2d, 0x65, 0x6e, 0x74, 0x72,
+ 0x69, 0x65, 0x73, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69,
+ 0x66, 0x20, 0x28, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32,
+ 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x20, 0x26, 0x26,
+ 0x20, 0x6b, 0x69, 0x6e, 0x64, 0x31, 0x30, 0x30, 0x30, 0x32, 0x43, 0x6f,
+ 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x2e, 0x63, 0x68, 0x69, 0x6c,
+ 0x64, 0x72, 0x65, 0x6e, 0x2e, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x20,
+ 0x3d, 0x3d, 0x3d, 0x20, 0x30, 0x29, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x61, 0x64, 0x64, 0x52, 0x65, 0x6c, 0x61,
+ 0x79, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x28, 0x29, 0x3b, 0x20, 0x2f, 0x2f,
+ 0x20, 0x41, 0x64, 0x64, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x65, 0x6d, 0x70,
+ 0x74, 0x79, 0x20, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x20, 0x74, 0x6f, 0x20,
+ 0x73, 0x74, 0x61, 0x72, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e, 0x6c, 0x6f,
+ 0x67, 0x28, 0x27, 0x41, 0x64, 0x64, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x69,
+ 0x74, 0x69, 0x61, 0x6c, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x20, 0x72,
+ 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x20, 0x66,
+ 0x6f, 0x72, 0x20, 0x4b, 0x69, 0x6e, 0x64, 0x20, 0x31, 0x30, 0x30, 0x30,
+ 0x32, 0x27, 0x29, 0x3b, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7d, 0x0a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x2e,
+ 0x6c, 0x6f, 0x67, 0x28, 0x27, 0x52, 0x65, 0x6c, 0x61, 0x79, 0x20, 0x65,
+ 0x76, 0x65, 0x6e, 0x74, 0x73, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x20, 0x69, 0x6e, 0x69, 0x74,
+ 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x64, 0x27, 0x29, 0x3b, 0x0a, 0x7d
};
static const size_t embedded_index_js_size = sizeof(embedded_index_js);
diff --git a/src/ginxsom.h b/src/ginxsom.h
index 5ff1a9a..df7174e 100644
--- a/src/ginxsom.h
+++ b/src/ginxsom.h
@@ -10,8 +10,8 @@
// Version information (auto-updated by build system)
#define VERSION_MAJOR 0
#define VERSION_MINOR 1
-#define VERSION_PATCH 15
-#define VERSION "v0.1.15"
+#define VERSION_PATCH 16
+#define VERSION "v0.1.16"
#include
#include
diff --git a/src/main.c b/src/main.c
index 9abd2b3..53cfeae 100644
--- a/src/main.c
+++ b/src/main.c
@@ -248,7 +248,7 @@ int initialize_database(const char *db_path) {
return -1;
}
- // Create storage_stats view
+ // Create storage_stats view (legacy - kept for backward compatibility)
const char *create_view =
"CREATE VIEW IF NOT EXISTS storage_stats AS "
"SELECT "
@@ -268,6 +268,85 @@ int initialize_database(const char *db_path) {
return -1;
}
+ // Create blob_overview view for admin dashboard
+ const char *create_overview_view =
+ "CREATE VIEW IF NOT EXISTS blob_overview AS "
+ "SELECT "
+ " COUNT(*) as total_blobs, "
+ " COALESCE(SUM(size), 0) as total_bytes, "
+ " MIN(uploaded_at) as first_upload, "
+ " MAX(uploaded_at) as last_upload "
+ "FROM blobs;";
+
+ rc = sqlite3_exec(db, create_overview_view, NULL, NULL, &err_msg);
+ if (rc != SQLITE_OK) {
+ fprintf(stderr, "Failed to create blob_overview view: %s\n", err_msg);
+ sqlite3_free(err_msg);
+ sqlite3_close(db);
+ return -1;
+ }
+
+ // Create blob_type_distribution view for MIME type statistics
+ const char *create_type_view =
+ "CREATE VIEW IF NOT EXISTS blob_type_distribution AS "
+ "SELECT "
+ " type as mime_type, "
+ " COUNT(*) as blob_count, "
+ " SUM(size) as total_bytes, "
+ " ROUND(COUNT(*) * 100.0 / (SELECT COUNT(*) FROM blobs), 2) as percentage "
+ "FROM blobs "
+ "GROUP BY type "
+ "ORDER BY blob_count DESC;";
+
+ rc = sqlite3_exec(db, create_type_view, NULL, NULL, &err_msg);
+ if (rc != SQLITE_OK) {
+ fprintf(stderr, "Failed to create blob_type_distribution view: %s\n", err_msg);
+ sqlite3_free(err_msg);
+ sqlite3_close(db);
+ return -1;
+ }
+
+ // Create blob_time_stats view for time-based statistics
+ const char *create_time_view =
+ "CREATE VIEW IF NOT EXISTS blob_time_stats AS "
+ "SELECT "
+ " COUNT(CASE WHEN uploaded_at >= strftime('%s', 'now', '-1 day') THEN 1 END) as blobs_24h, "
+ " COUNT(CASE WHEN uploaded_at >= strftime('%s', 'now', '-7 days') THEN 1 END) as blobs_7d, "
+ " COUNT(CASE WHEN uploaded_at >= strftime('%s', 'now', '-30 days') THEN 1 END) as blobs_30d "
+ "FROM blobs;";
+
+ rc = sqlite3_exec(db, create_time_view, NULL, NULL, &err_msg);
+ if (rc != SQLITE_OK) {
+ fprintf(stderr, "Failed to create blob_time_stats view: %s\n", err_msg);
+ sqlite3_free(err_msg);
+ sqlite3_close(db);
+ return -1;
+ }
+
+ // Create top_uploaders view for pubkey statistics
+ const char *create_uploaders_view =
+ "CREATE VIEW IF NOT EXISTS top_uploaders AS "
+ "SELECT "
+ " uploader_pubkey, "
+ " COUNT(*) as blob_count, "
+ " SUM(size) as total_bytes, "
+ " ROUND(COUNT(*) * 100.0 / (SELECT COUNT(*) FROM blobs), 2) as percentage, "
+ " MIN(uploaded_at) as first_upload, "
+ " MAX(uploaded_at) as last_upload "
+ "FROM blobs "
+ "WHERE uploader_pubkey IS NOT NULL "
+ "GROUP BY uploader_pubkey "
+ "ORDER BY blob_count DESC "
+ "LIMIT 20;";
+
+ rc = sqlite3_exec(db, create_uploaders_view, NULL, NULL, &err_msg);
+ if (rc != SQLITE_OK) {
+ fprintf(stderr, "Failed to create top_uploaders view: %s\n", err_msg);
+ sqlite3_free(err_msg);
+ sqlite3_close(db);
+ return -1;
+ }
+
fprintf(stderr, "Database schema initialized successfully\n");
}