From 79226a835e769990fa980c9708c78d1c094f6555 Mon Sep 17 00:00:00 2001 From: Jamie Pine Date: Mon, 1 Dec 2025 16:54:56 -0800 Subject: [PATCH] remove stray test snapshots directory --- test_snapshots/ANALYSIS.md | 52 - test_snapshots/FINAL_ANALYSIS.md | 76 - test_snapshots/FINDINGS.md | 45 - test_snapshots/NORMALIZED_CACHE_FLOW.md | 157 - test_snapshots/ROOT_CAUSE_FOUND.md | 150 - test_snapshots/analyze.sh | 104 - test_snapshots/check_overlap.sh | 42 - test_snapshots/check_total_unique.sh | 38 - test_snapshots/compare_structures.sh | 122 - test_snapshots/comparison.sh | 29 - test_snapshots/db_entries_all.json | 1647 -------- test_snapshots/db_entries_sample.json | 37 - test_snapshots/events_Content.json | 4866 ---------------------- test_snapshots/events_Discovery.json | 3604 ----------------- test_snapshots/phase_Content.json | 4947 ----------------------- test_snapshots/phase_Discovery.json | 3648 ----------------- test_snapshots/phase_Initial.json | 7 - test_snapshots/track_single_file.sh | 61 - 18 files changed, 19632 deletions(-) delete mode 100644 test_snapshots/ANALYSIS.md delete mode 100644 test_snapshots/FINAL_ANALYSIS.md delete mode 100644 test_snapshots/FINDINGS.md delete mode 100644 test_snapshots/NORMALIZED_CACHE_FLOW.md delete mode 100644 test_snapshots/ROOT_CAUSE_FOUND.md delete mode 100755 test_snapshots/analyze.sh delete mode 100755 test_snapshots/check_overlap.sh delete mode 100755 test_snapshots/check_total_unique.sh delete mode 100755 test_snapshots/compare_structures.sh delete mode 100755 test_snapshots/comparison.sh delete mode 100644 test_snapshots/db_entries_all.json delete mode 100644 test_snapshots/db_entries_sample.json delete mode 100644 test_snapshots/events_Content.json delete mode 100644 test_snapshots/events_Discovery.json delete mode 100644 test_snapshots/phase_Content.json delete mode 100644 test_snapshots/phase_Discovery.json delete mode 100644 test_snapshots/phase_Initial.json delete mode 100755 test_snapshots/track_single_file.sh diff --git a/test_snapshots/ANALYSIS.md b/test_snapshots/ANALYSIS.md deleted file mode 100644 index 77c8aecef..000000000 --- a/test_snapshots/ANALYSIS.md +++ /dev/null @@ -1,52 +0,0 @@ -# Phase Snapshot Analysis - -## Event File Structure (from events_Content.json) - -```json -{ - "id": "01f866cf-ab4a-474b-800d-6e10f1445aae", - "name": "TUPLE_VARIANTS_IMPLEMENTED", - "sd_path": { - "Content": { - "content_id": "3e457574-0b4a-51e8-80ae-ad05f78193d7" - } - }, - "content_identity": "3e457574-0b4a-51e8-80ae-ad05f78193d7" -} -``` - -## Database Entry Structure (from db_entries_sample.json) - -```json -{ - "entry_id": 8, - "entry_uuid": "26977785-98eb-4de7-a77b-dc63daef44b3", - "name": "Screen Recording 2025-11-10 at 2.42.22 AM", - "content_id_fk": 1 -} -``` - -## Key Findings - -**Event Files:** -- `id` = entry UUID (e.g., `"01f866cf-ab4a-474b-800d-6e10f1445aae"`) -- `sd_path` = Content path with `content_id` -- `content_identity.uuid` matches `sd_path.Content.content_id` - -**Database Entries:** -- `entry_uuid` = UUID stored in entry table -- `content_id_fk` = Foreign key to content_identities table (integer) - -**Directory Query (expected):** -- Should use `entry_uuid` as File `id` -- Should use Physical `sd_path` like `/Users/jamespine/Desktop/file.txt` - -## The Problem - -Events and queries should have matching IDs (both use `entry_uuid`), but: -1. Event `sd_path` = Content type -2. Query `sd_path` = Physical type - -This means path-based filtering can't work, but ID-based matching SHOULD work if both use the same UUID. - -Check the actual directory listing query to confirm it uses `entry_uuid` as the File `id`. diff --git a/test_snapshots/FINAL_ANALYSIS.md b/test_snapshots/FINAL_ANALYSIS.md deleted file mode 100644 index 271b1a42e..000000000 --- a/test_snapshots/FINAL_ANALYSIS.md +++ /dev/null @@ -1,76 +0,0 @@ -# FINAL ANALYSIS - Normalized Cache Issue - -## Test Results Summary - -**Test:** Indexed Desktop (235 files total) with Content mode - -### Phase Event Breakdown - -| Phase | Files Emitted | Content Identity | -|-------|---------------|------------------| -| Discovery | 100 | All have content_identity | -| Content | 135 | All have content_identity | - -### Critical Finding: ZERO OVERLAP - -**Discovery files vs Content files:** 0 files appear in both phases - -This means: -- Discovery phase emits events for files 1-100 -- Content phase emits events for files 101-235 (different subset) -- **They emit for completely different files** - -## Why This Breaks Normalized Cache - -### Scenario: User viewing /Downloads with 30 files - -**Step 1: Initial load** -- Query returns 30 files with IDs: `[A, B, C, ..., Z]` -- Cache populated - -**Step 2: Discovery phase events arrive** -- Batch #1: 100 files with IDs `[file001, file002, ..., file100]` -- Check: Do any of these IDs match `[A, B, C, ..., Z]`? -- Answer: **Maybe 5-10 files** if they're from /Downloads -- Result: Update 5 files, ignore 95 - -**Step 3: Content phase events arrive** -- Batch #1: 100 files with IDs `[file101, file102, ..., file200]` -- These are DIFFERENT files from Discovery -- Check: Do any match `[A, B, C, ..., Z]`? -- Answer: **Maybe 10 files** if from /Downloads -- Result: Update 10 files - -### The Problem - -Files get emitted in DIFFERENT batches across phases: -- File "document.pdf" emitted in Discovery phase -- File "photo.jpg" emitted in Content phase -- BUT they might be in the SAME directory - -When Content phase events arrive, they DON'T include "document.pdf" again. -So if Discovery event had incomplete data, it never gets fixed! - -## Data Confirms: Events Have Complete Data - -From snapshots: -- Discovery: 100/100 files have content_identity -- Content: 135/135 files have content_identity - -**Events are NOT missing content_identity!** - -## The Real Bug - -The logs show "Updated 0 items" which means: -1. Event batch arrives with 100 files -2. Current directory has 30 files -3. **ZERO IDs match** between event and directory -4. Nothing gets updated - -But you said content_identity disappears... - -Let me check if maybe the resourceFilter is REJECTING all files, causing React Query to have an empty cache. - -## Next Step - -Check the resourceFilter logic - it might be rejecting ALL files, leaving an empty array. diff --git a/test_snapshots/FINDINGS.md b/test_snapshots/FINDINGS.md deleted file mode 100644 index c2a9c96db..000000000 --- a/test_snapshots/FINDINGS.md +++ /dev/null @@ -1,45 +0,0 @@ -# Phase Snapshot Analysis - FINDINGS - -## Confirmed: IDs DO MATCH! - -Event file with name "3AE4AB29-5EC8-4DF9-80F8-F72AE5C38FBF": -- Event ID: `0303b9df-3b11-49a6-beb6-0fdec577fefb` -- DB entry_uuid: `0303b9df-3b11-49a6-beb6-0fdec577fefb` - -**Conclusion:** Events and database entries use the SAME UUID for File.id - -## The Real Problem - -If IDs match, why doesn't the normalized cache work? - -Looking at the frontend logs from earlier: -``` -Sample existing ID: "a72dfd9e-1908-4ddd-aa44-37458e8455ae" -Sample incoming ID: "0093bc71-a000-49f3-83f1-d1f72428665e" -WRAPPED: Updated 0 items -``` - -These IDs are different! This means: -1. The directory listing query returned files with certain UUIDs -2. The events arrived with DIFFERENT UUIDs (different files entirely) -3. No overlap = no matches = "Updated 0 items" - -## Root Cause Theory - -The events contain files from ALL OVER Desktop (100+ files per batch). -The directory listing only has ~30 files from the CURRENT directory. - -Most batches have 0 overlap with the current directory, so: -- Updated 0 items (correct - those files aren't in this directory) -- But without proper filtering, the lag still happens from processing all events - -## Solution - -We need the `resourceFilter` to work, but it needs to handle Content paths. - -The filter should check: -1. Does this file's `content_identity.uuid` match ANY file in my current directory query? -2. If yes → this file belongs here, update it -3. If no → ignore it (it's from a different directory) - -This is what the current resourceFilter tries to do - match by content_id. diff --git a/test_snapshots/NORMALIZED_CACHE_FLOW.md b/test_snapshots/NORMALIZED_CACHE_FLOW.md deleted file mode 100644 index aa5b881dd..000000000 --- a/test_snapshots/NORMALIZED_CACHE_FLOW.md +++ /dev/null @@ -1,157 +0,0 @@ -# Normalized Cache Flow Analysis - -## Current Implementation Flow - -### 1. Initial Query Load -```typescript -// User navigates to /Downloads -const directoryQuery = useNormalizedCache({ - wireMethod: "query:files.directory_listing", - input: { path: "/Downloads", ... }, - resourceType: "file", - resourceFilter: (file) => { /* content_id matching logic */ } -}) -``` - -**Result:** Query returns 30 files with: -- `id` = entry.uuid (e.g., `"a72dfd9e-1908-..."`) -- `sd_path` = Physical path -- `content_identity.uuid` = content UUID - -**TanStack Query cache now contains:** -```json -{ - "files": [ - { - "id": "a72dfd9e-1908-...", - "name": "document.pdf", - "content_identity": { "uuid": "xyz123..." } - }, - // ... 29 more files - ] -} -``` - ---- - -### 2. Indexing Starts - Events Arrive - -**Event arrives:** -```json -ResourceChangedBatch { - resource_type: "file", - resources: [ - { - "id": "different-uuid-not-in-downloads", - "sd_path": { "Content": { "content_id": "abc456..." } }, - "content_identity": { "uuid": "abc456..." } - }, - // ... 99 more files from various directories - ] -} -``` - ---- - -### 3. Event Processing (lines 194-322) - -```typescript -queryClient.setQueryData((oldData) => { - // oldData = { files: [30 items from /Downloads] } - - const resourceMap = new Map(resources.map(r => [r.id, r])); - // Map has 100 items with IDs from the event - - const array = [...oldData.files]; // 30 items - - // STEP A: Try to update existing items (lines 275-296) - for (let i = 0; i < 30; i++) { - const item = array[i]; // File from /Downloads - - if (resourceMap.has(item.id)) { - // Does event batch contain THIS file's ID? - // Usually NO - event has files from other directories - // So this rarely executes - } - } - - // Result: updateCount = 0 (no matches) - - // STEP B: Try to append new items (lines 309-315) - if (resourceFilter) { - for (const resource of resources) { // 100 event files - if (!seenIds.has(resource.id) && resourceFilter(resource)) { - // resourceFilter checks: is this file's content_id in oldData? - // Problem: resourceFilter accesses directoryQuery.data - // But we're INSIDE the setQueryData callback! - // directoryQuery.data might be stale! - array.push(resource); - } - } - } - - return { files: array }; -}); -``` - ---- - -## THE BUG - -**Line 116 in context.tsx:** -```typescript -const currentFiles = directoryQuery.data?.files || []; -``` - -This creates a **closure problem**: -1. resourceFilter is defined with `directoryQuery.data` reference -2. When event arrives, resourceFilter runs INSIDE `setQueryData` -3. But `directoryQuery.data` still has the OLD data at this point -4. React Query hasn't updated the hook's `data` property yet -5. So resourceFilter is comparing against stale data! - -**Even worse:** The resourceFilter runs for EVERY batch (100 files × many batches). -Each time it checks if 100 files match the stale `directoryQuery.data`. - ---- - -## Why Content Identity Disappears - -Looking at your logs: -- "Updated 100 items" sometimes -- "Updated 0 items" other times - -When "Updated 100 items": -- Those 100 event files happened to have IDs matching files in /Downloads -- `mergeWithoutNulls()` runs -- BUT: `mergeWithoutNulls()` does shallow merge! -- Line 14: `const merged = { ...incoming }` -- This REPLACES the entire object with incoming data -- Only top-level null fields get preserved - -**The Problem:** -If incoming file has `content_identity: { uuid: "xyz", content_hash: "abc" }` -And existing has `content_identity: { uuid: "xyz", content_hash: "abc", extra_field: "value" }` - -The merge does: -```javascript -merged = { ...incoming } // Start with incoming -// Then fix top-level nulls -if (incoming.content_identity === null && existing.content_identity !== null) { - merged.content_identity = existing.content_identity -} -``` - -But if BOTH have content_identity (not null), no preservation happens! -The incoming object REPLACES the existing one entirely. - ---- - -## Summary - -1. **resourceFilter** has stale data closure issue -2. **mergeWithoutNulls** only preserves null→value, not value→different-value -3. **No filtering works** because paths don't match (Content vs Physical) -4. Every batch processes all 100 files, checking stale data -5. When IDs match by chance, merge doesn't preserve nested fields properly - diff --git a/test_snapshots/ROOT_CAUSE_FOUND.md b/test_snapshots/ROOT_CAUSE_FOUND.md deleted file mode 100644 index 609941ab6..000000000 --- a/test_snapshots/ROOT_CAUSE_FOUND.md +++ /dev/null @@ -1,150 +0,0 @@ -# ROOT CAUSE IDENTIFIED - Missing Icons During Indexing - -## The Bug - -During indexing, video files (and other media) lose their proper icons and fall back to the generic "Document" icon. The icons are restored when thumbnails are generated, but for files without thumbnails (like videos with thumbnail generation disabled), the icons remain wrong. - -## What We Thought It Was - -- content_identity disappearing (normalized cache bug) -- React not re-rendering -- TanStack Query not updating -- Event system not working - -## What It Actually Is - -**The `content_kind` field is hardcoded to "unknown" in event data** - -## The Evidence - -### From Browser Logs - -All 4 videos render with complete data: -``` -Screen Recording 2025-11-09 at 7.18.50 PM: - has_content_identity: true - content_identity_uuid: "06358a76-0974-50c9-a939-70b70a910a91" - sidecars_count: 0 -``` - -### From TanStack Query Devtools - -Final state shows all videos have `content_identity` populated with all fields present. - -### From Event Snapshots (test_snapshots/) - -```json -{ - "content_identity": { - "uuid": "...", - "content_hash": "...", - "kind": "unknown" // THIS IS THE PROBLEM - } -} -``` - -## How The Icon System Works - -**Thumb.tsx line 66-67:** -```typescript -const kindCapitalized = file.content_identity?.kind - ? file.content_identity.kind.charAt(0).toUpperCase() + file.content_identity.kind.slice(1) - : "Document"; - -const icon = getIcon(kindCapitalized, true, file.extension, ...); -``` - -**When kind = "unknown":** -- Capitalizes to "Unknown" -- `getIcon("Unknown", ...)` returns generic document icon -- Videos, images, etc. all show document icon - -**When kind = "video":** -- Capitalizes to "Video" -- `getIcon("Video", ...)` returns video icon -- Correct icon shows - -## The Root Cause Code - -**File:** `core/src/domain/file.rs:354` - -```rust -file.content_identity = Some(ContentIdentity { - uuid: ci_uuid, - content_hash: ci.content_hash.clone(), - integrity_hash: ci.integrity_hash.clone(), - mime_type_id: ci.mime_type_id, - kind: ContentKind::Unknown, // TODO: Load from content_kinds table - total_size: ci.total_size, - entry_count: ci.entry_count, - first_seen_at: ci.first_seen_at, - last_verified_at: ci.last_verified_at, - text_content: ci.text_content.clone(), -}); -``` - -**The TODO comment says it all:** "Load from content_kinds table" - -## Why Thumbnails "Fix" It - -When thumbnail events arrive, they trigger a re-render and the thumbnail image loads, hiding the icon entirely. So you don't notice the wrong icon anymore. But the underlying data is still wrong - `kind` is still "unknown". - -## The Fix - -In `File::from_entry_uuids()`, we need to: - -1. Load the `content_kind` for each `content_identity` -2. Join with the `content_kinds` table -3. Map the `kind_id` to `ContentKind` enum -4. Set the correct kind instead of `ContentKind::Unknown` - -**The database already has this data** - we just need to query it: - -```rust -// Load content kinds -let content_kinds = content_kind::Entity::find() - .filter(content_kind::Column::Id.is_in( - content_identities.iter().map(|ci| ci.kind_id) - )) - .all(db) - .await?; - -let kind_by_id: HashMap = content_kinds - .into_iter() - .map(|ck| (ck.id, ContentKind::from_id(ck.id))) - .collect(); - -// Then when building ContentIdentity: -kind: kind_by_id.get(&ci.kind_id).copied().unwrap_or(ContentKind::Unknown), -``` - -## Why The Normalized Cache Actually Works Perfectly - -The entire investigation proved the normalized cache is working correctly: - -Events are emitted with complete data (all 100% have content_identity) -IDs match between events and queries (entry.uuid) -Deep merge preserves existing data correctly -Filter matches files by content_id successfully -TanStack Query updates atomically -React re-renders when cache changes -Components receive updated props - -The ONLY bug: `content_kind` is hardcoded to "unknown" in event data, causing wrong icons. - -## Test Results Summary - -- **phase_Discovery.json**: 100 files, all with `kind: "unknown"` -- **phase_Content.json**: 135 files, all with `kind: "unknown"` -- **db_entries_all.json**: Database has 235 entries with proper content_id foreign keys - -The database HAS the correct content_kind data. The directory listing query probably loads it correctly (TODO: verify). But `File::from_entry_uuids()` doesn't load it, so events have incomplete kind information. - -## Next Steps - -1. Add content_kind join to `File::from_entry_uuids()` -2. Map kind_id to ContentKind enum -3. Test that icons appear correctly during indexing -4. Remove all the debug logging we added - -That's it. One small database join fixes everything. diff --git a/test_snapshots/analyze.sh b/test_snapshots/analyze.sh deleted file mode 100755 index 1a959d3f7..000000000 --- a/test_snapshots/analyze.sh +++ /dev/null @@ -1,104 +0,0 @@ -#!/bin/bash - -echo "==============================================" -echo "TEMPORAL PHASE ANALYSIS" -echo "==============================================" -echo "" - -# Check Discovery phase -if [ -f "phase_Discovery.json" ]; then - echo "DISCOVERY PHASE:" - DISCOVERY_COUNT=$(jq '.total_files' phase_Discovery.json) - echo " Total files: $DISCOVERY_COUNT" - - echo " Sample file structure:" - jq '.all_files[0] | {id, name, sd_path_type: (.sd_path | keys[0]), has_content_identity: (.content_identity != null)}' phase_Discovery.json - echo "" -fi - -# Check Content phase -if [ -f "phase_Content.json" ]; then - echo "CONTENT PHASE:" - CONTENT_COUNT=$(jq '.total_files' phase_Content.json) - echo " Total files: $CONTENT_COUNT" - - echo " Sample file structure:" - jq '.all_files[0] | {id, name, sd_path_type: (.sd_path | keys[0]), has_content_identity: (.content_identity != null)}' phase_Content.json - - echo "" - echo " Content identity breakdown:" - WITH_CONTENT=$(jq '[.all_files[] | select(.content_identity != null)] | length' phase_Content.json) - WITHOUT_CONTENT=$(jq '[.all_files[] | select(.content_identity == null)] | length' phase_Content.json) - echo " - With content_identity: $WITH_CONTENT" - echo " - Without content_identity: $WITHOUT_CONTENT" - echo "" -fi - -# Compare IDs between phases -echo "==============================================" -echo "ID CONSISTENCY CHECK" -echo "==============================================" -echo "" - -if [ -f "phase_Discovery.json" ] && [ -f "phase_Content.json" ]; then - DISC_ID=$(jq -r '.all_files[0].id' phase_Discovery.json) - CONT_ID=$(jq -r '.all_files[0].id' phase_Content.json) - - echo "First file ID in Discovery: $DISC_ID" - echo "First file ID in Content: $CONT_ID" - - # Check if same file appears in both phases - DISC_NAME=$(jq -r '.all_files[0].name' phase_Discovery.json) - CONT_FILE=$(jq -r --arg name "$DISC_NAME" '.all_files[] | select(.name == $name) | .id' phase_Content.json | head -1) - - if [ -n "$CONT_FILE" ]; then - echo "" - echo "File '$DISC_NAME' found in both phases" - echo " Discovery ID: $DISC_ID" - echo " Content ID: $CONT_FILE" - if [ "$DISC_ID" == "$CONT_FILE" ]; then - echo " IDs MATCH" - else - echo " IDs DIFFERENT" - fi - fi -fi - -echo "" -echo "==============================================" -echo "DATABASE ENTRY COMPARISON" -echo "==============================================" -echo "" - -# Check if event IDs exist in database -if [ -f "phase_Content.json" ] && [ -f "db_entries_all.json" ]; then - EVENT_ID=$(jq -r '.all_files[0].id' phase_Content.json) - EVENT_NAME=$(jq -r '.all_files[0].name' phase_Content.json) - - echo "Checking if event file exists in database:" - echo " Event file name: $EVENT_NAME" - echo " Event file ID: $EVENT_ID" - echo "" - - DB_ENTRY=$(jq --arg id "$EVENT_ID" '.[] | select(.entry_uuid == $id)' db_entries_all.json) - - if [ -n "$DB_ENTRY" ]; then - echo " FOUND in database:" - echo "$DB_ENTRY" | jq '{entry_id, entry_uuid, name}' - else - echo " NOT FOUND in database" - echo " Searching by name instead..." - DB_BY_NAME=$(jq --arg name "$EVENT_NAME" '.[] | select(.name == $name)' db_entries_all.json) - if [ -n "$DB_BY_NAME" ]; then - echo " Found by name:" - echo "$DB_BY_NAME" | jq '{entry_id, entry_uuid, name}' - fi - fi -fi - -echo "" -echo "==============================================" -echo "FILES CREATED - Check these for full details:" -echo "==============================================" -ls -lh *.json *.md 2>/dev/null | awk '{print " " $9 " (" $5 ")"}' -echo "" diff --git a/test_snapshots/check_overlap.sh b/test_snapshots/check_overlap.sh deleted file mode 100755 index 0eb81c072..000000000 --- a/test_snapshots/check_overlap.sh +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/bash - -echo "Checking file overlap between phases..." -echo "" - -# Get all IDs from each phase -DISCOVERY_IDS=$(jq -r '.all_files[].id' phase_Discovery.json | sort) -CONTENT_IDS=$(jq -r '.all_files[].id' phase_Content.json | sort) - -DISCOVERY_COUNT=$(echo "$DISCOVERY_IDS" | wc -l | tr -d ' ') -CONTENT_COUNT=$(echo "$CONTENT_IDS" | wc -l | tr -d ' ') - -echo "Discovery phase: $DISCOVERY_COUNT files" -echo "Content phase: $CONTENT_COUNT files" -echo "" - -# Find overlapping IDs -OVERLAP=$(comm -12 <(echo "$DISCOVERY_IDS") <(echo "$CONTENT_IDS") | wc -l | tr -d ' ') - -echo "Files appearing in BOTH phases: $OVERLAP" -echo "" - -if [ "$OVERLAP" -gt 0 ]; then - echo "Some files appear in both phases" - echo "" - echo "Sample overlapping file:" - OVERLAP_ID=$(comm -12 <(echo "$DISCOVERY_IDS") <(echo "$CONTENT_IDS") | head -1) - echo "ID: $OVERLAP_ID" - - echo "" - echo "In Discovery:" - jq --arg id "$OVERLAP_ID" '.all_files[] | select(.id == $id) | {name, has_content_identity: (.content_identity != null)}' phase_Discovery.json - - echo "" - echo "In Content:" - jq --arg id "$OVERLAP_ID" '.all_files[] | select(.id == $id) | {name, has_content_identity: (.content_identity != null)}' phase_Content.json -else - echo "NO files appear in both phases" - echo " Discovery emits one set of files" - echo " Content emits a completely different set" - echo " This is expected if they're different batches/directories" -fi diff --git a/test_snapshots/check_total_unique.sh b/test_snapshots/check_total_unique.sh deleted file mode 100755 index 19a761f66..000000000 --- a/test_snapshots/check_total_unique.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -echo "Checking TOTAL UNIQUE files across all phases..." -echo "" - -# Get all unique IDs from Discovery -DISCOVERY_IDS=$(jq -r '.all_files[].id' phase_Discovery.json | sort -u) - -# Get all unique IDs from Content -CONTENT_IDS=$(jq -r '.all_files[].id' phase_Content.json | sort -u) - -# Combine and count unique -ALL_IDS=$(echo -e "$DISCOVERY_IDS\n$CONTENT_IDS" | sort -u) -TOTAL_UNIQUE=$(echo "$ALL_IDS" | wc -l | tr -d ' ') - -DISCOVERY_COUNT=$(echo "$DISCOVERY_IDS" | wc -l | tr -d ' ') -CONTENT_COUNT=$(echo "$CONTENT_IDS" | wc -l | tr -d ' ') - -echo "Discovery phase: $DISCOVERY_COUNT unique file IDs" -echo "Content phase: $CONTENT_COUNT unique file IDs" -echo "Total unique: $TOTAL_UNIQUE file IDs" -echo "" -echo "Database entries: 235" -echo "" - -if [ "$TOTAL_UNIQUE" -eq 235 ]; then - echo "Total unique matches DB count!" - echo " Discovery + Content = exactly 235 files" - echo " They are DIFFERENT files (no duplicates)" -elif [ "$TOTAL_UNIQUE" -lt 235 ]; then - echo "Total unique ($TOTAL_UNIQUE) < 235" - echo " Some files appear in BOTH phases" - OVERLAP=$((DISCOVERY_COUNT + CONTENT_COUNT - TOTAL_UNIQUE)) - echo " Overlap: $OVERLAP files" -else - echo "️ Total unique ($TOTAL_UNIQUE) > 235" - echo " This shouldn't happen - more files in events than DB?" -fi diff --git a/test_snapshots/compare_structures.sh b/test_snapshots/compare_structures.sh deleted file mode 100755 index f1abdc412..000000000 --- a/test_snapshots/compare_structures.sh +++ /dev/null @@ -1,122 +0,0 @@ -#!/bin/bash - -echo "==============================================" -echo "DETAILED STRUCTURE COMPARISON" -echo "==============================================" -echo "" - -# Get first file from each phase -echo "DISCOVERY PHASE - First File:" -echo "================================" -jq '.all_files[0]' phase_Discovery.json > /tmp/discovery_file.json -cat /tmp/discovery_file.json | jq '.' -echo "" - -echo "CONTENT PHASE - First File:" -echo "================================" -jq '.all_files[0]' phase_Content.json > /tmp/content_file.json -cat /tmp/content_file.json | jq '.' -echo "" - -echo "==============================================" -echo "FIELD-BY-FIELD COMPARISON" -echo "==============================================" -echo "" - -# Compare each field -echo "Field: id" -DISC_ID=$(jq -r '.id' /tmp/discovery_file.json) -CONT_ID=$(jq -r '.id' /tmp/content_file.json) -echo " Discovery: $DISC_ID" -echo " Content: $CONT_ID" -echo "" - -echo "Field: sd_path" -echo " Discovery:" -jq '.sd_path' /tmp/discovery_file.json -echo " Content:" -jq '.sd_path' /tmp/content_file.json -echo "" - -echo "Field: content_identity" -echo " Discovery:" -jq '.content_identity | if . == null then "NULL" else ("Present - uuid: " + .uuid) end' /tmp/discovery_file.json -echo " Content:" -jq '.content_identity | if . == null then "NULL" else ("Present - uuid: " + .uuid) end' /tmp/content_file.json -echo "" - -echo "Field: sidecars" -DISC_SIDECARS=$(jq '.sidecars | length' /tmp/discovery_file.json) -CONT_SIDECARS=$(jq '.sidecars | length' /tmp/content_file.json) -echo " Discovery: $DISC_SIDECARS sidecars" -echo " Content: $CONT_SIDECARS sidecars" -echo "" - -echo "==============================================" -echo "SCHEMA DIFFERENCES" -echo "==============================================" -echo "" - -echo "All top-level fields in Discovery file:" -jq 'keys | sort' /tmp/discovery_file.json -echo "" - -echo "All top-level fields in Content file:" -jq 'keys | sort' /tmp/content_file.json -echo "" - -echo "Checking if field sets are identical..." -DISC_FIELDS=$(jq -r 'keys | sort | join(",")' /tmp/discovery_file.json) -CONT_FIELDS=$(jq -r 'keys | sort | join(",")' /tmp/content_file.json) - -if [ "$DISC_FIELDS" == "$CONT_FIELDS" ]; then - echo "Both phases have IDENTICAL field sets" -else - echo "Different fields between phases!" - echo "" - echo "Fields only in Discovery:" - comm -23 <(jq -r 'keys[]' /tmp/discovery_file.json | sort) <(jq -r 'keys[]' /tmp/content_file.json | sort) - echo "" - echo "Fields only in Content:" - comm -13 <(jq -r 'keys[]' /tmp/discovery_file.json | sort) <(jq -r 'keys[]' /tmp/content_file.json | sort) -fi - -echo "" -echo "==============================================" -echo "CONTENT_IDENTITY DEEP COMPARISON" -echo "==============================================" -echo "" - -echo "Discovery content_identity fields:" -jq '.content_identity | if . != null then keys | sort else "null" end' /tmp/discovery_file.json -echo "" - -echo "Content content_identity fields:" -jq '.content_identity | if . != null then keys | sort else "null" end' /tmp/content_file.json -echo "" - -echo "Are content_identity structures identical?" -DISC_CI_FIELDS=$(jq -r '.content_identity | if . != null then (keys | sort | join(",")) else "null" end' /tmp/discovery_file.json) -CONT_CI_FIELDS=$(jq -r '.content_identity | if . != null then (keys | sort | join(",")) else "null" end' /tmp/content_file.json) - -if [ "$DISC_CI_FIELDS" == "$CONT_CI_FIELDS" ]; then - echo "YES - identical structure" -else - echo "NO - different structure" - echo "Discovery: $DISC_CI_FIELDS" - echo "Content: $CONT_CI_FIELDS" -fi - -echo "" -echo "==============================================" -echo "SAMPLE: Complete File Structure Comparison" -echo "==============================================" -echo "" - -# Show side-by-side comparison of a complete file structure -echo "Discovery file saved to: /tmp/discovery_file.json" -echo "Content file saved to: /tmp/content_file.json" -echo "" -echo "Use: diff /tmp/discovery_file.json /tmp/content_file.json" -echo "Or: code --diff /tmp/discovery_file.json /tmp/content_file.json" - diff --git a/test_snapshots/comparison.sh b/test_snapshots/comparison.sh deleted file mode 100755 index a13875c93..000000000 --- a/test_snapshots/comparison.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash - -echo "Checking if Event IDs match Database entry_uuids..." -echo "" - -# Get a few event IDs -EVENT_IDS=$(jq -r '.[0][0:3] | .[] | .id' events_Content.json) - -# Get DB UUIDs -DB_UUIDS=$(jq -r '.[] | .entry_uuid' db_entries_sample.json) - -echo "Event IDs (first 3):" -echo "$EVENT_IDS" | head -3 -echo "" - -echo "DB entry_uuids (first 5):" -echo "$DB_UUIDS" -echo "" - -# Check for any matches -echo "Checking for matches..." -for event_id in $EVENT_IDS; do - if echo "$DB_UUIDS" | grep -q "$event_id"; then - echo "MATCH FOUND: $event_id" - fi -done - -echo "" -echo "If no matches shown above, IDs don't match between events and DB" diff --git a/test_snapshots/db_entries_all.json b/test_snapshots/db_entries_all.json deleted file mode 100644 index d56b1b337..000000000 --- a/test_snapshots/db_entries_all.json +++ /dev/null @@ -1,1647 +0,0 @@ -[ - { - "content_id_fk": 1, - "entry_id": 8, - "entry_uuid": "af38eed9-9320-4ec1-ba81-f58418e4bf62", - "extension": "mov", - "name": "Screen Recording 2025-11-10 at 2.42.22 AM" - }, - { - "content_id_fk": 2, - "entry_id": 9, - "entry_uuid": "b4b16fb6-189a-4183-991a-235ffc3e5c5a", - "extension": "png", - "name": "Screenshot 2025-11-10 at 2.30.23 AM" - }, - { - "content_id_fk": 3, - "entry_id": 10, - "entry_uuid": "bb440908-48d6-4f28-a55f-6bb128afe1e2", - "extension": "png", - "name": "Screenshot 2025-11-10 at 7.21.30 PM" - }, - { - "content_id_fk": 4, - "entry_id": 11, - "entry_uuid": "46fada6c-efca-4a42-b251-f04c36a1e5a4", - "extension": "png", - "name": "Screenshot 2025-11-10 at 7.21.51 PM" - }, - { - "content_id_fk": 5, - "entry_id": 12, - "entry_uuid": "f21715c5-3216-44ed-bceb-fafc002c7ce9", - "extension": "png", - "name": "Screenshot 2025-11-10 at 2.31.03 AM" - }, - { - "content_id_fk": 6, - "entry_id": 13, - "entry_uuid": "423f40e8-d41d-4bef-a2d8-17816b021112", - "extension": null, - "name": ".localized" - }, - { - "content_id_fk": 7, - "entry_id": 14, - "entry_uuid": "76a12572-8a16-4ba5-9ceb-167f01b95bcb", - "extension": "mov", - "name": "Screen Recording 2025-11-10 at 2.43.14 AM" - }, - { - "content_id_fk": 8, - "entry_id": 15, - "entry_uuid": "e3f6a0e9-144e-4267-b053-93128bc74d9e", - "extension": "mov", - "name": "Screen Recording 2025-11-10 at 8.53.45 PM" - }, - { - "content_id_fk": 9, - "entry_id": 16, - "entry_uuid": "ca566188-473d-442a-a2c9-72503954483a", - "extension": "mov", - "name": "Screen Recording 2025-11-09 at 7.18.50 PM" - }, - { - "content_id_fk": 10, - "entry_id": 17, - "entry_uuid": "2bb80f8e-b1c9-45b1-8d3c-e15bec0e674f", - "extension": "png", - "name": "Screenshot 2025-11-09 at 5.36.52 PM (2)" - }, - { - "content_id_fk": 11, - "entry_id": 18, - "entry_uuid": "e5e09d75-ed57-48d8-a9b4-259132de32c3", - "extension": "png", - "name": "Screenshot 2025-11-10 at 4.56.29 AM" - }, - { - "content_id_fk": 12, - "entry_id": 19, - "entry_uuid": "df2f7d77-f239-4d59-abaa-035e754a1933", - "extension": "png", - "name": "Screenshot 2025-11-10 at 2.35.01 AM" - }, - { - "content_id_fk": 13, - "entry_id": 20, - "entry_uuid": "06767d35-8e7e-4121-9e80-afdd82e45f3f", - "extension": "png", - "name": "Screenshot 2025-11-10 at 2.29.51 AM" - }, - { - "content_id_fk": 14, - "entry_id": 21, - "entry_uuid": "21de9648-8d82-40e0-8a17-9f4d47ea575f", - "extension": "png", - "name": "Screenshot 2025-11-09 at 5.36.52 PM" - }, - { - "content_id_fk": 15, - "entry_id": 22, - "entry_uuid": "0f40effc-5995-4037-a709-3f0166858bbf", - "extension": "png", - "name": "Screenshot 2025-11-10 at 2.30.43 AM" - }, - { - "content_id_fk": 16, - "entry_id": 23, - "entry_uuid": "3595cf70-f752-425e-a492-5e9f4f2de2f0", - "extension": "png", - "name": "Screenshot 2025-11-10 at 2.53.59 AM" - }, - { - "content_id_fk": 17, - "entry_id": 24, - "entry_uuid": "992e1dcb-a556-4540-a885-ae6028f7e75e", - "extension": "png", - "name": "Screenshot 2025-11-10 at 2.30.02 AM" - }, - { - "content_id_fk": 18, - "entry_id": 29, - "entry_uuid": "d8d4efaa-8c5e-4ef7-88f1-f27bd5cd6c25", - "extension": "pdf", - "name": "cra_letter" - }, - { - "content_id_fk": 19, - "entry_id": 30, - "entry_uuid": "567710f6-c73e-4efa-80a2-199ca1dac9e6", - "extension": "pdf", - "name": "trp_letter" - }, - { - "content_id_fk": 20, - "entry_id": 31, - "entry_uuid": "d1a9f4ad-1ec4-4d95-a384-102fb456cae2", - "extension": "pdf", - "name": "package_index" - }, - { - "content_id_fk": 21, - "entry_id": 32, - "entry_uuid": "3905d3b1-9d14-4846-b581-e0cfd46618b1", - "extension": "png", - "name": "Screenshot 2025-10-09 at 7.48.04 PM" - }, - { - "content_id_fk": 22, - "entry_id": 33, - "entry_uuid": "a2b43f2d-6808-4fec-8b64-1b75028fd9cd", - "extension": "mov", - "name": "Screen Recording 2025-10-14 at 1.56.09 AM" - }, - { - "content_id_fk": 23, - "entry_id": 34, - "entry_uuid": "a2f46f54-baa2-4e3f-b76a-899ab0a4e4ac", - "extension": "png", - "name": "Screenshot 2025-10-11 at 10.32.23 AM" - }, - { - "content_id_fk": 24, - "entry_id": 35, - "entry_uuid": "4335c2bc-58f2-4237-ac55-29139f4089b0", - "extension": "png", - "name": "Screenshot 2025-10-04 at 5.38.57 PM" - }, - { - "content_id_fk": 25, - "entry_id": 36, - "entry_uuid": "9544903f-8874-4ab6-8b90-6b97e3553319", - "extension": "png", - "name": "Screenshot 2025-11-06 at 6.39.39 PM" - }, - { - "content_id_fk": 26, - "entry_id": 37, - "entry_uuid": "a41b38e7-b840-4429-8f98-e2f434a0e01b", - "extension": "md", - "name": "MILESTONE_52_PERCENT" - }, - { - "content_id_fk": 27, - "entry_id": 38, - "entry_uuid": "62e674aa-0ac2-4bd8-a6a7-0acfc0a8b363", - "extension": "png", - "name": "Screenshot 2025-09-29 at 4.36.39 PM" - }, - { - "content_id_fk": 28, - "entry_id": 39, - "entry_uuid": "72ba967e-2cd8-4b10-9bca-0a9ac55fc8fd", - "extension": "png", - "name": "Screenshot 2025-10-26 at 5.42.45 AM" - }, - { - "content_id_fk": 29, - "entry_id": 40, - "entry_uuid": "cce70736-4783-4d3d-9525-1ce7e61f8495", - "extension": "jpeg", - "name": "IMG_0347" - }, - { - "content_id_fk": 30, - "entry_id": 41, - "entry_uuid": "5583b865-bddf-4270-94c2-3a42babf30a7", - "extension": "mov", - "name": "spacedrive-gource" - }, - { - "content_id_fk": 31, - "entry_id": 42, - "entry_uuid": "bc6702f9-1a2d-4796-acbd-deb71587dec2", - "extension": "webp", - "name": "020618michaelblutrichbz11.jpg" - }, - { - "content_id_fk": 32, - "entry_id": 43, - "entry_uuid": "4eb78c8a-f8d3-4bca-a238-88ef7f74c94f", - "extension": "png", - "name": "Screenshot 2025-10-04 at 1.54.05 AM" - }, - { - "content_id_fk": 33, - "entry_id": 44, - "entry_uuid": "7576543b-b788-4159-a11a-216f6508108c", - "extension": "mov", - "name": "Screen Recording 2025-10-14 at 2.48.14 AM" - }, - { - "content_id_fk": 34, - "entry_id": 45, - "entry_uuid": "b60635ca-0bf6-4662-a081-2ebe6dbb3846", - "extension": "png", - "name": "Screenshot 2025-11-01 at 6.56.27 PM" - }, - { - "content_id_fk": 35, - "entry_id": 46, - "entry_uuid": "4d988f65-782d-49b6-bd50-ef5172559d24", - "extension": "md", - "name": "PROGRESS_UPDATE" - }, - { - "content_id_fk": 36, - "entry_id": 47, - "entry_uuid": "48aa8eb4-72be-4723-b873-956029169567", - "extension": "png", - "name": "Screenshot 2025-11-07 at 7.19.05 PM" - }, - { - "content_id_fk": 37, - "entry_id": 48, - "entry_uuid": "8818bd51-7136-4b4b-ba5f-34fe07bfcb65", - "extension": "pdf", - "name": "OFRELEASEFORM2" - }, - { - "content_id_fk": 38, - "entry_id": 49, - "entry_uuid": "27fe80d5-37fc-413e-875d-467263b3df38", - "extension": "png", - "name": "Screenshot 2025-10-13 at 8.57.46 PM" - }, - { - "content_id_fk": 39, - "entry_id": 50, - "entry_uuid": "41f37a7e-20f1-4bc1-910d-96f6900c8726", - "extension": "png", - "name": "Screenshot 2025-11-01 at 6.19.37 PM" - }, - { - "content_id_fk": 40, - "entry_id": 51, - "entry_uuid": "22353a9b-213b-4303-96dc-6139441936f8", - "extension": "png", - "name": "Screenshot 2025-10-08 at 4.47.21 AM (2)" - }, - { - "content_id_fk": 41, - "entry_id": 52, - "entry_uuid": "3ae4d5a4-4f98-4f3a-b6cf-253109113fca", - "extension": "png", - "name": "Screenshot 2025-10-07 at 9.44.24 PM" - }, - { - "content_id_fk": 42, - "entry_id": 53, - "entry_uuid": "46629898-6287-48c7-b36e-492ee48d0b55", - "extension": "png", - "name": "Screenshot 2025-10-23 at 3.13.52 PM" - }, - { - "content_id_fk": 43, - "entry_id": 54, - "entry_uuid": "ef99c1f7-4556-48b2-94b0-47c20abad3be", - "extension": "png", - "name": "Screenshot 2025-10-25 at 6.35.02 PM" - }, - { - "content_id_fk": 44, - "entry_id": 55, - "entry_uuid": "45806301-9b87-48fb-ba03-7c6fa134d848", - "extension": "png", - "name": "Screenshot 2025-11-08 at 6.59.33 PM" - }, - { - "content_id_fk": 45, - "entry_id": 56, - "entry_uuid": "b3db1edf-d32b-4032-afd0-a46e3867bf6f", - "extension": "png", - "name": "Screenshot 2025-10-01 at 6.34.37 PM" - }, - { - "content_id_fk": 46, - "entry_id": 57, - "entry_uuid": "0571c5c6-cbef-4161-930e-3833c464b56a", - "extension": "png", - "name": "Screenshot 2025-10-08 at 6.45.23 AM" - }, - { - "content_id_fk": 47, - "entry_id": 58, - "entry_uuid": "8e4a0019-a614-4b41-9fcb-48c2e11860da", - "extension": "png", - "name": "Screenshot 2025-10-10 at 8.08.22 PM" - }, - { - "content_id_fk": 48, - "entry_id": 59, - "entry_uuid": "62e1f286-8bd6-41d2-b6ac-5dbd5602741f", - "extension": "png", - "name": "Screenshot 2025-11-05 at 7.00.54 PM" - }, - { - "content_id_fk": 49, - "entry_id": 60, - "entry_uuid": "dbb6cea7-020f-4376-b4f5-31cabec50ce7", - "extension": "md", - "name": "OPTIONAL_FIELDS_FIX_SUMMARY" - }, - { - "content_id_fk": 50, - "entry_id": 61, - "entry_uuid": "b96de871-d49d-4f97-920a-781bd14befc9", - "extension": "md", - "name": "REFACTOR_SUMMARY" - }, - { - "content_id_fk": 51, - "entry_id": 62, - "entry_uuid": "5661c9ff-f060-461f-85d9-e64c7ccbc500", - "extension": "png", - "name": "Screenshot 2025-10-23 at 6.10.17 PM" - }, - { - "content_id_fk": 52, - "entry_id": 63, - "entry_uuid": "8600f15c-285b-48bb-bfc2-88e225762104", - "extension": "md", - "name": "EXTRACTION_STATUS" - }, - { - "content_id_fk": 53, - "entry_id": 64, - "entry_uuid": "f730dc93-5167-4d38-b7f3-b772cd292833", - "extension": "md", - "name": "REFACTOR_COMPLETE" - }, - { - "content_id_fk": 54, - "entry_id": 65, - "entry_uuid": "c6a63863-2240-4672-92e5-5d0e5645bf30", - "extension": "png", - "name": "Screenshot 2025-10-25 at 5.38.50 PM" - }, - { - "content_id_fk": 55, - "entry_id": 66, - "entry_uuid": "782a1b18-88bc-4241-9e58-31daa36c3d22", - "extension": "png", - "name": "Screenshot 2025-10-27 at 3.11.08 PM" - }, - { - "content_id_fk": 56, - "entry_id": 67, - "entry_uuid": "872b3d47-429d-46af-ae68-121bf983bc7c", - "extension": "png", - "name": "Screenshot 2025-10-23 at 6.10.21 PM" - }, - { - "content_id_fk": 57, - "entry_id": 68, - "entry_uuid": "e1a9cc9b-46ab-49c0-ac72-5a9d0f40890d", - "extension": "png", - "name": "Screenshot 2025-10-11 at 1.19.39 AM" - }, - { - "content_id_fk": 58, - "entry_id": 69, - "entry_uuid": "441c3ba4-bdb5-472d-8d85-9a586924d90f", - "extension": "png", - "name": "Screenshot 2025-10-12 at 10.16.40 PM (2)" - }, - { - "content_id_fk": 59, - "entry_id": 70, - "entry_uuid": "18f33613-33a7-4c04-9c1b-66deddf74606", - "extension": "png", - "name": "Screenshot 2025-10-23 at 4.24.53 PM" - }, - { - "content_id_fk": 60, - "entry_id": 71, - "entry_uuid": "ebd57270-6866-45a0-8bd9-7e4189fb7c90", - "extension": "webp", - "name": "1488505642709-michael-blutrich-1.jpeg" - }, - { - "content_id_fk": 61, - "entry_id": 72, - "entry_uuid": "9fa5a4ef-76bf-4c2a-bdab-f0180d3b3662", - "extension": "jpeg", - "name": "IMG_5114" - }, - { - "content_id_fk": 62, - "entry_id": 73, - "entry_uuid": "50f02d20-472b-4422-936c-2be30262a82a", - "extension": "png", - "name": "Screenshot 2025-10-29 at 11.42.31 PM (2)" - }, - { - "content_id_fk": 63, - "entry_id": 74, - "entry_uuid": "1242e1f8-c52e-4336-bef7-375cb5228aff", - "extension": "png", - "name": "Screenshot 2025-10-03 at 10.21.35 PM" - }, - { - "content_id_fk": 64, - "entry_id": 75, - "entry_uuid": "6c629a98-5d15-43d3-a090-c6366461a672", - "extension": "jpeg", - "name": "IMG_1946" - }, - { - "content_id_fk": 65, - "entry_id": 76, - "entry_uuid": "78220b49-d458-498d-9ea4-a643cba29f7c", - "extension": "png", - "name": "JakePassingAnnouncement" - }, - { - "content_id_fk": 66, - "entry_id": 77, - "entry_uuid": "d99fa37f-6ae5-4765-bcc0-bebae2ad16ff", - "extension": "png", - "name": "FEEBE2D5-B13D-4FD8-B8E7-3C23CC028809" - }, - { - "content_id_fk": 67, - "entry_id": 78, - "entry_uuid": "27d76cea-ec37-4236-91e0-276a7f054cfd", - "extension": "mov", - "name": "Spacedrive v2 development gource 720p" - }, - { - "content_id_fk": 68, - "entry_id": 79, - "entry_uuid": "41ad880d-2462-4eab-b4b3-103852508db1", - "extension": "png", - "name": "Screenshot 2025-10-31 at 5.34.12 PM" - }, - { - "content_id_fk": 69, - "entry_id": 80, - "entry_uuid": "32203ce5-55fc-46b6-a1bf-7ad1a078eea4", - "extension": "png", - "name": "Screenshot 2025-10-12 at 10.16.40 PM" - }, - { - "content_id_fk": 70, - "entry_id": 81, - "entry_uuid": "4fc51ad2-4305-412b-9898-37c571f00029", - "extension": "png", - "name": "Screenshot 2025-10-26 at 6.31.12 AM" - }, - { - "content_id_fk": 71, - "entry_id": 82, - "entry_uuid": "6205d7fa-3522-4a73-a627-d9e560f9cada", - "extension": "png", - "name": "Screenshot 2025-10-02 at 4.21.10 PM" - }, - { - "content_id_fk": 72, - "entry_id": 83, - "entry_uuid": "ebac1149-2071-4ebf-ad2d-a963177496ff", - "extension": "png", - "name": "Screenshot 2025-11-07 at 6.08.16 PM" - }, - { - "content_id_fk": 73, - "entry_id": 84, - "entry_uuid": "b86964ea-37a6-4704-92a1-b550e3f876b4", - "extension": "png", - "name": "Screenshot 2025-10-25 at 11.00.09 PM" - }, - { - "content_id_fk": 74, - "entry_id": 85, - "entry_uuid": "83e8b450-1133-46e6-a140-93deb244fd99", - "extension": "jpeg", - "name": "IMG_5067" - }, - { - "content_id_fk": 75, - "entry_id": 86, - "entry_uuid": "0f762aa3-ba72-4eda-a4f5-c199e12f1265", - "extension": "png", - "name": "Screenshot 2025-11-04 at 10.20.17 PM" - }, - { - "content_id_fk": 76, - "entry_id": 87, - "entry_uuid": "22fdb960-daad-42cd-ab35-b3a2d599b8e4", - "extension": "md", - "name": "OPTIONAL_FIELDS_ISSUE" - }, - { - "content_id_fk": 77, - "entry_id": 88, - "entry_uuid": "970c4bba-249c-4b63-a141-a6f0d0609b8c", - "extension": "md", - "name": "OPTIONAL_FIELDS_COMPLETE_FIX" - }, - { - "content_id_fk": 78, - "entry_id": 89, - "entry_uuid": "db01a86f-fe70-4b93-87c0-00719d7f82ae", - "extension": "png", - "name": "Screenshot 2025-10-13 at 12.08.57 AM" - }, - { - "content_id_fk": 79, - "entry_id": 90, - "entry_uuid": "830d1cf7-fdc0-4de8-b51a-c30ea04805b0", - "extension": "png", - "name": "Screenshot 2025-11-07 at 1.27.57 AM" - }, - { - "content_id_fk": 80, - "entry_id": 91, - "entry_uuid": "a761a715-a7e8-4012-8375-d27ecf19cd9c", - "extension": "png", - "name": "Screenshot 2025-10-29 at 11.28.25 PM" - }, - { - "content_id_fk": 81, - "entry_id": 92, - "entry_uuid": "d738fc43-2226-4b4a-b72f-4b75be8f4216", - "extension": "png", - "name": "Screenshot 2025-10-12 at 9.18.32 PM 1(2)" - }, - { - "content_id_fk": 82, - "entry_id": 93, - "entry_uuid": "e6abb3c8-0f9f-41d3-944c-78c5bacf19dc", - "extension": "pdf", - "name": "passport" - }, - { - "content_id_fk": 83, - "entry_id": 94, - "entry_uuid": "ee8ea94e-9d8f-4b15-b3eb-f232f1d196df", - "extension": "jpg", - "name": "DSC07594" - }, - { - "content_id_fk": 84, - "entry_id": 95, - "entry_uuid": "e5b6c074-db49-4800-bdea-5f42542c6c7f", - "extension": "pdf", - "name": "OFRELEASEFORM" - }, - { - "content_id_fk": 85, - "entry_id": 96, - "entry_uuid": "cbba54f2-4d6d-41e7-8909-2f09adadc93b", - "extension": "png", - "name": "Grok_Roleplay" - }, - { - "content_id_fk": 86, - "entry_id": 97, - "entry_uuid": "18f430fb-68fc-4be4-a741-bc80224f99d0", - "extension": "png", - "name": "Screenshot 2025-10-03 at 9.58.01 PM" - }, - { - "content_id_fk": 87, - "entry_id": 98, - "entry_uuid": "fa9d09d3-ba36-4337-aac1-2b01bba973dc", - "extension": "mov", - "name": "Screen Recording 2025-10-12 at 11.56.56 PM" - }, - { - "content_id_fk": 88, - "entry_id": 99, - "entry_uuid": "282db159-0407-4c0c-acb3-551cd05ab9be", - "extension": "png", - "name": "Screenshot 2025-10-12 at 8.06.37 PM" - }, - { - "content_id_fk": 89, - "entry_id": 100, - "entry_uuid": "15f20306-3a94-4192-9864-d7ae6b2abc94", - "extension": "png", - "name": "Screenshot 2025-10-08 at 4.47.21 AM" - }, - { - "content_id_fk": 90, - "entry_id": 101, - "entry_uuid": "bf295bd1-eeec-421e-b38c-9e202d0fbad7", - "extension": "png", - "name": "Screenshot 2025-11-01 at 5.20.22 PM" - }, - { - "content_id_fk": 91, - "entry_id": 102, - "entry_uuid": "6602ba37-1891-40be-8172-5fcf4f7b9903", - "extension": "png", - "name": "Screenshot 2025-11-06 at 5.41.36 AM" - }, - { - "content_id_fk": 92, - "entry_id": 103, - "entry_uuid": "88797290-df4c-4d57-85ab-f2d9550a32d3", - "extension": "png", - "name": "Screenshot 2025-10-25 at 8.01.25 PM" - }, - { - "content_id_fk": 93, - "entry_id": 104, - "entry_uuid": "eb808f42-78ff-47ee-819e-9770af19cbac", - "extension": "png", - "name": "Screenshot 2025-10-27 at 3.10.04 PM" - }, - { - "content_id_fk": 94, - "entry_id": 105, - "entry_uuid": "1ff5c04a-ae19-449f-a37e-05113245bed5", - "extension": "png", - "name": "Screenshot 2025-10-14 at 8.31.50 AM" - }, - { - "content_id_fk": 95, - "entry_id": 106, - "entry_uuid": "ce62f4df-74f6-48be-b53b-c8c9d1823dc4", - "extension": "png", - "name": "Screenshot 2025-10-11 at 4.06.34 AM" - }, - { - "content_id_fk": 96, - "entry_id": 107, - "entry_uuid": "5f8164e0-fd22-445f-8a7d-98e81e808d2f", - "extension": "jpeg", - "name": "IMG_0439" - }, - { - "content_id_fk": 97, - "entry_id": 108, - "entry_uuid": "99a829ff-db89-4c52-8f43-8c8fe36040da", - "extension": "md", - "name": "REFACTOR_FINAL_STATUS" - }, - { - "content_id_fk": 98, - "entry_id": 109, - "entry_uuid": "b1cfffd8-ff08-4f2d-a173-65a803047a1a", - "extension": "md", - "name": "REFACTOR_SESSION_1" - }, - { - "content_id_fk": 99, - "entry_id": 110, - "entry_uuid": "daf0ed36-6601-42f0-9067-8ece6f4ea1fe", - "extension": "png", - "name": "Screenshot 2025-11-07 at 5.50.49 AM" - }, - { - "content_id_fk": 100, - "entry_id": 111, - "entry_uuid": "dac4b926-987b-4c4c-ba53-2231527f57e9", - "extension": "png", - "name": "Screenshot 2025-10-13 at 3.13.19 AM" - }, - { - "content_id_fk": 101, - "entry_id": 112, - "entry_uuid": "f391f25d-5153-4134-bf91-c07223e51a29", - "extension": "png", - "name": "Screenshot 2025-10-31 at 5.51.17 PM" - }, - { - "content_id_fk": 81, - "entry_id": 113, - "entry_uuid": "8826e0f9-502b-45cc-9b08-7b5a9816d485", - "extension": "png", - "name": "Screenshot 2025-10-12 at 9.18.32 PM (2)" - }, - { - "content_id_fk": 102, - "entry_id": 114, - "entry_uuid": "72f93b48-7d4d-439a-b509-20d7dcb8d9fe", - "extension": "png", - "name": "Screenshot 2025-11-06 at 11.54.36 PM" - }, - { - "content_id_fk": 103, - "entry_id": 115, - "entry_uuid": "c937a25b-4c9b-4d9d-840e-a42cea3890f8", - "extension": "png", - "name": "Screenshot 2025-10-12 at 8.06.43 PM" - }, - { - "content_id_fk": 104, - "entry_id": 116, - "entry_uuid": "84fe0aac-00ac-466b-ad8e-04df9fb66216", - "extension": "png", - "name": "Screenshot 2025-10-04 at 3.52.57 PM" - }, - { - "content_id_fk": 105, - "entry_id": 117, - "entry_uuid": "ec6ee744-0509-4b77-941c-6fd5e859e1f4", - "extension": "mov", - "name": "Cloud support working" - }, - { - "content_id_fk": 106, - "entry_id": 118, - "entry_uuid": "06429e71-7207-4800-8674-5767ea2302cd", - "extension": "jpeg", - "name": "IMG_0343" - }, - { - "content_id_fk": 107, - "entry_id": 119, - "entry_uuid": "63d73a00-ee44-45bf-85bf-ce1de62667da", - "extension": "png", - "name": "Screenshot 2025-11-03 at 5.28.00 PM" - }, - { - "content_id_fk": 108, - "entry_id": 120, - "entry_uuid": "cf3036b8-3feb-41c9-970d-84bddc7c9fa3", - "extension": "png", - "name": "Screenshot 2025-10-12 at 9.18.32 PM 1" - }, - { - "content_id_fk": 109, - "entry_id": 121, - "entry_uuid": "b0e70141-383d-43d9-a3a8-5b762ecdc942", - "extension": "png", - "name": "Screenshot 2025-10-27 at 12.12.29 AM" - }, - { - "content_id_fk": 110, - "entry_id": 122, - "entry_uuid": "20f809fc-8e2e-43fd-b396-f41cc9cf820e", - "extension": "png", - "name": "Screenshot 2025-10-07 at 9.44.24 PM (2)" - }, - { - "content_id_fk": 111, - "entry_id": 123, - "entry_uuid": "b516db6f-0769-4925-9315-49844faef5ed", - "extension": "png", - "name": "Screenshot 2025-11-07 at 1.28.04 AM" - }, - { - "content_id_fk": 112, - "entry_id": 124, - "entry_uuid": "a32257df-c763-46a2-9a47-7c420cd080ca", - "extension": "png", - "name": "Screenshot 2025-10-13 at 3.12.46 AM" - }, - { - "content_id_fk": 113, - "entry_id": 125, - "entry_uuid": "de86a3a6-2eda-4c51-b890-17abd92cac9a", - "extension": "png", - "name": "Screenshot 2025-10-29 at 11.42.31 PM" - }, - { - "content_id_fk": 114, - "entry_id": 126, - "entry_uuid": "a187280e-1ece-471c-b98e-ab254f9e8646", - "extension": "png", - "name": "Screenshot 2025-10-29 at 11.28.16 PM" - }, - { - "content_id_fk": 115, - "entry_id": 127, - "entry_uuid": "a83c853c-c1fd-43d4-bc20-9b5305feb605", - "extension": "png", - "name": "Screenshot 2025-10-29 at 11.28.04 PM" - }, - { - "content_id_fk": 116, - "entry_id": 128, - "entry_uuid": "d5ec2119-00fe-4be3-a3c2-dfd4830ae0ca", - "extension": "png", - "name": "Screenshot 2025-10-25 at 9.49.24 PM" - }, - { - "content_id_fk": 117, - "entry_id": 129, - "entry_uuid": "b0d71add-544c-4de8-85d0-b62775b8cdee", - "extension": "pdf", - "name": "imm5557e" - }, - { - "content_id_fk": 118, - "entry_id": 130, - "entry_uuid": "90c35dd8-7c5d-43ca-92de-b6b948185089", - "extension": "png", - "name": "Screenshot 2025-10-12 at 6.55.36 PM" - }, - { - "content_id_fk": 119, - "entry_id": 131, - "entry_uuid": "237c5609-a3d8-4912-82c2-342fdc5f88f8", - "extension": "mov", - "name": "Screen Recording 2025-10-11 at 9.29.03 PM" - }, - { - "content_id_fk": 120, - "entry_id": 132, - "entry_uuid": "f0069d43-3d1f-4152-989d-3e00d4c2206a", - "extension": "mov", - "name": "spacedrive-gource-insta" - }, - { - "content_id_fk": 121, - "entry_id": 133, - "entry_uuid": "51e12579-e0b3-4b5d-aee6-f9d84c504266", - "extension": "png", - "name": "Screenshot 2025-10-23 at 6.10.08 PM" - }, - { - "content_id_fk": 122, - "entry_id": 134, - "entry_uuid": "20628c1b-9c75-4694-90e4-84036080f47c", - "extension": "png", - "name": "Screenshot 2025-11-08 at 8.23.14 AM" - }, - { - "content_id_fk": 123, - "entry_id": 135, - "entry_uuid": "775c2017-67d9-4adf-9f21-fb54eea490a7", - "extension": "png", - "name": "Screenshot 2025-11-01 at 8.52.12 PM" - }, - { - "content_id_fk": 124, - "entry_id": 136, - "entry_uuid": "3c999890-7a18-44e5-a646-147d46505fc1", - "extension": "png", - "name": "Screenshot 2025-11-08 at 5.44.54 AM" - }, - { - "content_id_fk": 125, - "entry_id": 137, - "entry_uuid": "6fd9b783-fbff-4d0b-95fc-1db79002ab06", - "extension": "png", - "name": "4369DEA3-E137-408E-8641-42FF42955272" - }, - { - "content_id_fk": 126, - "entry_id": 138, - "entry_uuid": "6463f63d-7dbd-4275-92c2-5cefba4ceae9", - "extension": "png", - "name": "Screenshot 2025-10-13 at 8.49.20 PM" - }, - { - "content_id_fk": 127, - "entry_id": 139, - "entry_uuid": "c1a5b331-51c4-4e2c-80b5-92aa877d5506", - "extension": "png", - "name": "Screenshot 2025-11-06 at 2.46.39 AM" - }, - { - "content_id_fk": 128, - "entry_id": 140, - "entry_uuid": "280f9322-33d6-4629-8b4c-176c8b78c81c", - "extension": "png", - "name": "Screenshot 2025-10-08 at 6.56.57 AM" - }, - { - "content_id_fk": 129, - "entry_id": 141, - "entry_uuid": "523784ef-8854-4888-bc7b-9d59c00f6c03", - "extension": "md", - "name": "SESSION_SUMMARY" - }, - { - "content_id_fk": 130, - "entry_id": 142, - "entry_uuid": "c09d4373-2c18-4be2-84f7-c0e73ad34e78", - "extension": "png", - "name": "Screenshot 2025-11-06 at 8.10.53 PM" - }, - { - "content_id_fk": 131, - "entry_id": 143, - "entry_uuid": "3faa6956-8df5-48a3-a670-d08f548cb0d1", - "extension": "png", - "name": "Screenshot 2025-11-05 at 5.11.24 PM" - }, - { - "content_id_fk": 132, - "entry_id": 144, - "entry_uuid": "bb9ced39-f477-4e9e-982a-347d675060f6", - "extension": "jpg", - "name": "IMG_7106" - }, - { - "content_id_fk": 133, - "entry_id": 145, - "entry_uuid": "931bf1d8-557c-4503-83fc-59ff84a1c61e", - "extension": "jpg", - "name": "IMG_4142" - }, - { - "content_id_fk": 134, - "entry_id": 146, - "entry_uuid": "5d054b29-790a-463f-944f-b6f39c1f5d32", - "extension": "png", - "name": "Screenshot 2025-10-09 at 7.56.11 PM" - }, - { - "content_id_fk": 135, - "entry_id": 147, - "entry_uuid": "fc17a99d-56bc-4435-9c7e-1be139d9cf09", - "extension": "png", - "name": "Screenshot 2025-11-04 at 5.13.49 AM" - }, - { - "content_id_fk": 136, - "entry_id": 148, - "entry_uuid": "c9d25ef9-2951-4c38-86e6-09d712db2aad", - "extension": "mov", - "name": "Screen Recording 2025-10-12 at 11.55.35 PM" - }, - { - "content_id_fk": 137, - "entry_id": 149, - "entry_uuid": "10dbbe67-a7ed-46bd-a53e-fe13fe30f8c2", - "extension": "png", - "name": "Screenshot 2025-11-01 at 6.19.47 PM" - }, - { - "content_id_fk": 138, - "entry_id": 150, - "entry_uuid": "bde30bac-8af3-4852-8d7d-e5a8ed1a08de", - "extension": "png", - "name": "Screenshot 2025-11-01 at 6.43.38 PM" - }, - { - "content_id_fk": 139, - "entry_id": 151, - "entry_uuid": "730349c4-8bf5-43d8-856e-6151c239f5c6", - "extension": "md", - "name": "OPTIONAL_FIELDS_FIX_VERIFIED" - }, - { - "content_id_fk": 140, - "entry_id": 152, - "entry_uuid": "984b131d-b25c-4290-ba9f-91fcc339336c", - "extension": "png", - "name": "Screenshot 2025-10-11 at 10.32.12 AM" - }, - { - "content_id_fk": 141, - "entry_id": 153, - "entry_uuid": "b6a18f79-1c99-432d-9ebd-751d912d7191", - "extension": "md", - "name": "REFACTOR_COMPLETE_SUMMARY" - }, - { - "content_id_fk": 142, - "entry_id": 154, - "entry_uuid": "34335cb3-2cf6-4259-a07b-fa5b3369b886", - "extension": "png", - "name": "Screenshot 2025-10-26 at 9.49.55 PM" - }, - { - "content_id_fk": 143, - "entry_id": 155, - "entry_uuid": "b530f263-1f1f-4f65-bb77-d6a66233a74d", - "extension": "mov", - "name": "Spacedrive v2 Development Gource" - }, - { - "content_id_fk": 144, - "entry_id": 156, - "entry_uuid": "6eb694dd-d43c-411a-b7d5-aec6209d3161", - "extension": "mov", - "name": "Screen Recording 2025-09-29 at 3.16.06 PM" - }, - { - "content_id_fk": 145, - "entry_id": 157, - "entry_uuid": "e5614d13-3529-47de-bedf-457c58f095b0", - "extension": "png", - "name": "Screenshot 2025-11-07 at 7.04.29 PM" - }, - { - "content_id_fk": 146, - "entry_id": 158, - "entry_uuid": "d50f76f2-4d9a-422d-80ef-9ef243fbdbb5", - "extension": "jpg", - "name": "photo-2" - }, - { - "content_id_fk": 147, - "entry_id": 159, - "entry_uuid": "0c55bae8-3e92-4684-b7eb-c4e1bfd66364", - "extension": "png", - "name": "Screenshot 2025-10-11 at 7.26.59 AM" - }, - { - "content_id_fk": 148, - "entry_id": 160, - "entry_uuid": "adf34739-2ebe-44c3-9ad7-40833c6a2bd7", - "extension": "webp", - "name": "notify-subscribe.png" - }, - { - "content_id_fk": 149, - "entry_id": 161, - "entry_uuid": "397b6119-7322-41ba-8ede-889c721eb66f", - "extension": "png", - "name": "Screenshot 2025-10-12 at 9.18.32 PM" - }, - { - "content_id_fk": 150, - "entry_id": 162, - "entry_uuid": "02bd2975-e7f0-4886-b38d-a989be977d7e", - "extension": "png", - "name": "3AE4AB29-5EC8-4DF9-80F8-F72AE5C38FBF" - }, - { - "content_id_fk": 151, - "entry_id": 163, - "entry_uuid": "895d9fc6-b773-4931-b7a5-9d381ab073da", - "extension": "mov", - "name": "Screen Recording 2025-10-14 at 1.58.05 AM" - }, - { - "content_id_fk": 152, - "entry_id": 164, - "entry_uuid": "1682e3a0-3eac-4a58-8171-3cbdd334fc34", - "extension": "png", - "name": "Screenshot 2025-10-11 at 6.00.30 AM" - }, - { - "content_id_fk": 153, - "entry_id": 165, - "entry_uuid": "498362dc-0ef6-4d9c-874d-f5e7f84c4eea", - "extension": "png", - "name": "Screenshot 2025-11-07 at 1.10.26 AM" - }, - { - "content_id_fk": 154, - "entry_id": 166, - "entry_uuid": "b03a0937-6e53-4a6c-9780-01940a1bef37", - "extension": "md", - "name": "REFACTOR_PLAN" - }, - { - "content_id_fk": 155, - "entry_id": 167, - "entry_uuid": "e133633f-feed-4172-b425-0d1595bd7df0", - "extension": "png", - "name": "Screenshot 2025-10-31 at 5.34.03 PM" - }, - { - "content_id_fk": 156, - "entry_id": 168, - "entry_uuid": "69f37a2f-bb89-4652-928d-236001abe3a3", - "extension": "png", - "name": "Screenshot 2025-10-23 at 3.14.43 PM" - }, - { - "content_id_fk": 157, - "entry_id": 169, - "entry_uuid": "efaa57d1-0dc3-44d3-90ab-beadcd5e7be3", - "extension": "png", - "name": "Screenshot 2025-11-03 at 6.10.27 PM" - }, - { - "content_id_fk": 158, - "entry_id": 170, - "entry_uuid": "4296c93a-55a1-4f03-aba7-34c5518b7386", - "extension": "png", - "name": "Screenshot 2025-11-04 at 7.16.42 PM" - }, - { - "content_id_fk": 159, - "entry_id": 171, - "entry_uuid": "6ceb9477-50bb-44ba-9573-b0659238bd4b", - "extension": "md", - "name": "TUPLE_VARIANTS_IMPLEMENTED" - }, - { - "content_id_fk": 160, - "entry_id": 172, - "entry_uuid": "e05af25b-08bf-4660-8784-e65f25081d70", - "extension": "png", - "name": "Screenshot 2025-11-05 at 5.11.30 PM" - }, - { - "content_id_fk": 161, - "entry_id": 173, - "entry_uuid": "3f5336de-1124-425a-90bc-fe28509faf3d", - "extension": "jpg", - "name": "CF54235D-6286-4893-8A63-1930295099EB" - }, - { - "content_id_fk": 162, - "entry_id": 174, - "entry_uuid": "30d2d71d-31c5-4d4a-9254-61de2928d674", - "extension": "mov", - "name": "Screen Recording 2025-10-14 at 3.00.33 AM" - }, - { - "content_id_fk": 163, - "entry_id": 175, - "entry_uuid": "e09faf0b-8a54-4802-9115-0af58998897e", - "extension": "png", - "name": "Screenshot 2025-11-03 at 5.28.32 PM" - }, - { - "content_id_fk": 164, - "entry_id": 176, - "entry_uuid": "a8b3ffdc-0f0c-4c6e-8455-bf55a6f0616d", - "extension": "jpeg", - "name": "IMG_0173" - }, - { - "content_id_fk": 165, - "entry_id": 177, - "entry_uuid": "063a90cb-f91a-4a99-95a7-7013ec78dd81", - "extension": "png", - "name": "Screenshot 2025-10-29 at 11.28.00 PM" - }, - { - "content_id_fk": 166, - "entry_id": 178, - "entry_uuid": "96db3465-63bf-48d9-8eec-ffbca55ac77f", - "extension": "db", - "name": "database" - }, - { - "content_id_fk": 167, - "entry_id": 179, - "entry_uuid": "cdc9ddc8-2a90-4f1f-bd7e-3fcaf9baaa38", - "extension": "zip", - "name": "Andrew Willis Files" - }, - { - "content_id_fk": 168, - "entry_id": 180, - "entry_uuid": "5eb45d81-3c2c-4280-822f-7fbbea092597", - "extension": "png", - "name": "Screenshot 2025-10-08 at 6.53.13 AM" - }, - { - "content_id_fk": 169, - "entry_id": 181, - "entry_uuid": "cef60505-a433-4057-820e-b27cb30184e4", - "extension": "png", - "name": "Screenshot 2025-10-09 at 11.00.03 PM" - }, - { - "content_id_fk": 170, - "entry_id": 182, - "entry_uuid": "4e58b569-c3d0-46eb-b2cf-12e95af7e1b4", - "extension": "png", - "name": "image" - }, - { - "content_id_fk": 171, - "entry_id": 183, - "entry_uuid": "7efe26e3-0916-46de-8d9e-1b6e0349ccf3", - "extension": "png", - "name": "Screenshot 2025-10-26 at 10.19.18 PM" - }, - { - "content_id_fk": 172, - "entry_id": 184, - "entry_uuid": "6534b447-ecef-4a21-9a25-7cbf3fb8f57c", - "extension": "png", - "name": "IMG_0347" - }, - { - "content_id_fk": 173, - "entry_id": 185, - "entry_uuid": "4fcd5e25-92c6-49c7-b04d-febaf81e09d5", - "extension": "png", - "name": "Screenshot 2025-09-29 at 7.40.40 PM" - }, - { - "content_id_fk": 174, - "entry_id": 186, - "entry_uuid": "594adb9a-6a5b-46b8-83c6-df3fa730538c", - "extension": "mov", - "name": "Screen Recording 2025-09-29 at 3.23.32 PM" - }, - { - "content_id_fk": 175, - "entry_id": 187, - "entry_uuid": "51a4f35c-5d62-47df-ba0b-1f074446264d", - "extension": "log", - "name": "6a957e54-236d-4f56-be0a-a2a16adea400" - }, - { - "content_id_fk": 176, - "entry_id": 188, - "entry_uuid": "25113fd0-7037-4efe-92e0-6d133e407712", - "extension": "png", - "name": "Screenshot 2025-10-25 at 7.03.28 PM" - }, - { - "content_id_fk": 177, - "entry_id": 189, - "entry_uuid": "41e8a21f-b436-4555-8e8b-724e82e04f85", - "extension": "py", - "name": "ocr_cache" - }, - { - "content_id_fk": 178, - "entry_id": 190, - "entry_uuid": "0f675a56-34dd-4e66-bfee-d6abd25398f8", - "extension": "py", - "name": "models" - }, - { - "content_id_fk": 179, - "entry_id": 191, - "entry_uuid": "0e154d14-747c-45df-81ac-a22d2b43849b", - "extension": "toml", - "name": "pyproject" - }, - { - "content_id_fk": 180, - "entry_id": 192, - "entry_uuid": "8f160ad8-9004-48e0-8a76-35a93e1610fe", - "extension": "py", - "name": "email_parser" - }, - { - "content_id_fk": 181, - "entry_id": 193, - "entry_uuid": "42b0d957-0832-4c06-a5a5-3f0d22c7b55c", - "extension": "sh", - "name": "run-viewer" - }, - { - "content_id_fk": 182, - "entry_id": 194, - "entry_uuid": "40b9269c-2b36-436c-8311-0bb1f1e9149f", - "extension": "py", - "name": "tax_utils" - }, - { - "content_id_fk": 183, - "entry_id": 195, - "entry_uuid": "fec29a46-4bc6-4cb4-a214-e7592b1b0707", - "extension": "py", - "name": "logger" - }, - { - "content_id_fk": 184, - "entry_id": 196, - "entry_uuid": "64098014-db20-430d-86b3-6d05d6a358a0", - "extension": "py", - "name": "tax_calculator" - }, - { - "content_id_fk": 185, - "entry_id": 197, - "entry_uuid": "fb440704-663d-4b39-a52f-c7e922fc9b61", - "extension": "md", - "name": "README" - }, - { - "content_id_fk": 186, - "entry_id": 198, - "entry_uuid": "df93a0e3-c1ca-4f7a-85d1-44a04b39c58f", - "extension": "py", - "name": "parser" - }, - { - "content_id_fk": 187, - "entry_id": 199, - "entry_uuid": "fba085f3-7ffa-41f2-9a32-8a018ba296be", - "extension": "py", - "name": "api" - }, - { - "content_id_fk": 188, - "entry_id": 200, - "entry_uuid": "f3656fc5-47dd-4f05-bc75-fbd75b7d5fc7", - "extension": "json", - "name": "non_taxable_patterns" - }, - { - "content_id_fk": 189, - "entry_id": 201, - "entry_uuid": "1ce3f7b0-23ab-4f1e-9c3a-3783571144e8", - "extension": "py", - "name": "email_matcher" - }, - { - "content_id_fk": 190, - "entry_id": 202, - "entry_uuid": "6eb36b22-37e8-45a8-8e24-dd0ae0926823", - "extension": "csv", - "name": "2024_income_breakdown" - }, - { - "content_id_fk": 191, - "entry_id": 203, - "entry_uuid": "e6f2fcbb-6683-400b-881e-8592e672c762", - "extension": "lock", - "name": "poetry" - }, - { - "content_id_fk": 192, - "entry_id": 204, - "entry_uuid": "dc3c7d6c-614b-4c87-984a-561c4e410614", - "extension": "py", - "name": "main" - }, - { - "content_id_fk": 193, - "entry_id": 205, - "entry_uuid": "a56ae5f8-4874-4c8a-bf17-eed33ffa8430", - "extension": "py", - "name": "init_db" - }, - { - "content_id_fk": 194, - "entry_id": 206, - "entry_uuid": "997a1060-c10b-487a-a18a-f4b22da1db0e", - "extension": "png", - "name": "Screenshot 2025-09-27 at 5.19.51 AM" - }, - { - "content_id_fk": 195, - "entry_id": 207, - "entry_uuid": "2ade9660-b656-4ff2-9b84-d6b7804ce9fb", - "extension": "png", - "name": "Screenshot 2025-09-28 at 2.26.46 AM" - }, - { - "content_id_fk": 196, - "entry_id": 208, - "entry_uuid": "06a94ce1-8ffb-407e-9018-d11b8229c17a", - "extension": "png", - "name": "Screenshot 2025-09-26 at 8.55.51 PM" - }, - { - "content_id_fk": 197, - "entry_id": 209, - "entry_uuid": "7bbf9271-64c3-45eb-bc7b-06fd95d5e5f5", - "extension": "png", - "name": "Screenshot 2025-10-15 at 12.35.42 AM" - }, - { - "content_id_fk": 198, - "entry_id": 210, - "entry_uuid": "f6482acf-87c7-4f26-bd6a-de028eb48c2c", - "extension": "png", - "name": "Screenshot 2025-09-26 at 6.20.53 PM" - }, - { - "content_id_fk": 199, - "entry_id": 211, - "entry_uuid": "1684e098-9caa-4a7f-b839-14bb5d1fd28f", - "extension": "png", - "name": "Screenshot 2025-09-28 at 3.05.00 AM" - }, - { - "content_id_fk": 200, - "entry_id": 212, - "entry_uuid": "d47c6c19-c5e6-4dea-b662-0c545848a0ee", - "extension": "png", - "name": "Screenshot 2025-10-14 at 11.30.52 PM (2)" - }, - { - "content_id_fk": 201, - "entry_id": 213, - "entry_uuid": "0e069dc6-ba68-431e-88b2-34bed5c9297a", - "extension": "db-shm", - "name": "database" - }, - { - "content_id_fk": 6, - "entry_id": 214, - "entry_uuid": "d65bbe7f-6205-4fe9-87e1-69c987a98412", - "extension": "db-wal", - "name": "database" - }, - { - "content_id_fk": 202, - "entry_id": 215, - "entry_uuid": "86e870d0-71f8-4da6-99a7-2356e1c827fe", - "extension": "png", - "name": "Screenshot 2025-09-28 at 2.25.57 AM" - }, - { - "content_id_fk": 203, - "entry_id": 216, - "entry_uuid": "62922ca0-0be5-43b7-a36e-78ae4210c142", - "extension": "png", - "name": "Screenshot 2025-10-16 at 5.11.58 AM" - }, - { - "content_id_fk": 204, - "entry_id": 217, - "entry_uuid": "fae6927d-98d6-406a-8a06-f1ec11e636fd", - "extension": "png", - "name": "Screenshot 2025-09-26 at 6.21.04 PM" - }, - { - "content_id_fk": 205, - "entry_id": 218, - "entry_uuid": "cbe083d6-1fef-4f8c-8b94-36664d34ae44", - "extension": "png", - "name": "Screenshot 2025-10-14 at 11.30.52 PM" - }, - { - "content_id_fk": 206, - "entry_id": 219, - "entry_uuid": "cba7183c-193c-4be3-bcbe-de0d1fa2dc4c", - "extension": "png", - "name": "Screenshot 2025-10-16 at 6.08.39 AM" - }, - { - "content_id_fk": 207, - "entry_id": 220, - "entry_uuid": "eeeeca25-3311-4cee-b857-7a7a1fc8ce9e", - "extension": "png", - "name": "Screenshot 2025-09-28 at 4.49.52 PM" - }, - { - "content_id_fk": 208, - "entry_id": 221, - "entry_uuid": "e0a4e8f2-ea4f-4f6c-8db7-de688ddf5e3d", - "extension": "png", - "name": "Screenshot 2025-09-27 at 3.00.21 AM" - }, - { - "content_id_fk": 209, - "entry_id": 222, - "entry_uuid": "b3bc14f0-912b-48f6-b1f3-0d48693074e3", - "extension": "png", - "name": "Screenshot 2025-09-27 at 5.02.26 AM" - }, - { - "content_id_fk": 210, - "entry_id": 223, - "entry_uuid": "0ef18555-4e15-4230-89a9-b265283f0fd1", - "extension": "png", - "name": "Screenshot 2025-09-26 at 6.00.07 PM" - }, - { - "content_id_fk": 211, - "entry_id": 224, - "entry_uuid": "9ad3c070-1a89-4f44-8cfb-0b8ccf338d33", - "extension": "png", - "name": "Screenshot 2025-10-15 at 12.14.10 AM" - }, - { - "content_id_fk": 212, - "entry_id": 225, - "entry_uuid": "10ec6b42-4adf-48a8-bd3d-bfd7ec9301d0", - "extension": "png", - "name": "Screenshot 2025-09-26 at 5.46.35 PM" - }, - { - "content_id_fk": 213, - "entry_id": 226, - "entry_uuid": "fff3f92b-f240-4662-845f-1eea559f798a", - "extension": "png", - "name": "Screenshot 2025-09-26 at 6.20.56 PM" - }, - { - "content_id_fk": 214, - "entry_id": 227, - "entry_uuid": "04313e34-4895-4a40-a285-d9646c2a8be3", - "extension": "png", - "name": "Screenshot 2025-09-27 at 1.17.46 AM" - }, - { - "content_id_fk": 215, - "entry_id": 228, - "entry_uuid": "354c6fba-2e49-4266-9c77-c1e3bd90ce83", - "extension": "png", - "name": "Screenshot 2025-09-26 at 6.20.35 PM" - }, - { - "content_id_fk": 216, - "entry_id": 229, - "entry_uuid": "fa44653e-bb84-4c60-a3bd-01fefeb928bd", - "extension": "mov", - "name": "Screen Recording 2025-10-21 at 10.20.09 AM" - }, - { - "content_id_fk": 217, - "entry_id": 230, - "entry_uuid": "efdf77ee-298a-473b-a7ee-8a42d17f364a", - "extension": "db", - "name": "database" - }, - { - "content_id_fk": 218, - "entry_id": 231, - "entry_uuid": "b11afb0a-cc8b-44a8-aeaf-e7033a71a8f2", - "extension": "png", - "name": "Google_2015_logo.svg" - }, - { - "content_id_fk": 219, - "entry_id": 234, - "entry_uuid": "c272b175-21d7-4c27-a690-3b9f2dbfadce", - "extension": "md", - "name": "README" - }, - { - "content_id_fk": 220, - "entry_id": 235, - "entry_uuid": "52542088-c499-487f-a72e-90b7bbc37706", - "extension": "json", - "name": "package-lock" - }, - { - "content_id_fk": 221, - "entry_id": 236, - "entry_uuid": "ec7a9334-6c67-4107-a120-392a6cbb281b", - "extension": "json", - "name": "package" - }, - { - "content_id_fk": 222, - "entry_id": 237, - "entry_uuid": "311cac48-2c59-4494-860b-097c477d0038", - "extension": "py", - "name": "patterns" - }, - { - "content_id_fk": 223, - "entry_id": 238, - "entry_uuid": "a9130f6c-816e-45c9-b335-d045190a2d92", - "extension": "py", - "name": "proximity_thresholds" - }, - { - "content_id_fk": 224, - "entry_id": 239, - "entry_uuid": "1b266745-8818-47a7-955a-c4fe10abf895", - "extension": "py", - "name": "thresholds" - }, - { - "content_id_fk": 225, - "entry_id": 240, - "entry_uuid": "20f73ee2-b51f-47ae-94de-906164d89283", - "extension": "py", - "name": "header_words" - }, - { - "content_id_fk": 226, - "entry_id": 241, - "entry_uuid": "98a63dd1-fd49-4fa2-befe-01664c129d50", - "extension": "py", - "name": "__init__" - }, - { - "content_id_fk": 227, - "entry_id": 242, - "entry_uuid": "bc95af30-3056-41a8-ba3a-987fc730cdf8", - "extension": "py", - "name": "column_ranges" - }, - { - "content_id_fk": 228, - "entry_id": 244, - "entry_uuid": "af98a1a8-464d-4b2e-8e45-a833bcdfdf62", - "extension": "html", - "name": "index" - }, - { - "content_id_fk": 229, - "entry_id": 245, - "entry_uuid": "9c958528-dbea-44b8-ba48-71c65e077f13", - "extension": "js", - "name": "index" - }, - { - "content_id_fk": 230, - "entry_id": 246, - "entry_uuid": "2f80fd6e-e7b5-4ad1-a595-b837aabaad07", - "extension": "js", - "name": "App" - }, - { - "content_id_fk": 231, - "entry_id": 247, - "entry_uuid": "a9223e8c-d0b1-461b-9d8c-b2b7551e381d", - "extension": "js", - "name": "StatementViewer" - }, - { - "content_id_fk": 232, - "entry_id": 248, - "entry_uuid": "d1f25379-9fb0-40d0-85a9-952dab26cf6c", - "extension": "js", - "name": "ReceiptIcon" - }, - { - "content_id_fk": 233, - "entry_id": 249, - "entry_uuid": "7b5501f3-aa0b-4917-a085-0fbbf9d0301e", - "extension": "js", - "name": "TaxSummary" - } -] \ No newline at end of file diff --git a/test_snapshots/db_entries_sample.json b/test_snapshots/db_entries_sample.json deleted file mode 100644 index c8d1f1197..000000000 --- a/test_snapshots/db_entries_sample.json +++ /dev/null @@ -1,37 +0,0 @@ -[ - { - "content_id_fk": 1, - "entry_id": 8, - "entry_uuid": "26977785-98eb-4de7-a77b-dc63daef44b3", - "extension": "mov", - "name": "Screen Recording 2025-11-10 at 2.42.22 AM" - }, - { - "content_id_fk": 2, - "entry_id": 9, - "entry_uuid": "e504c96b-5d2f-44e9-9300-ebfd1d7bd1c9", - "extension": "png", - "name": "Screenshot 2025-11-10 at 2.30.23 AM" - }, - { - "content_id_fk": 3, - "entry_id": 10, - "entry_uuid": "bbb07613-fd4d-4243-aaae-f0037c337462", - "extension": "png", - "name": "Screenshot 2025-11-10 at 7.21.30 PM" - }, - { - "content_id_fk": 4, - "entry_id": 11, - "entry_uuid": "4ba8c643-1a2f-4991-8ced-ae25dc37e403", - "extension": "png", - "name": "Screenshot 2025-11-10 at 7.21.51 PM" - }, - { - "content_id_fk": 5, - "entry_id": 12, - "entry_uuid": "d7dc2460-2317-4f40-a6b5-12288556bec5", - "extension": "png", - "name": "Screenshot 2025-11-10 at 2.31.03 AM" - } -] \ No newline at end of file diff --git a/test_snapshots/events_Content.json b/test_snapshots/events_Content.json deleted file mode 100644 index 4fd28430b..000000000 --- a/test_snapshots/events_Content.json +++ /dev/null @@ -1,4866 +0,0 @@ -[ - [ - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "24577669faa061c2", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.407732Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.407732Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3007313, - "uuid": "2d64f2db-5b62-523e-a52f-6b707d984a60" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.811174Z", - "extension": "png", - "id": "0303b9df-3b11-49a6-beb6-0fdec577fefb", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-05T01:41:35Z", - "name": "3AE4AB29-5EC8-4DF9-80F8-F72AE5C38FBF", - "sd_path": { - "Content": { - "content_id": "2d64f2db-5b62-523e-a52f-6b707d984a60" - } - }, - "sidecars": [], - "size": 3007313, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "a63384910ccf3678", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.451813Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.451813Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 533444, - "uuid": "a02066bd-2a36-5060-b6aa-e847628984e6" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.812608Z", - "extension": "jpeg", - "id": "04d0e935-4ab2-4b27-8d54-a41df97a52f7", - "is_local": false, - "kind": { - "File": { - "extension": "jpeg" - } - }, - "modified_at": "2025-10-26T01:19:56Z", - "name": "IMG_0173", - "sd_path": { - "Content": { - "content_id": "a02066bd-2a36-5060-b6aa-e847628984e6" - } - }, - "sidecars": [], - "size": 533444, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "025030b27bab098f", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.448499Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.448499Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 103047, - "uuid": "3b3b816c-fb4a-5530-9850-e499e7149a51" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.812512Z", - "extension": "png", - "id": "08be9a38-26b0-491c-b581-fc3671014ce2", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-04T01:28:37Z", - "name": "Screenshot 2025-11-03 at 5.28.32 PM", - "sd_path": { - "Content": { - "content_id": "3b3b816c-fb4a-5530-9850-e499e7149a51" - } - }, - "sidecars": [], - "size": 103047, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "f6e2cde3d36b099e", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.287208Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.287208Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 60992, - "uuid": "686dfbb5-4445-5a5c-a6c6-2cd5a8fe0e91" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.807171Z", - "extension": "png", - "id": "08f6e89f-f2f5-446e-bc3c-714a34c11bd6", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T10:12:52Z", - "name": "Screenshot 2025-10-13 at 3.12.46 AM", - "sd_path": { - "Content": { - "content_id": "686dfbb5-4445-5a5c-a6c6-2cd5a8fe0e91" - } - }, - "sidecars": [], - "size": 60992, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "7d7df8748ff56cdc", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.356574Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.356574Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 408868, - "uuid": "f23fa034-bf97-5acf-bae5-c4e5edf09b66" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.809506Z", - "extension": "png", - "id": "0cc9d6b4-e001-4262-a2f5-614655007444", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-10T02:56:17Z", - "name": "Screenshot 2025-10-09 at 7.56.11 PM", - "sd_path": { - "Content": { - "content_id": "f23fa034-bf97-5acf-bae5-c4e5edf09b66" - } - }, - "sidecars": [], - "size": 408868, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "dcf625f85d2cd9f9", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.401225Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.401225Z", - "mime_type_id": 7, - "text_content": null, - "total_size": 44962, - "uuid": "27b49cb0-5125-5b57-8f22-289fce64ea29" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.810962Z", - "extension": "webp", - "id": "11165cdd-2c15-4e78-96e3-a9af0106ac53", - "is_local": false, - "kind": { - "File": { - "extension": "webp" - } - }, - "modified_at": "2025-10-30T07:54:54Z", - "name": "notify-subscribe.png", - "sd_path": { - "Content": { - "content_id": "27b49cb0-5125-5b57-8f22-289fce64ea29" - } - }, - "sidecars": [], - "size": 44962, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "cc1eb60edbb36f65", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.353160Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.353160Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 1450013, - "uuid": "3f959759-1f48-5c44-9537-c1ae80400f4f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.809414Z", - "extension": "jpg", - "id": "1251fe82-88df-40ea-83fe-283b8c828482", - "is_local": false, - "kind": { - "File": { - "extension": "jpg" - } - }, - "modified_at": "2025-10-27T02:47:35Z", - "name": "IMG_4142", - "sd_path": { - "Content": { - "content_id": "3f959759-1f48-5c44-9537-c1ae80400f4f" - } - }, - "sidecars": [], - "size": 1450013, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e1feea641bd57cae", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.429257Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.429257Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1144352, - "uuid": "2db72064-5ede-5b96-b4ff-2df911da2536" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.811878Z", - "extension": "png", - "id": "12be058a-7c6f-48b5-90d8-1949a48e948d", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-04T02:10:33Z", - "name": "Screenshot 2025-11-03 at 6.10.27 PM", - "sd_path": { - "Content": { - "content_id": "2db72064-5ede-5b96-b4ff-2df911da2536" - } - }, - "sidecars": [], - "size": 1144352, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3874e35a6426d192", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.378636Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.378636Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 15026, - "uuid": "cd739ff0-e945-57f9-b438-9bf463778b68" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.810227Z", - "extension": "md", - "id": "13613196-d2c2-4e09-ba54-9a5953fccf5c", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T00:08:40Z", - "name": "REFACTOR_COMPLETE_SUMMARY", - "sd_path": { - "Content": { - "content_id": "cd739ff0-e945-57f9-b438-9bf463778b68" - } - }, - "sidecars": [], - "size": 15026, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5c6083933f82298f", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.442162Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.442162Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 741233, - "uuid": "c4f5540d-e1ac-5912-992c-85bf54b6437a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.812326Z", - "extension": "jpg", - "id": "188a88ec-b6af-4081-8320-44b09a3db87e", - "is_local": false, - "kind": { - "File": { - "extension": "jpg" - } - }, - "modified_at": "2025-10-30T05:32:48Z", - "name": "CF54235D-6286-4893-8A63-1930295099EB", - "sd_path": { - "Content": { - "content_id": "c4f5540d-e1ac-5912-992c-85bf54b6437a" - } - }, - "sidecars": [], - "size": 741233, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3f275cc716c18f84", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.330878Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.330878Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3544, - "uuid": "f631a208-a1e4-50ac-a16b-c10b0cb33766" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.808726Z", - "extension": "png", - "id": "19a8afc1-97d4-421f-9b19-006267232d78", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-14T03:49:26Z", - "name": "Screenshot 2025-10-13 at 8.49.20 PM", - "sd_path": { - "Content": { - "content_id": "f631a208-a1e4-50ac-a16b-c10b0cb33766" - } - }, - "sidecars": [], - "size": 3544, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d61fe07d75bcdb98", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.318513Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.318513Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 678438, - "uuid": "9a1d2e14-cc9d-5a33-95ee-5133fe31a43f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.808298Z", - "extension": "png", - "id": "1c3f7c78-0ecb-4182-82fd-9d3cf050b725", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-08T16:23:20Z", - "name": "Screenshot 2025-11-08 at 8.23.14 AM", - "sd_path": { - "Content": { - "content_id": "9a1d2e14-cc9d-5a33-95ee-5133fe31a43f" - } - }, - "sidecars": [], - "size": 678438, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ed14194c6dbca648", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.426130Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.426133Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 130697, - "uuid": "49007829-591e-5482-aa61-1a4adce6561d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.811785Z", - "extension": "png", - "id": "1d61b4ad-69dc-411b-885c-952107b390b2", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-23T22:14:49Z", - "name": "Screenshot 2025-10-23 at 3.14.43 PM", - "sd_path": { - "Content": { - "content_id": "49007829-591e-5482-aa61-1a4adce6561d" - } - }, - "sidecars": [], - "size": 130697, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "a3495c736aba6463", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.410791Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.410791Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 71965207, - "uuid": "1fc2ab21-f926-58be-93ab-c8fe85a57870" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.811275Z", - "extension": "mov", - "id": "1f5ceb21-a5aa-4eff-9f47-a8e76688f8e3", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-14T08:59:22Z", - "name": "Screen Recording 2025-10-14 at 1.58.05 AM", - "sd_path": { - "Content": { - "content_id": "1fc2ab21-f926-58be-93ab-c8fe85a57870" - } - }, - "sidecars": [], - "size": 71965207, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "9a66281e4c9848af", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.312252Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.312252Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 83469419, - "uuid": "733eef47-82b7-5cc7-970a-261335e449d6" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.807989Z", - "extension": "mov", - "id": "229f5f07-31e2-456d-9da4-6d3e8c77c76c", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-08T15:15:06Z", - "name": "spacedrive-gource-insta", - "sd_path": { - "Content": { - "content_id": "733eef47-82b7-5cc7-970a-261335e449d6" - } - }, - "sidecars": [], - "size": 83469419, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "18d735f26f333d54", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.302915Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.302915Z", - "mime_type_id": 4, - "text_content": null, - "total_size": 321844, - "uuid": "c85d1ff2-17a8-5297-8442-a37c40ad2bd0" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.807717Z", - "extension": "pdf", - "id": "2854b816-94ec-480c-8642-f54ac074c300", - "is_local": false, - "kind": { - "File": { - "extension": "pdf" - } - }, - "modified_at": "2025-02-04T02:16:26Z", - "name": "imm5557e", - "sd_path": { - "Content": { - "content_id": "c85d1ff2-17a8-5297-8442-a37c40ad2bd0" - } - }, - "sidecars": [], - "size": 321844, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ae10caa0347f190c", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.458663Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.458663Z", - "mime_type_id": 8, - "text_content": null, - "total_size": 401408, - "uuid": "7940864a-750c-5d7a-9eba-d19cc5a03f2b" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.812816Z", - "extension": "db", - "id": "288a81c0-35a3-4b8f-b436-6e8fc64d48a0", - "is_local": false, - "kind": { - "File": { - "extension": "db" - } - }, - "modified_at": "2025-10-14T07:09:23Z", - "name": "database", - "sd_path": { - "Content": { - "content_id": "7940864a-750c-5d7a-9eba-d19cc5a03f2b" - } - }, - "sidecars": [], - "size": 401408, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "960a0dbc1a8df0b2", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.274810Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.274810Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 11010444, - "uuid": "fe7d4258-b00b-53dc-ba67-01c5720b0b3a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.806680Z", - "extension": "png", - "id": "28e43bf6-eb46-4a68-b62c-a3f3f245cacb", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T04:18:39Z", - "name": "Screenshot 2025-10-12 at 9.18.32 PM 1", - "sd_path": { - "Content": { - "content_id": "fe7d4258-b00b-53dc-ba67-01c5720b0b3a" - } - }, - "sidecars": [], - "size": 11010444, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "421715d465c58201", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.265212Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.265212Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 78902998, - "uuid": "8ac8b174-8014-561a-9c77-c4f5c975343d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.806330Z", - "extension": "mov", - "id": "29029d95-c0b4-4839-a324-f615130e777a", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-14T09:51:01Z", - "name": "Cloud support working", - "sd_path": { - "Content": { - "content_id": "8ac8b174-8014-561a-9c77-c4f5c975343d" - } - }, - "sidecars": [], - "size": 78902998, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "01a8562cc56a640b", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.556232Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.556232Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 2210059, - "uuid": "ee4e4357-5138-5cde-8698-28550631362d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.816220Z", - "extension": "png", - "id": "2de85c28-24dc-477e-8b7e-716ab233c487", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-15T07:35:47Z", - "name": "Screenshot 2025-10-15 at 12.35.42 AM", - "sd_path": { - "Content": { - "content_id": "ee4e4357-5138-5cde-8698-28550631362d" - } - }, - "sidecars": [], - "size": 2210059, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "02d5165765b1fca9", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.344181Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.344181Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1704024, - "uuid": "7cee1b2f-697f-5aa0-a7cc-60ec95de0da7" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.809122Z", - "extension": "png", - "id": "2e8e34f8-a837-4ab8-9d1a-e878bd9f4cc7", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-07T04:10:58Z", - "name": "Screenshot 2025-11-06 at 8.10.53 PM", - "sd_path": { - "Content": { - "content_id": "7cee1b2f-697f-5aa0-a7cc-60ec95de0da7" - } - }, - "sidecars": [], - "size": 1704024, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "735172ff2eef7e88", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.404636Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.404637Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 11010446, - "uuid": "f06de9af-5d57-5012-8972-70323c6c556c" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.811056Z", - "extension": "png", - "id": "3102e71d-67a6-43b1-b574-043055b8aede", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T04:18:33Z", - "name": "Screenshot 2025-10-12 at 9.18.32 PM", - "sd_path": { - "Content": { - "content_id": "f06de9af-5d57-5012-8972-70323c6c556c" - } - }, - "sidecars": [], - "size": 11010446, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "6a4531bfaa7dd91b", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.518068Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.518068Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 10772, - "uuid": "6cc195ab-beaf-5b58-b26e-51286dee79ad" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.814846Z", - "extension": "md", - "id": "35f52f4b-c964-4460-87c2-a758842c91c6", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-04-17T01:08:35Z", - "name": "README", - "sd_path": { - "Content": { - "content_id": "6cc195ab-beaf-5b58-b26e-51286dee79ad" - } - }, - "sidecars": [], - "size": 10772, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d2d6002c5dc8573b", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.385326Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.385326Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 126184367, - "uuid": "389457a8-42d8-5a18-97c1-492305a4e664" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.810480Z", - "extension": "mov", - "id": "36be0baa-b4a3-4f79-ae5e-e763806935d2", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-09-29T22:32:13Z", - "name": "Spacedrive v2 Development Gource", - "sd_path": { - "Content": { - "content_id": "389457a8-42d8-5a18-97c1-492305a4e664" - } - }, - "sidecars": [], - "size": 126184367, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ef56ed4dc26d128e", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.327939Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.327939Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3249022, - "uuid": "8e208b45-80ef-53a3-8ac7-f8a00e7b332d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.808627Z", - "extension": "png", - "id": "38e5c3bc-a5eb-4c9c-a691-ce75771e451e", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-05T01:14:22Z", - "name": "4369DEA3-E137-408E-8641-42FF42955272", - "sd_path": { - "Content": { - "content_id": "8e208b45-80ef-53a3-8ac7-f8a00e7b332d" - } - }, - "sidecars": [], - "size": 3249022, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "c97bdcd56064d8c3", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.255944Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.255944Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 655329, - "uuid": "abe2588a-19c8-5591-bab5-aea476007972" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.805973Z", - "extension": "png", - "id": "3f2c753f-9207-4a05-826e-a62c5df73c00", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-07T07:54:41Z", - "name": "Screenshot 2025-11-06 at 11.54.36 PM", - "sd_path": { - "Content": { - "content_id": "abe2588a-19c8-5591-bab5-aea476007972" - } - }, - "sidecars": [], - "size": 655329, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "7dcf4bcc014d4a38", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.395013Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.395013Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 70707, - "uuid": "8df570e4-2209-517d-bf3b-3a860a79d3c1" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.810767Z", - "extension": "jpg", - "id": "41787ec6-7c66-4086-9b60-f5781bff09e2", - "is_local": false, - "kind": { - "File": { - "extension": "jpg" - } - }, - "modified_at": "2025-11-05T01:15:48Z", - "name": "photo-2", - "sd_path": { - "Content": { - "content_id": "8df570e4-2209-517d-bf3b-3a860a79d3c1" - } - }, - "sidecars": [], - "size": 70707, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e5cc3a826c031f09", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.306116Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.306116Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 212069, - "uuid": "9e7a073a-cf32-557c-a360-2dd2f7989dc8" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.807809Z", - "extension": "png", - "id": "44d98828-3246-4f27-b82d-289da4ea9324", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T01:55:41Z", - "name": "Screenshot 2025-10-12 at 6.55.36 PM", - "sd_path": { - "Content": { - "content_id": "9e7a073a-cf32-557c-a360-2dd2f7989dc8" - } - }, - "sidecars": [], - "size": 212069, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e726b698b9ba9ae9", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.388511Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.388511Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 164040080, - "uuid": "26a7ee6e-bbba-5d9f-8fbf-1cb002f57835" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.810571Z", - "extension": "mov", - "id": "46f1da66-eee6-4370-9bcc-cc5ef50f1485", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-09-29T22:17:22Z", - "name": "Screen Recording 2025-09-29 at 3.16.06 PM", - "sd_path": { - "Content": { - "content_id": "26a7ee6e-bbba-5d9f-8fbf-1cb002f57835" - } - }, - "sidecars": [], - "size": 164040080, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "6cb4576591a2be6a", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.293612Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.293612Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1258750, - "uuid": "8994af12-3205-5a2d-b6de-9be31c008aa9" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.807379Z", - "extension": "png", - "id": "49457718-f0fa-42a4-8352-2c74b855617b", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-30T06:28:21Z", - "name": "Screenshot 2025-10-29 at 11.28.16 PM", - "sd_path": { - "Content": { - "content_id": "8994af12-3205-5a2d-b6de-9be31c008aa9" - } - }, - "sidecars": [], - "size": 1258750, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "bbd88d40e54ed662", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.299801Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.299801Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 775102, - "uuid": "0c76de13-4cdd-5b46-b4ef-55f76bff381e" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.807586Z", - "extension": "png", - "id": "4e34dd4c-95d7-445d-aa5b-788334be66a3", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T04:49:41Z", - "name": "Screenshot 2025-10-25 at 9.49.24 PM", - "sd_path": { - "Content": { - "content_id": "0c76de13-4cdd-5b46-b4ef-55f76bff381e" - } - }, - "sidecars": [], - "size": 775102, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "83d5cf76c1dc5309", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.334199Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.334199Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 268333, - "uuid": "b685631f-3b06-55b2-b78b-7455a7867d9c" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.808822Z", - "extension": "png", - "id": "4f892fe4-c2d6-4583-9027-feb3598e6202", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-06T10:46:44Z", - "name": "Screenshot 2025-11-06 at 2.46.39 AM", - "sd_path": { - "Content": { - "content_id": "b685631f-3b06-55b2-b78b-7455a7867d9c" - } - }, - "sidecars": [], - "size": 268333, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "74fd9e6cf5fe222c", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.391709Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.391709Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 218378, - "uuid": "bff43b1c-56f3-5ad4-bbf0-5002c3381b57" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.810673Z", - "extension": "png", - "id": "5036abe0-1a2c-4d0d-ba26-923cf4848b92", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-08T03:04:35Z", - "name": "Screenshot 2025-11-07 at 7.04.29 PM", - "sd_path": { - "Content": { - "content_id": "bff43b1c-56f3-5ad4-bbf0-5002c3381b57" - } - }, - "sidecars": [], - "size": 218378, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "94fa3cb5e3253187", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.259120Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.259120Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 580774, - "uuid": "90c94392-9c6d-5fa9-acd3-7d5a4dc116af" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.806083Z", - "extension": "png", - "id": "51173853-4c38-431c-ba00-c76ce4f1aad8", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T03:06:49Z", - "name": "Screenshot 2025-10-12 at 8.06.43 PM", - "sd_path": { - "Content": { - "content_id": "90c94392-9c6d-5fa9-acd3-7d5a4dc116af" - } - }, - "sidecars": [], - "size": 580774, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "c183d86e49ba0a9a", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.419673Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.419673Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 15681, - "uuid": "52aa14d0-2214-5a32-b7dc-08f4c88f727a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.811596Z", - "extension": "md", - "id": "5292d6ad-5609-450d-a3a2-f688e12a7147", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T01:45:35Z", - "name": "REFACTOR_PLAN", - "sd_path": { - "Content": { - "content_id": "52aa14d0-2214-5a32-b7dc-08f4c88f727a" - } - }, - "sidecars": [], - "size": 15681, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "77dee041207c3aae", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.468249Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.468250Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1738553, - "uuid": "32c8405b-ae38-5e8e-908e-9b203d665307" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.813108Z", - "extension": "png", - "id": "53ac8910-b8a4-4fd5-bade-1491f840f803", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-10T06:00:14Z", - "name": "Screenshot 2025-10-09 at 11.00.03 PM", - "sd_path": { - "Content": { - "content_id": "32c8405b-ae38-5e8e-908e-9b203d665307" - } - }, - "sidecars": [], - "size": 1738553, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3a9f5142cdced0d9", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.278111Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.278111Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 715281, - "uuid": "4f5dfe81-f3a1-5a90-9558-ca2441fa1d4e" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.806788Z", - "extension": "png", - "id": "5700507f-f531-4389-b642-892d3800f310", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-27T07:13:51Z", - "name": "Screenshot 2025-10-27 at 12.12.29 AM", - "sd_path": { - "Content": { - "content_id": "4f5dfe81-f3a1-5a90-9558-ca2441fa1d4e" - } - }, - "sidecars": [], - "size": 715281, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "80a1c9c39902eda8", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.536703Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.536703Z", - "mime_type_id": 16, - "text_content": null, - "total_size": 280569, - "uuid": "896662b0-5b61-5f9e-83fe-7d9b9d8bbde2" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.815526Z", - "extension": "lock", - "id": "58250485-fb5c-4e11-b09b-1526c744660c", - "is_local": false, - "kind": { - "File": { - "extension": "lock" - } - }, - "modified_at": "2025-04-19T02:42:36Z", - "name": "poetry", - "sd_path": { - "Content": { - "content_id": "896662b0-5b61-5f9e-83fe-7d9b9d8bbde2" - } - }, - "sidecars": [], - "size": 280569, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ffce0a96003cfed8", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.471279Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.471279Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1673592, - "uuid": "1f611c4d-8e88-519d-8e62-3fa2b6b957c3" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.813217Z", - "extension": "png", - "id": "59d3971f-4619-4503-bf3e-905806452f7f", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-05T09:15:50Z", - "name": "image", - "sd_path": { - "Content": { - "content_id": "1f611c4d-8e88-519d-8e62-3fa2b6b957c3" - } - }, - "sidecars": [], - "size": 1673592, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "64b3062f354235db", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.524446Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.524447Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 15870, - "uuid": "933a05fb-6017-5613-84a8-da94dc1070bd" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.815037Z", - "extension": "py", - "id": "5a5e02e6-759c-4037-b97d-eacb0b4187c8", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-19T04:39:35Z", - "name": "api", - "sd_path": { - "Content": { - "content_id": "933a05fb-6017-5613-84a8-da94dc1070bd" - } - }, - "sidecars": [], - "size": 15870, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "20ac41cc3f17e12f", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.445228Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.445229Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 14686859, - "uuid": "f3caff09-6274-59e5-b5f4-6bd2870a4e2d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.812416Z", - "extension": "mov", - "id": "5aa7d872-b2f7-4762-8dfe-4093b6aa46cf", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-14T10:00:53Z", - "name": "Screen Recording 2025-10-14 at 3.00.33 AM", - "sd_path": { - "Content": { - "content_id": "f3caff09-6274-59e5-b5f4-6bd2870a4e2d" - } - }, - "sidecars": [], - "size": 14686859, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "12ad58510c87c445", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.543169Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.543169Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 1212, - "uuid": "56a96b7c-e25c-5b78-add8-f969342b38be" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.815834Z", - "extension": "py", - "id": "5c2da6d8-9fcd-4654-810e-0b7c224b6d00", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-16T03:42:04Z", - "name": "init_db", - "sd_path": { - "Content": { - "content_id": "56a96b7c-e25c-5b78-add8-f969342b38be" - } - }, - "sidecars": [], - "size": 1212, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "388fa1e69021dd46", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.562227Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.562227Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 155960, - "uuid": "d8ac43ff-5914-52f3-b106-2a47a423aee4" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.816437Z", - "extension": "png", - "id": "5cb40d30-ead4-4b6a-b3d4-f2e9bf52e3d2", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-28T10:05:05Z", - "name": "Screenshot 2025-09-28 at 3.05.00 AM", - "sd_path": { - "Content": { - "content_id": "d8ac43ff-5914-52f3-b106-2a47a423aee4" - } - }, - "sidecars": [], - "size": 155960, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "920d1ca356469bc5", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.347184Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.347184Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 297024, - "uuid": "c24311e4-660b-5e30-94ce-bb5f183b702c" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.809215Z", - "extension": "png", - "id": "5f37961b-ebc9-4bac-8f60-834cb9138a65", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-06T01:11:30Z", - "name": "Screenshot 2025-11-05 at 5.11.24 PM", - "sd_path": { - "Content": { - "content_id": "c24311e4-660b-5e30-94ce-bb5f183b702c" - } - }, - "sidecars": [], - "size": 297024, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "867b90353f2abeab", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.455031Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.455031Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1308809, - "uuid": "1d31ab65-6d18-5b9f-a372-71548c3dcfd0" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.812721Z", - "extension": "png", - "id": "60855eda-4bac-406d-bae8-b30e0ad71e57", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-30T06:28:05Z", - "name": "Screenshot 2025-10-29 at 11.28.00 PM", - "sd_path": { - "Content": { - "content_id": "1d31ab65-6d18-5b9f-a372-71548c3dcfd0" - } - }, - "sidecars": [], - "size": 1308809, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "42102c11391ce992", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.382155Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.382155Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3545, - "uuid": "3df7ad4a-4a97-51fb-94fb-0216c04fe767" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.810324Z", - "extension": "png", - "id": "67a86f82-d85b-48c8-b7dd-0fb416ee5640", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-27T04:50:01Z", - "name": "Screenshot 2025-10-26 at 9.49.55 PM", - "sd_path": { - "Content": { - "content_id": "3df7ad4a-4a97-51fb-94fb-0216c04fe767" - } - }, - "sidecars": [], - "size": 3545, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "9ace6e157434a8c2", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.268340Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.268340Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 1910695, - "uuid": "ba9a287f-00f3-5b64-81c6-ced222167c1e" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.806435Z", - "extension": "jpeg", - "id": "68d6c770-7bd3-4571-8009-a4acfccdd244", - "is_local": false, - "kind": { - "File": { - "extension": "jpeg" - } - }, - "modified_at": "2025-11-09T06:34:06Z", - "name": "IMG_0343", - "sd_path": { - "Content": { - "content_id": "ba9a287f-00f3-5b64-81c6-ced222167c1e" - } - }, - "sidecars": [], - "size": 1910695, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "879bc7e5eaf1e01b", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.512219Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.512219Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 4502, - "uuid": "69d3f11c-6459-5890-801b-8d255ab8ec8b" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.814650Z", - "extension": "py", - "id": "6a74ec63-398b-497c-bb42-62b6465db6c2", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-16T13:05:26Z", - "name": "logger", - "sd_path": { - "Content": { - "content_id": "69d3f11c-6459-5890-801b-8d255ab8ec8b" - } - }, - "sidecars": [], - "size": 4502, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "8daf386b9f5dd7cf", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.309302Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.309302Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 776724920, - "uuid": "a4422b9f-244b-5a77-8b77-4745fc78e4c2" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.807904Z", - "extension": "mov", - "id": "6d33250e-dd58-4dc1-a201-8bbbac5e6bf6", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-12T04:47:01Z", - "name": "Screen Recording 2025-10-11 at 9.29.03 PM", - "sd_path": { - "Content": { - "content_id": "a4422b9f-244b-5a77-8b77-4745fc78e4c2" - } - }, - "sidecars": [], - "size": 776724920, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "cac3a3a2f998ace0", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.252265Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.252265Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 396629, - "uuid": "924e38f8-62b7-514e-a216-50f5a5e086b1" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.805670Z", - "extension": "png", - "id": "70c91913-77cb-4b82-bbcd-58ce4f0f6502", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-01T00:51:23Z", - "name": "Screenshot 2025-10-31 at 5.51.17 PM", - "sd_path": { - "Content": { - "content_id": "924e38f8-62b7-514e-a216-50f5a5e086b1" - } - }, - "sidecars": [], - "size": 396629, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "bb9f9f421db3e00e", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.493464Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.493464Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 1995, - "uuid": "e212f0ee-75d3-531d-b057-7877246f8a82" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.813976Z", - "extension": "py", - "id": "7312d5d5-7b2c-4688-b11e-d064dd55b274", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-16T22:38:05Z", - "name": "ocr_cache", - "sd_path": { - "Content": { - "content_id": "e212f0ee-75d3-531d-b057-7877246f8a82" - } - }, - "sidecars": [], - "size": 1995, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ce8fa365296b5dbc", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.365900Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.365900Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 268856, - "uuid": "27465ee4-0a1e-5bc0-abe1-7dbba0ee4268" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.809792Z", - "extension": "png", - "id": "772fafa2-4630-4f4e-9ec8-ea71f42d239f", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-02T01:19:52Z", - "name": "Screenshot 2025-11-01 at 6.19.47 PM", - "sd_path": { - "Content": { - "content_id": "27465ee4-0a1e-5bc0-abe1-7dbba0ee4268" - } - }, - "sidecars": [], - "size": 268856, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d31c452c53cb565a", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.372320Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.372320Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 7745, - "uuid": "eb00af6f-5be4-5a73-a577-c14356b4e635" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.810027Z", - "extension": "md", - "id": "7ab1ee98-d76b-4c9d-8875-7ca3ff5c0052", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T01:45:35Z", - "name": "OPTIONAL_FIELDS_FIX_VERIFIED", - "sd_path": { - "Content": { - "content_id": "eb00af6f-5be4-5a73-a577-c14356b4e635" - } - }, - "sidecars": [], - "size": 7745, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "24f4400202050f5c", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.465222Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.465222Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 32616, - "uuid": "0762db50-354a-516d-bf42-dee0df7d960f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.813014Z", - "extension": "png", - "id": "80f8d46b-c2f2-4fcd-ad4d-334a6d3794ca", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-08T13:53:19Z", - "name": "Screenshot 2025-10-08 at 6.53.13 AM", - "sd_path": { - "Content": { - "content_id": "0762db50-354a-516d-bf42-dee0df7d960f" - } - }, - "sidecars": [], - "size": 32616, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "62ede5eea1b01177", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.462045Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.462045Z", - "mime_type_id": 9, - "text_content": null, - "total_size": 505465731, - "uuid": "69a467cc-b8f1-5b84-9c2f-37baa0c44222" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.812920Z", - "extension": "zip", - "id": "8505d939-57b3-4270-a408-975ccc34ccf1", - "is_local": false, - "kind": { - "File": { - "extension": "zip" - } - }, - "modified_at": "2025-10-04T07:30:13Z", - "name": "Andrew Willis Files", - "sd_path": { - "Content": { - "content_id": "69a467cc-b8f1-5b84-9c2f-37baa0c44222" - } - }, - "sidecars": [], - "size": 505465731, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "1bdee76c510adad9", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.527461Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.527461Z", - "mime_type_id": 14, - "text_content": null, - "total_size": 5995, - "uuid": "9fe36de8-f13b-55d1-9a8d-92f0095cb07b" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.815236Z", - "extension": "json", - "id": "878fd295-563f-420c-a754-d3d12fa3fbb6", - "is_local": false, - "kind": { - "File": { - "extension": "json" - } - }, - "modified_at": "2025-04-18T18:33:41Z", - "name": "non_taxable_patterns", - "sd_path": { - "Content": { - "content_id": "9fe36de8-f13b-55d1-9a8d-92f0095cb07b" - } - }, - "sidecars": [], - "size": 5995, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "bff0970a8ee00b3b", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.549155Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.549155Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 464385, - "uuid": "4f6c71bf-4594-589e-96c6-7485b1869be2" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.816031Z", - "extension": "png", - "id": "87c2e025-40c5-4188-bc60-ed78440616a4", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-28T09:26:52Z", - "name": "Screenshot 2025-09-28 at 2.26.46 AM", - "sd_path": { - "Content": { - "content_id": "4f6c71bf-4594-589e-96c6-7485b1869be2" - } - }, - "sidecars": [], - "size": 464385, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "7a7d5d06d78f2e48", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.499847Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.499847Z", - "mime_type_id": 12, - "text_content": null, - "total_size": 581, - "uuid": "23c8eeda-08fc-5fae-9656-c49f4f24af63" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.814230Z", - "extension": "toml", - "id": "8bb14f15-1f58-4609-aa6e-87a8a0d3f72f", - "is_local": false, - "kind": { - "File": { - "extension": "toml" - } - }, - "modified_at": "2025-04-19T02:42:21Z", - "name": "pyproject", - "sd_path": { - "Content": { - "content_id": "23c8eeda-08fc-5fae-9656-c49f4f24af63" - } - }, - "sidecars": [], - "size": 581, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3fb8408253bd7eca", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.530338Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.530338Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 7309, - "uuid": "26bd4fcc-19be-5230-9fcf-fa68ccb28eee" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.815336Z", - "extension": "py", - "id": "8bf90fca-eb81-4715-8117-7bc789c6cec1", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-19T03:13:04Z", - "name": "email_matcher", - "sd_path": { - "Content": { - "content_id": "26bd4fcc-19be-5230-9fcf-fa68ccb28eee" - } - }, - "sidecars": [], - "size": 7309, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b2e02fe92f39b801", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.486972Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.486972Z", - "mime_type_id": 10, - "text_content": null, - "total_size": 12902, - "uuid": "53082913-b060-5ceb-a98c-b5d0884f41ce" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.813741Z", - "extension": "log", - "id": "8c08f263-e4ea-4dc9-bd34-52de1757cb62", - "is_local": false, - "kind": { - "File": { - "extension": "log" - } - }, - "modified_at": "2025-10-14T07:24:28Z", - "name": "6a957e54-236d-4f56-be0a-a2a16adea400", - "sd_path": { - "Content": { - "content_id": "53082913-b060-5ceb-a98c-b5d0884f41ce" - } - }, - "sidecars": [], - "size": 12902, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "73e89631edd9e759", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.350318Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.350318Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 206829, - "uuid": "890dfcac-1808-5c06-a9a2-571355ec01c6" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.809311Z", - "extension": "jpg", - "id": "92bdd49b-4104-42c1-8049-22ef85663adf", - "is_local": false, - "kind": { - "File": { - "extension": "jpg" - } - }, - "modified_at": "2025-11-05T01:09:13Z", - "name": "IMG_7106", - "sd_path": { - "Content": { - "content_id": "890dfcac-1808-5c06-a9a2-571355ec01c6" - } - }, - "sidecars": [], - "size": 206829, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3bd4235a4e60d739", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.546189Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.546189Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1535928, - "uuid": "f0628432-b758-524e-858c-eee7b50f2f7b" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.815929Z", - "extension": "png", - "id": "98977c3b-dbbe-4eb6-9589-54e0fe4064fc", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T12:19:57Z", - "name": "Screenshot 2025-09-27 at 5.19.51 AM", - "sd_path": { - "Content": { - "content_id": "f0628432-b758-524e-858c-eee7b50f2f7b" - } - }, - "sidecars": [], - "size": 1535928, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "4650258d6bf4465f", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.422966Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.422966Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 99465, - "uuid": "2a27156e-c940-5328-866f-e045d8bb3079" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.811692Z", - "extension": "png", - "id": "9af71135-8919-4014-8a1c-9c3b860932e4", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-01T00:34:09Z", - "name": "Screenshot 2025-10-31 at 5.34.03 PM", - "sd_path": { - "Content": { - "content_id": "2a27156e-c940-5328-866f-e045d8bb3079" - } - }, - "sidecars": [], - "size": 99465, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "6401770cf5b4f1a0", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.506298Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.506298Z", - "mime_type_id": 13, - "text_content": null, - "total_size": 648, - "uuid": "f8a884c5-d1f8-5045-82da-ecec5de43569" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.814451Z", - "extension": "sh", - "id": "9fdb94cb-5d96-4800-986c-fae23d90b098", - "is_local": false, - "kind": { - "File": { - "extension": "sh" - } - }, - "modified_at": "2025-04-16T13:33:03Z", - "name": "run-viewer", - "sd_path": { - "Content": { - "content_id": "f8a884c5-d1f8-5045-82da-ecec5de43569" - } - }, - "sidecars": [], - "size": 648, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "41c8c1bc92fae647", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.337747Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.337748Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 53150, - "uuid": "29d7cf89-0884-5f97-8651-8f43c2758455" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.808937Z", - "extension": "png", - "id": "a4523b24-a46d-4d05-a5dd-9c50f939ba81", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-08T13:57:18Z", - "name": "Screenshot 2025-10-08 at 6.56.57 AM", - "sd_path": { - "Content": { - "content_id": "29d7cf89-0884-5f97-8651-8f43c2758455" - } - }, - "sidecars": [], - "size": 53150, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3dad74526da427b2", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.321761Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.321761Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 4287356, - "uuid": "11b90d83-f61d-54c1-8e81-fc7a679d5d34" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.808395Z", - "extension": "png", - "id": "a74ef8b9-aa9a-44ab-b706-2b8c557d89a6", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-02T03:52:18Z", - "name": "Screenshot 2025-11-01 at 8.52.12 PM", - "sd_path": { - "Content": { - "content_id": "11b90d83-f61d-54c1-8e81-fc7a679d5d34" - } - }, - "sidecars": [], - "size": 4287356, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "225603cadd156572", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.435704Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.435704Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 7080, - "uuid": "72642156-896a-589c-a784-721c702e562b" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.812125Z", - "extension": "md", - "id": "aa08ab1c-4991-4399-8c7b-b5eceaddc18e", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T01:45:35Z", - "name": "TUPLE_VARIANTS_IMPLEMENTED", - "sd_path": { - "Content": { - "content_id": "72642156-896a-589c-a784-721c702e562b" - } - }, - "sidecars": [], - "size": 7080, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "1a31f2374b2817d1", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.496528Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.496528Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 5069, - "uuid": "f5729068-02a6-54a1-91ec-710af36f8bcc" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.814126Z", - "extension": "py", - "id": "aa375610-f688-4ab9-975b-ae0a74c0e012", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-19T04:36:04Z", - "name": "models", - "sd_path": { - "Content": { - "content_id": "f5729068-02a6-54a1-91ec-710af36f8bcc" - } - }, - "sidecars": [], - "size": 5069, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "fdaee937b2fc7e02", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.296628Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.296628Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1284257, - "uuid": "ee5b264e-5421-5628-b1a5-38b98efab827" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.807467Z", - "extension": "png", - "id": "aadb528b-308f-4509-9c82-48ddc241abca", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-30T06:28:09Z", - "name": "Screenshot 2025-10-29 at 11.28.04 PM", - "sd_path": { - "Content": { - "content_id": "ee5b264e-5421-5628-b1a5-38b98efab827" - } - }, - "sidecars": [], - "size": 1284257, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5487b3e8f45dd1a5", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.341130Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.341130Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 8985, - "uuid": "b8021b7f-e69c-55d5-ac85-9a1712193fb4" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.809030Z", - "extension": "md", - "id": "adc2d14a-5ff1-4caf-b4d1-47af547231cf", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T01:45:35Z", - "name": "SESSION_SUMMARY", - "sd_path": { - "Content": { - "content_id": "b8021b7f-e69c-55d5-ac85-9a1712193fb4" - } - }, - "sidecars": [], - "size": 8985, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5de686c44adcdcf3", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.281159Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.281159Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 8672310, - "uuid": "10f4f4e6-7753-5e84-a289-f9c819cfaa66" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.806895Z", - "extension": "png", - "id": "af19c262-f165-4903-8229-2119748b05a3", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-08T04:44:31Z", - "name": "Screenshot 2025-10-07 at 9.44.24 PM (2)", - "sd_path": { - "Content": { - "content_id": "10f4f4e6-7753-5e84-a289-f9c819cfaa66" - } - }, - "sidecars": [], - "size": 8672310, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "2c9f06f0b7bfbda6", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.521175Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.521176Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 46733, - "uuid": "5041bc0b-5349-530e-bff9-5e3b0eaa8eca" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.814941Z", - "extension": "py", - "id": "afbada55-d102-47d7-844e-59f53fcdf0c3", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-18T17:45:01Z", - "name": "parser", - "sd_path": { - "Content": { - "content_id": "5041bc0b-5349-530e-bff9-5e3b0eaa8eca" - } - }, - "sidecars": [], - "size": 46733, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "7657ec80d38894a3", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.483773Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.483773Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 297364322, - "uuid": "391a1f3f-0c20-546b-9432-4e475a4d9fa5" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.813646Z", - "extension": "mov", - "id": "b1a52fbd-34de-4690-a638-950911f6bbbe", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-09-29T22:25:18Z", - "name": "Screen Recording 2025-09-29 at 3.23.32 PM", - "sd_path": { - "Content": { - "content_id": "391a1f3f-0c20-546b-9432-4e475a4d9fa5" - } - }, - "sidecars": [], - "size": 297364322, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "aac3fa48fd12fa49", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.416640Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.416641Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 243133, - "uuid": "c854af46-6039-5fa5-905f-5a33d10f8f8a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.811470Z", - "extension": "png", - "id": "b41eaaa0-1eab-48c6-b0fa-1a34f6483cdc", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-07T09:10:32Z", - "name": "Screenshot 2025-11-07 at 1.10.26 AM", - "sd_path": { - "Content": { - "content_id": "c854af46-6039-5fa5-905f-5a33d10f8f8a" - } - }, - "sidecars": [], - "size": 243133, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b1caa06f545cf555", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.509370Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.509370Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 1431, - "uuid": "981ee58c-84fa-594c-9ab7-4ec830b116c2" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.814549Z", - "extension": "py", - "id": "bbff348a-c7dd-46a7-ae91-1683887f6083", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-16T21:37:44Z", - "name": "tax_utils", - "sd_path": { - "Content": { - "content_id": "981ee58c-84fa-594c-9ab7-4ec830b116c2" - } - }, - "sidecars": [], - "size": 1431, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "41bd2c25822150d5", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.271603Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.271603Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 120513, - "uuid": "f95d6c5c-d4cd-5ccc-be0f-6875c7be8719" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.806589Z", - "extension": "png", - "id": "beda6af8-3df4-4433-a1fa-885e3b9c2395", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-04T01:28:05Z", - "name": "Screenshot 2025-11-03 at 5.28.00 PM", - "sd_path": { - "Content": { - "content_id": "f95d6c5c-d4cd-5ccc-be0f-6875c7be8719" - } - }, - "sidecars": [], - "size": 120513, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "dc5adf06a610f1ec", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.477707Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.477708Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 13048132, - "uuid": "48a7a6db-18c3-573a-a07f-510cbb6e8c0d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.813402Z", - "extension": "png", - "id": "beecd360-dad5-46a0-b1b5-0625f7a0568d", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-09T07:08:46Z", - "name": "IMG_0347", - "sd_path": { - "Content": { - "content_id": "48a7a6db-18c3-573a-a07f-510cbb6e8c0d" - } - }, - "sidecars": [], - "size": 13048132, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "4b0f0d71d017bdc5", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.369043Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.369043Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 362192, - "uuid": "a661716c-8b94-5b5c-af0c-353a48a216a8" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.809888Z", - "extension": "png", - "id": "bffd6864-42fb-43d2-8d1a-3cb5a59f4d81", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-02T01:43:43Z", - "name": "Screenshot 2025-11-01 at 6.43.38 PM", - "sd_path": { - "Content": { - "content_id": "a661716c-8b94-5b5c-af0c-353a48a216a8" - } - }, - "sidecars": [], - "size": 362192, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e8777b01b4683f90", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.438983Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.438983Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 310630, - "uuid": "5446403b-4fc0-5c7a-8024-9b7283dc5bbd" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.812217Z", - "extension": "png", - "id": "c455563f-f434-463f-ade1-f1eaba7cb4ee", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-06T01:11:36Z", - "name": "Screenshot 2025-11-05 at 5.11.30 PM", - "sd_path": { - "Content": { - "content_id": "5446403b-4fc0-5c7a-8024-9b7283dc5bbd" - } - }, - "sidecars": [], - "size": 310630, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "392cd724101204e8", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.324933Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.324933Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3063214, - "uuid": "7f968b47-0a27-5a57-9e55-70f0454e65b9" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.808530Z", - "extension": "png", - "id": "c9bf5bd4-0d6b-4b48-a1de-d6fd8035ced6", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-08T13:45:00Z", - "name": "Screenshot 2025-11-08 at 5.44.54 AM", - "sd_path": { - "Content": { - "content_id": "7f968b47-0a27-5a57-9e55-70f0454e65b9" - } - }, - "sidecars": [], - "size": 3063214, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "aa57877bc57772d6", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.540100Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.540100Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 19709, - "uuid": "6e7eb2fe-f92a-5953-b8d8-6f3cb2d4efaf" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.815742Z", - "extension": "py", - "id": "cb866e47-5b1c-46da-869c-f20723461dc3", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-19T03:14:38Z", - "name": "main", - "sd_path": { - "Content": { - "content_id": "6e7eb2fe-f92a-5953-b8d8-6f3cb2d4efaf" - } - }, - "sidecars": [], - "size": 19709, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "540b285ef2ed8275", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.533420Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.533420Z", - "mime_type_id": 15, - "text_content": null, - "total_size": 1450, - "uuid": "abd2583a-3ca7-5eb6-819b-042895cf93a9" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.815435Z", - "extension": "csv", - "id": "d2512c1c-4c6d-4e9c-891e-8fc70dd2900c", - "is_local": false, - "kind": { - "File": { - "extension": "csv" - } - }, - "modified_at": "2025-10-27T04:32:50Z", - "name": "2024_income_breakdown", - "sd_path": { - "Content": { - "content_id": "abd2583a-3ca7-5eb6-819b-042895cf93a9" - } - }, - "sidecars": [], - "size": 1450, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "73116f15be09a92b", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.375681Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.375681Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 42980, - "uuid": "03be2b88-2b50-573e-aff2-073f703ebb36" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.810128Z", - "extension": "png", - "id": "d3b18399-1ba2-40af-a3ea-7a57ca287729", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-11T17:32:18Z", - "name": "Screenshot 2025-10-11 at 10.32.12 AM", - "sd_path": { - "Content": { - "content_id": "03be2b88-2b50-573e-aff2-073f703ebb36" - } - }, - "sidecars": [], - "size": 42980, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "292663fbdaa5db55", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.359656Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.359656Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 239688, - "uuid": "7736e194-d190-5766-b50d-8b32659af154" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.809599Z", - "extension": "png", - "id": "d4119c50-665f-49fe-a6a9-6e6209f631b0", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-04T13:13:54Z", - "name": "Screenshot 2025-11-04 at 5.13.49 AM", - "sd_path": { - "Content": { - "content_id": "7736e194-d190-5766-b50d-8b32659af154" - } - }, - "sidecars": [], - "size": 239688, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "94ef9581fca63afa", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.262201Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.262201Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 81502, - "uuid": "009209ac-e546-59a9-9bf3-b00d9b00d263" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.806187Z", - "extension": "png", - "id": "d63a61f8-e7fc-4278-a4ad-050f8ec5aed2", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-04T22:53:02Z", - "name": "Screenshot 2025-10-04 at 3.52.57 PM", - "sd_path": { - "Content": { - "content_id": "009209ac-e546-59a9-9bf3-b00d9b00d263" - } - }, - "sidecars": [], - "size": 81502, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "8e5ee713c0be6f5f", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.432320Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.432320Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 298445, - "uuid": "6288d600-c0c8-51a7-9a37-ada890ed7553" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.812032Z", - "extension": "png", - "id": "d810db55-b4e2-4817-a7d4-6cf5b920a857", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-05T03:16:45Z", - "name": "Screenshot 2025-11-04 at 7.16.42 PM", - "sd_path": { - "Content": { - "content_id": "6288d600-c0c8-51a7-9a37-ada890ed7553" - } - }, - "sidecars": [], - "size": 298445, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "518c51e8f08bb19c", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.559261Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.559261Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3544, - "uuid": "7d466393-df3d-54ba-9d7c-053d2ef7a0f5" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.816329Z", - "extension": "png", - "id": "da05b83b-03fb-4a96-9fdc-7eee9fd67156", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T01:20:57Z", - "name": "Screenshot 2025-09-26 at 6.20.53 PM", - "sd_path": { - "Content": { - "content_id": "7d466393-df3d-54ba-9d7c-053d2ef7a0f5" - } - }, - "sidecars": [], - "size": 3544, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "2e21ea7df3e3c7d1", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.515149Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.515149Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 17565, - "uuid": "9831158f-cbf2-5f32-9b11-1decbbe81512" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.814747Z", - "extension": "py", - "id": "da096573-5c82-423f-888a-ebedbac82cf0", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-17T01:07:46Z", - "name": "tax_calculator", - "sd_path": { - "Content": { - "content_id": "9831158f-cbf2-5f32-9b11-1decbbe81512" - } - }, - "sidecars": [], - "size": 17565, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "4063b3abd1960251", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.552989Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.552990Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 64934, - "uuid": "bfcb1a51-efef-563a-850e-606f88f1f9a6" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.816126Z", - "extension": "png", - "id": "dff84031-edf3-4775-a462-6073525d405e", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T03:56:29Z", - "name": "Screenshot 2025-09-26 at 8.55.51 PM", - "sd_path": { - "Content": { - "content_id": "bfcb1a51-efef-563a-850e-606f88f1f9a6" - } - }, - "sidecars": [], - "size": 64934, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "a511b3ecebbc1007", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.398136Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.398136Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 110053, - "uuid": "d47c62b5-1d9c-5ac9-854b-8913cdcedd91" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.810869Z", - "extension": "png", - "id": "e1d4f644-ef25-4f88-8deb-9a055cb32dcd", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-11T14:27:05Z", - "name": "Screenshot 2025-10-11 at 7.26.59 AM", - "sd_path": { - "Content": { - "content_id": "d47c62b5-1d9c-5ac9-854b-8913cdcedd91" - } - }, - "sidecars": [], - "size": 110053, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "fe31271cdda16861", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.490082Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.490082Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 159094, - "uuid": "64578c9c-0c8d-5916-834f-0a5104c1590c" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.813838Z", - "extension": "png", - "id": "e8975970-4c48-457f-b443-3207e94b044a", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T02:03:34Z", - "name": "Screenshot 2025-10-25 at 7.03.28 PM", - "sd_path": { - "Content": { - "content_id": "64578c9c-0c8d-5916-834f-0a5104c1590c" - } - }, - "sidecars": [], - "size": 159094, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "aecb1e9596fe29e8", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.413738Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.413738Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 693384, - "uuid": "4c8dce07-eebe-56dc-82ef-cdaa96e2b13f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.811375Z", - "extension": "png", - "id": "eb6db5cf-e853-4af4-8472-1d2c8d218121", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-11T13:00:35Z", - "name": "Screenshot 2025-10-11 at 6.00.30 AM", - "sd_path": { - "Content": { - "content_id": "4c8dce07-eebe-56dc-82ef-cdaa96e2b13f" - } - }, - "sidecars": [], - "size": 693384, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "f8ac7efdd6821d72", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.290413Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.290413Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 11875223, - "uuid": "0494b036-5a63-53c2-af8d-4924d4d6100c" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.807288Z", - "extension": "png", - "id": "ec69c675-af18-4c13-822d-23f34b1cff2c", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-30T06:42:37Z", - "name": "Screenshot 2025-10-29 at 11.42.31 PM", - "sd_path": { - "Content": { - "content_id": "0494b036-5a63-53c2-af8d-4924d4d6100c" - } - }, - "sidecars": [], - "size": 11875223, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "c374fea0710bde61", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.315387Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.315387Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 420380, - "uuid": "7b41885f-1565-543a-88b2-a89c04893388" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.808111Z", - "extension": "png", - "id": "f0857d4b-7247-41d4-8087-445a399bdf96", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-24T01:10:14Z", - "name": "Screenshot 2025-10-23 at 6.10.08 PM", - "sd_path": { - "Content": { - "content_id": "7b41885f-1565-543a-88b2-a89c04893388" - } - }, - "sidecars": [], - "size": 420380, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "f892827d2e5521b9", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.480736Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.480736Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 202977, - "uuid": "44de9517-b6be-54c9-9f37-d3a57750e6a6" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.813555Z", - "extension": "png", - "id": "f4c45a77-b5e3-4f2f-a878-2d8aa09c9f14", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-30T02:40:53Z", - "name": "Screenshot 2025-09-29 at 7.40.40 PM", - "sd_path": { - "Content": { - "content_id": "44de9517-b6be-54c9-9f37-d3a57750e6a6" - } - }, - "sidecars": [], - "size": 202977, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "825b3b9fc5aae17d", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.362771Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.362771Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 2933730, - "uuid": "7a7c6c46-d459-577b-a952-96ae9c1de7ca" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.809697Z", - "extension": "mov", - "id": "f5e1e7e0-9df9-41e7-81c3-c985b9936fa2", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-13T06:55:54Z", - "name": "Screen Recording 2025-10-12 at 11.55.35 PM", - "sd_path": { - "Content": { - "content_id": "7a7c6c46-d459-577b-a952-96ae9c1de7ca" - } - }, - "sidecars": [], - "size": 2933730, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "78ed1106eb545ee1", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.502863Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.502863Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 26583, - "uuid": "ba65e5e5-626f-5712-b84a-5d2741e809ff" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.814337Z", - "extension": "py", - "id": "f67bd292-6f72-4803-82e1-2675e75d5197", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-19T04:39:19Z", - "name": "email_parser", - "sd_path": { - "Content": { - "content_id": "ba65e5e5-626f-5712-b84a-5d2741e809ff" - } - }, - "sidecars": [], - "size": 26583, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d950c71892eb3c80", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.284089Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.284089Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1572598, - "uuid": "54f84137-04f1-52f4-bd78-9f840ad236c5" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.807033Z", - "extension": "png", - "id": "f68a30a4-1fb9-4a24-ada0-de52acedcc7a", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-07T09:28:10Z", - "name": "Screenshot 2025-11-07 at 1.28.04 AM", - "sd_path": { - "Content": { - "content_id": "54f84137-04f1-52f4-bd78-9f840ad236c5" - } - }, - "sidecars": [], - "size": 1572598, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "8d936ad9fc717ebc", - "entry_count": 2, - "first_seen_at": "2025-11-11T05:37:00.127569Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.252872Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1124381, - "uuid": "8adc49a2-1b44-5232-a62a-b17cae8b897d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.805788Z", - "extension": "png", - "id": "f7947d39-ead5-4efc-b454-0b84a6577b7f", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T04:18:33Z", - "name": "Screenshot 2025-10-12 at 9.18.32 PM (2)", - "sd_path": { - "Content": { - "content_id": "8adc49a2-1b44-5232-a62a-b17cae8b897d" - } - }, - "sidecars": [], - "size": 1124381, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "55c70be4b4891c98", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.474522Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.474523Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 379061, - "uuid": "ebf7047d-4142-57f0-91ed-471989c3a976" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.813315Z", - "extension": "png", - "id": "fda0b5e2-187a-4a8e-81c4-ead103b2a9e3", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-27T05:19:24Z", - "name": "Screenshot 2025-10-26 at 10.19.18 PM", - "sd_path": { - "Content": { - "content_id": "ebf7047d-4142-57f0-91ed-471989c3a976" - } - }, - "sidecars": [], - "size": 379061, - "tags": [] - } - ], - [ - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "a03ceb99e09ff5fd", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.637674Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.637674Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 133482, - "uuid": "4a46d721-0068-54f2-a88c-897c8a997244" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.817274Z", - "extension": "png", - "id": "14a8bc9b-27f5-4f3d-945f-4017ff408c0d", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-16T13:08:44Z", - "name": "Screenshot 2025-10-16 at 6.08.39 AM", - "sd_path": { - "Content": { - "content_id": "4a46d721-0068-54f2-a88c-897c8a997244" - } - }, - "sidecars": [], - "size": 133482, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5982adfd27bea679", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.681718Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.681718Z", - "mime_type_id": 14, - "text_content": null, - "total_size": 708993, - "uuid": "baf6dc6f-1839-5452-bd29-3e019fc325a2" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.819321Z", - "extension": "json", - "id": "1674a2ed-b661-49d4-8349-2f8847c85147", - "is_local": false, - "kind": { - "File": { - "extension": "json" - } - }, - "modified_at": "2025-07-16T20:36:53Z", - "name": "package-lock", - "sd_path": { - "Content": { - "content_id": "baf6dc6f-1839-5452-bd29-3e019fc325a2" - } - }, - "sidecars": [], - "size": 708993, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e5932b85d71a7074", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.709740Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.709740Z", - "mime_type_id": 19, - "text_content": null, - "total_size": 231, - "uuid": "b4268bb4-27b1-5745-8177-8adbc2d1223e" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.820539Z", - "extension": "js", - "id": "1ba5030b-951a-4bfa-8169-f1bed07b48ac", - "is_local": false, - "kind": { - "File": { - "extension": "js" - } - }, - "modified_at": "2025-04-16T13:28:18Z", - "name": "index", - "sd_path": { - "Content": { - "content_id": "b4268bb4-27b1-5745-8177-8adbc2d1223e" - } - }, - "sidecars": [], - "size": 231, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "51677af6c6f0e3e9", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.647322Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.647322Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1674604, - "uuid": "39255ffb-dbbb-5c98-a2d1-164ebefd0be8" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.817684Z", - "extension": "png", - "id": "2435e7d8-1d12-416e-a70c-3f5e9e15ad3c", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T12:02:38Z", - "name": "Screenshot 2025-09-27 at 5.02.26 AM", - "sd_path": { - "Content": { - "content_id": "39255ffb-dbbb-5c98-a2d1-164ebefd0be8" - } - }, - "sidecars": [], - "size": 1674604, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d5cd741a5fa3e076", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.659912Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.659912Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3544, - "uuid": "5f182bdf-492b-5331-9132-d24405fd9f27" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.818328Z", - "extension": "png", - "id": "35687d78-080f-4e09-9ed1-c4810bdd2c65", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T01:21:02Z", - "name": "Screenshot 2025-09-26 at 6.20.56 PM", - "sd_path": { - "Content": { - "content_id": "5f182bdf-492b-5331-9132-d24405fd9f27" - } - }, - "sidecars": [], - "size": 3544, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e97bc801f42d5ee9", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.672071Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.672072Z", - "mime_type_id": 8, - "text_content": null, - "total_size": 1802240, - "uuid": "491766b9-0901-54d2-8237-7e6d5517bc6b" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.818782Z", - "extension": "db", - "id": "386be078-0562-40bf-b618-31d0ba47ffdc", - "is_local": false, - "kind": { - "File": { - "extension": "db" - } - }, - "modified_at": "2025-10-23T02:47:28Z", - "name": "database", - "sd_path": { - "Content": { - "content_id": "491766b9-0901-54d2-8237-7e6d5517bc6b" - } - }, - "sidecars": [], - "size": 1802240, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "1241d430cbb99306", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.694376Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.694376Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 234, - "uuid": "823c6a24-03ea-51a0-80ee-e601afb15795" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.819827Z", - "extension": "py", - "id": "3aae031b-7ae2-4982-9e75-fe8f9f4cb296", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-18T17:33:19Z", - "name": "thresholds", - "sd_path": { - "Content": { - "content_id": "823c6a24-03ea-51a0-80ee-e601afb15795" - } - }, - "sidecars": [], - "size": 234, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "321348226a2a9bde", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.668961Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.668961Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 152583369, - "uuid": "6ab352a1-c9e5-598c-8b66-420cb56ec070" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.818660Z", - "extension": "mov", - "id": "3da40fa2-eef7-4367-852a-21b0e6f7b393", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-21T17:20:29Z", - "name": "Screen Recording 2025-10-21 at 10.20.09 AM", - "sd_path": { - "Content": { - "content_id": "6ab352a1-c9e5-598c-8b66-420cb56ec070" - } - }, - "sidecars": [], - "size": 152583369, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "6c5d491edf11bf2d", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.621468Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.621468Z", - "mime_type_id": 17, - "text_content": null, - "total_size": 32768, - "uuid": "91ceb9da-44af-5fb1-bad1-eb721bb6f4d2" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.816627Z", - "extension": "db-shm", - "id": "4124d06f-d4cf-4211-9800-4221f7f578ab", - "is_local": false, - "kind": { - "File": { - "extension": "db-shm" - } - }, - "modified_at": "2025-10-23T02:47:33Z", - "name": "database", - "sd_path": { - "Content": { - "content_id": "91ceb9da-44af-5fb1-bad1-eb721bb6f4d2" - } - }, - "sidecars": [], - "size": 32768, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5df7c88a56dade31", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.719679Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.719679Z", - "mime_type_id": 19, - "text_content": null, - "total_size": 5581, - "uuid": "8daeb3df-6a9d-5f12-b28c-b27d1929f725" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.820815Z", - "extension": "js", - "id": "4c8febd0-1f6d-48b3-bbc9-b3522d4828c1", - "is_local": false, - "kind": { - "File": { - "extension": "js" - } - }, - "modified_at": "2025-04-19T04:39:43Z", - "name": "ReceiptIcon", - "sd_path": { - "Content": { - "content_id": "8daeb3df-6a9d-5f12-b28c-b27d1929f725" - } - }, - "sidecars": [], - "size": 5581, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "8132b840c51a1029", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.618086Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.618086Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 4676487, - "uuid": "b25f3c31-e98d-5fb2-bd39-17bf53ae083c" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.816536Z", - "extension": "png", - "id": "5550c31d-76c0-4d36-be90-21deba131b15", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-15T06:30:58Z", - "name": "Screenshot 2025-10-14 at 11.30.52 PM (2)", - "sd_path": { - "Content": { - "content_id": "b25f3c31-e98d-5fb2-bd39-17bf53ae083c" - } - }, - "sidecars": [], - "size": 4676487, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "0605ca4398566349", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.662914Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.662914Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 112679, - "uuid": "c71b755c-d369-5c55-883c-8357c08e734c" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.818441Z", - "extension": "png", - "id": "5b007485-b721-4044-ba71-c30889ef5519", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T08:17:52Z", - "name": "Screenshot 2025-09-27 at 1.17.46 AM", - "sd_path": { - "Content": { - "content_id": "c71b755c-d369-5c55-883c-8357c08e734c" - } - }, - "sidecars": [], - "size": 112679, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "31af49cbd1820aa5", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.650301Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.650301Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 56328, - "uuid": "6dfacae0-cdc7-53b5-970f-aa8d9b28cf46" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.817828Z", - "extension": "png", - "id": "603dfde7-7c3a-42ef-aa74-eb636c5d14a8", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T01:07:21Z", - "name": "Screenshot 2025-09-26 at 6.00.07 PM", - "sd_path": { - "Content": { - "content_id": "6dfacae0-cdc7-53b5-970f-aa8d9b28cf46" - } - }, - "sidecars": [], - "size": 56328, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "dfd30ea874c512c3", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.627986Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.627986Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 430386, - "uuid": "44549de9-0a59-5020-85c5-b18bfcc05938" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.816914Z", - "extension": "png", - "id": "626e18de-b425-4581-abd5-40f27e55ec13", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-16T12:12:04Z", - "name": "Screenshot 2025-10-16 at 5.11.58 AM", - "sd_path": { - "Content": { - "content_id": "44549de9-0a59-5020-85c5-b18bfcc05938" - } - }, - "sidecars": [], - "size": 430386, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "16d620996dbf915b", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.631317Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.631317Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 284761, - "uuid": "86f82cfc-4108-53c4-b9d3-f37f808e1996" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.817008Z", - "extension": "png", - "id": "64817a89-887a-4033-9c02-0370f7954427", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T01:21:10Z", - "name": "Screenshot 2025-09-26 at 6.21.04 PM", - "sd_path": { - "Content": { - "content_id": "86f82cfc-4108-53c4-b9d3-f37f808e1996" - } - }, - "sidecars": [], - "size": 284761, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b9bf27f6719d5773", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.716441Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.716441Z", - "mime_type_id": 19, - "text_content": null, - "total_size": 9574, - "uuid": "7835e94b-6a71-54c3-b945-bf35c3ab3785" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.820727Z", - "extension": "js", - "id": "6527c3f5-1b72-4999-9d49-c3885a3b8647", - "is_local": false, - "kind": { - "File": { - "extension": "js" - } - }, - "modified_at": "2025-04-19T04:08:22Z", - "name": "StatementViewer", - "sd_path": { - "Content": { - "content_id": "7835e94b-6a71-54c3-b945-bf35c3ab3785" - } - }, - "sidecars": [], - "size": 9574, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "8f9ca59b0ef3b99d", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.706422Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.706422Z", - "mime_type_id": 18, - "text_content": null, - "total_size": 894, - "uuid": "40b5c6cf-0151-596a-82e4-8b6b119b7edd" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.820438Z", - "extension": "html", - "id": "659fb6c7-b968-4195-bded-71e7e1caf1e1", - "is_local": false, - "kind": { - "File": { - "extension": "html" - } - }, - "modified_at": "2025-04-16T13:31:20Z", - "name": "index", - "sd_path": { - "Content": { - "content_id": "40b5c6cf-0151-596a-82e4-8b6b119b7edd" - } - }, - "sidecars": [], - "size": 894, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "cdeb49fd7495f86e", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.665831Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.665831Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 389581, - "uuid": "0ae5e3ad-3311-5502-bd85-2b6dd122f0dc" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.818563Z", - "extension": "png", - "id": "6d1a5a78-10da-4d75-8ce1-4fdae1b05a8b", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T01:20:41Z", - "name": "Screenshot 2025-09-26 at 6.20.35 PM", - "sd_path": { - "Content": { - "content_id": "0ae5e3ad-3311-5502-bd85-2b6dd122f0dc" - } - }, - "sidecars": [], - "size": 389581, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b186ba77c926b46d", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.641150Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.641150Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 5964675, - "uuid": "62cbdbb2-c8e2-5dd2-9123-a5c9bde85bfe" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.817412Z", - "extension": "png", - "id": "6da194c9-5dff-41ea-91da-b532464e31fd", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-28T23:49:58Z", - "name": "Screenshot 2025-09-28 at 4.49.52 PM", - "sd_path": { - "Content": { - "content_id": "62cbdbb2-c8e2-5dd2-9123-a5c9bde85bfe" - } - }, - "sidecars": [], - "size": 5964675, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "84d9a66e7359ab58", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.687845Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.687845Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 394, - "uuid": "cf699502-4729-59c2-a94c-15cf78600296" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.819609Z", - "extension": "py", - "id": "71e0c133-ee67-4af8-8f8e-980d1ad75bbd", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-18T17:38:00Z", - "name": "patterns", - "sd_path": { - "Content": { - "content_id": "cf699502-4729-59c2-a94c-15cf78600296" - } - }, - "sidecars": [], - "size": 394, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "23f167c9aa3562ba", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.634420Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.634420Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1381931, - "uuid": "34b34226-d6b2-5d21-beca-416585ad46bc" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.817143Z", - "extension": "png", - "id": "745aed1d-b318-4405-89c1-daebd971fc6d", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-15T06:30:58Z", - "name": "Screenshot 2025-10-14 at 11.30.52 PM", - "sd_path": { - "Content": { - "content_id": "34b34226-d6b2-5d21-beca-416585ad46bc" - } - }, - "sidecars": [], - "size": 1381931, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "9c43bf24c6916491", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.700281Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.700281Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 454, - "uuid": "218f58ba-819f-59d4-bdf5-4c2c6158f578" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.820081Z", - "extension": "py", - "id": "78900335-a71f-4b48-9eec-057994ed4cfd", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-18T17:38:47Z", - "name": "__init__", - "sd_path": { - "Content": { - "content_id": "218f58ba-819f-59d4-bdf5-4c2c6158f578" - } - }, - "sidecars": [], - "size": 454, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3e130b974d3004e3", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.703093Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.703093Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 469, - "uuid": "b64e9f29-ccb0-5391-97ba-e101cb5026d2" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.820173Z", - "extension": "py", - "id": "7fe8fa4e-c65d-4883-a5a9-557139f16c29", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-18T17:43:17Z", - "name": "column_ranges", - "sd_path": { - "Content": { - "content_id": "b64e9f29-ccb0-5391-97ba-e101cb5026d2" - } - }, - "sidecars": [], - "size": 469, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "55d821f3663ec7ab", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.675208Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.675208Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 41275, - "uuid": "56ae4ee6-d1a8-5af0-a047-e0cc7e713752" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.818873Z", - "extension": "png", - "id": "866505ef-4e37-4138-bf3c-ae001d26038f", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T14:50:23Z", - "name": "Google_2015_logo.svg", - "sd_path": { - "Content": { - "content_id": "56ae4ee6-d1a8-5af0-a047-e0cc7e713752" - } - }, - "sidecars": [], - "size": 41275, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "71e0a99173564931", - "entry_count": 2, - "first_seen_at": "2025-11-11T05:36:59.879518Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.622176Z", - "mime_type_id": 3, - "text_content": null, - "total_size": 0, - "uuid": "d81346b6-44c9-511d-b949-ee43e49e20f5" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.816722Z", - "extension": "db-wal", - "id": "8a49d022-9ba8-4f1b-a499-064b25d99d5d", - "is_local": false, - "kind": { - "File": { - "extension": "db-wal" - } - }, - "modified_at": "2025-10-23T02:47:33Z", - "name": "database", - "sd_path": { - "Content": { - "content_id": "d81346b6-44c9-511d-b949-ee43e49e20f5" - } - }, - "sidecars": [], - "size": 0, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b7690e2b29b11b4c", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.697368Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.697368Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 142, - "uuid": "ecdc1680-fb9c-5a4b-b205-6ff907656225" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.819961Z", - "extension": "py", - "id": "8ad0f17e-7203-4f34-b562-2bfa23925c79", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-18T17:29:56Z", - "name": "header_words", - "sd_path": { - "Content": { - "content_id": "ecdc1680-fb9c-5a4b-b205-6ff907656225" - } - }, - "sidecars": [], - "size": 142, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "459483affdc22c7f", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.684797Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.684797Z", - "mime_type_id": 14, - "text_content": null, - "total_size": 1012, - "uuid": "4926d010-49a2-53d9-af7f-851e905828ce" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.819435Z", - "extension": "json", - "id": "97e64b60-d992-4e91-8901-30f2c5780a04", - "is_local": false, - "kind": { - "File": { - "extension": "json" - } - }, - "modified_at": "2025-04-16T13:40:09Z", - "name": "package", - "sd_path": { - "Content": { - "content_id": "4926d010-49a2-53d9-af7f-851e905828ce" - } - }, - "sidecars": [], - "size": 1012, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d9e71469bdd716bc", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.678395Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.678395Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 829, - "uuid": "25d4edf1-396e-5125-83fe-7770fdc428ad" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.819181Z", - "extension": "md", - "id": "9ecc7e84-4151-47ff-8041-2a64dee28d36", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-04-16T13:40:09Z", - "name": "README", - "sd_path": { - "Content": { - "content_id": "25d4edf1-396e-5125-83fe-7770fdc428ad" - } - }, - "sidecars": [], - "size": 829, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ec4451bbf1cb2bcb", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.691274Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.691274Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 364, - "uuid": "9fe7924c-0f37-581e-8dcf-1297e0b91600" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.819719Z", - "extension": "py", - "id": "a16acf82-9611-4bf0-aabb-83b0ce45f5ca", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-18T18:14:15Z", - "name": "proximity_thresholds", - "sd_path": { - "Content": { - "content_id": "9fe7924c-0f37-581e-8dcf-1297e0b91600" - } - }, - "sidecars": [], - "size": 364, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d9fc9133c3547444", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.713143Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.713143Z", - "mime_type_id": 19, - "text_content": null, - "total_size": 7156, - "uuid": "d9c2a9dc-8377-5ac7-a013-860f113bd027" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.820637Z", - "extension": "js", - "id": "a9b573ef-d2e0-4222-968a-d697296f299c", - "is_local": false, - "kind": { - "File": { - "extension": "js" - } - }, - "modified_at": "2025-04-16T22:10:01Z", - "name": "App", - "sd_path": { - "Content": { - "content_id": "d9c2a9dc-8377-5ac7-a013-860f113bd027" - } - }, - "sidecars": [], - "size": 7156, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3e68b3dd07b63b9c", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.653332Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.653332Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3549, - "uuid": "1f7215ea-886d-5e56-bc73-c8019d65335a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.817952Z", - "extension": "png", - "id": "c24b2199-d8ff-4fea-a5ce-599d0ef865be", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-15T07:14:16Z", - "name": "Screenshot 2025-10-15 at 12.14.10 AM", - "sd_path": { - "Content": { - "content_id": "1f7215ea-886d-5e56-bc73-c8019d65335a" - } - }, - "sidecars": [], - "size": 3549, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "f433b47a39b53e7d", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.722705Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.722706Z", - "mime_type_id": 19, - "text_content": null, - "total_size": 11965, - "uuid": "eacfce87-1655-5492-9314-de8372067f4f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.820920Z", - "extension": "js", - "id": "ec49851b-5c61-4fdb-bc0b-a5586c1cf4d5", - "is_local": false, - "kind": { - "File": { - "extension": "js" - } - }, - "modified_at": "2025-04-19T04:12:53Z", - "name": "TaxSummary", - "sd_path": { - "Content": { - "content_id": "eacfce87-1655-5492-9314-de8372067f4f" - } - }, - "sidecars": [], - "size": 11965, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ebf613ef99bd92fb", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.644350Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.644350Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1112244, - "uuid": "31a27de6-7888-5bc4-af22-430145b0e45b" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.817550Z", - "extension": "png", - "id": "f33fa8bc-dca9-4778-8857-a713b9c22705", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T10:00:27Z", - "name": "Screenshot 2025-09-27 at 3.00.21 AM", - "sd_path": { - "Content": { - "content_id": "31a27de6-7888-5bc4-af22-430145b0e45b" - } - }, - "sidecars": [], - "size": 1112244, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "030458e2de24b521", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.625107Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.625107Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 104567, - "uuid": "b941d89c-fc7e-5381-b45e-77c326dbeb98" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.816815Z", - "extension": "png", - "id": "f7d95a84-8637-4cde-bcbe-82c2564ac328", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-28T09:26:03Z", - "name": "Screenshot 2025-09-28 at 2.25.57 AM", - "sd_path": { - "Content": { - "content_id": "b941d89c-fc7e-5381-b45e-77c326dbeb98" - } - }, - "sidecars": [], - "size": 104567, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "c272ea0ef784998e", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.656629Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.656629Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 66583, - "uuid": "b3d940bc-51a6-5d8f-b48b-754950c5a616" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.818054Z", - "extension": "png", - "id": "fa4d22c0-4141-4ef5-b8a4-12fd83c53e15", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T00:46:40Z", - "name": "Screenshot 2025-09-26 at 5.46.35 PM", - "sd_path": { - "Content": { - "content_id": "b3d940bc-51a6-5d8f-b48b-754950c5a616" - } - }, - "sidecars": [], - "size": 66583, - "tags": [] - } - ] -] \ No newline at end of file diff --git a/test_snapshots/events_Discovery.json b/test_snapshots/events_Discovery.json deleted file mode 100644 index a2aea12cf..000000000 --- a/test_snapshots/events_Discovery.json +++ /dev/null @@ -1,3604 +0,0 @@ -[ - [ - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5e0c1fe735efe812", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.024051Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.024051Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 6070, - "uuid": "73fb2cd1-878a-5d9f-bdef-c8e4d17cbf0a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.799988Z", - "extension": "md", - "id": "00d67d0b-fe32-48f2-93a3-0589a59324b6", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T01:45:35Z", - "name": "OPTIONAL_FIELDS_FIX_SUMMARY", - "sd_path": { - "Content": { - "content_id": "73fb2cd1-878a-5d9f-bdef-c8e4d17cbf0a" - } - }, - "sidecars": [], - "size": 6070, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5072e2739a785d6c", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.901394Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.901394Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1019701, - "uuid": "972dad39-4a4d-5b51-b6f2-a86c48d7e1a3" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.795064Z", - "extension": "png", - "id": "01bc8a11-5006-4ecc-bea1-7d0ad2a3c2a4", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T10:35:06Z", - "name": "Screenshot 2025-11-10 at 2.35.01 AM", - "sd_path": { - "Content": { - "content_id": "972dad39-4a4d-5b51-b6f2-a86c48d7e1a3" - } - }, - "sidecars": [], - "size": 1019701, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ffef13d7ef887c9b", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.081687Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.081687Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 98976474, - "uuid": "d810d676-866a-5415-881a-9db18f602ba1" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.801922Z", - "extension": "mov", - "id": "01e8bacc-ec43-45e9-9734-cf6369810888", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-09-29T22:33:13Z", - "name": "Spacedrive v2 development gource 720p", - "sd_path": { - "Content": { - "content_id": "d810d676-866a-5415-881a-9db18f602ba1" - } - }, - "sidecars": [], - "size": 98976474, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "4d35f5f489dc612f", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.030324Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.030324Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 2675005, - "uuid": "e7add570-dd3a-53b9-a8d0-15662f938365" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.800179Z", - "extension": "png", - "id": "04a12b82-c482-4a84-9cf0-c7452b0f1ed0", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-24T01:10:22Z", - "name": "Screenshot 2025-10-23 at 6.10.17 PM", - "sd_path": { - "Content": { - "content_id": "e7add570-dd3a-53b9-a8d0-15662f938365" - } - }, - "sidecars": [], - "size": 2675005, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "fee06ba006c368ee", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.137009Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.137010Z", - "mime_type_id": 4, - "text_content": null, - "total_size": 109472, - "uuid": "d25e79f0-226b-59fa-b526-e4595621358a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.803676Z", - "extension": "pdf", - "id": "09b8625e-23ad-4eac-a4ce-6e00159bcb33", - "is_local": false, - "kind": { - "File": { - "extension": "pdf" - } - }, - "modified_at": "2025-10-04T09:01:37Z", - "name": "OFRELEASEFORM", - "sd_path": { - "Content": { - "content_id": "d25e79f0-226b-59fa-b526-e4595621358a" - } - }, - "sidecars": [], - "size": 109472, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "134db89813515ef7", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.152318Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.152318Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 8463335, - "uuid": "043e5312-8e5b-5277-a2f3-dd38512c3166" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.804238Z", - "extension": "png", - "id": "0a57f942-8ab3-4cc0-a15b-1dd7f1774766", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-08T11:47:27Z", - "name": "Screenshot 2025-10-08 at 4.47.21 AM", - "sd_path": { - "Content": { - "content_id": "043e5312-8e5b-5277-a2f3-dd38512c3166" - } - }, - "sidecars": [], - "size": 8463335, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5c1ae1d33b47bb28", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.943147Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.943147Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 540634, - "uuid": "89e0cf04-d829-5043-ae7c-40a1d70fa503" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.797002Z", - "extension": "png", - "id": "0b8b0d25-761d-490e-aac2-be3e23d5ca49", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-05T00:39:03Z", - "name": "Screenshot 2025-10-04 at 5.38.57 PM", - "sd_path": { - "Content": { - "content_id": "89e0cf04-d829-5043-ae7c-40a1d70fa503" - } - }, - "sidecars": [], - "size": 540634, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "1a8eead8d9c4b387", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.140198Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.140198Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 423276, - "uuid": "a8fbdcad-cd95-5f8a-8f7e-6d4762ed8834" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.803766Z", - "extension": "png", - "id": "1455a41f-e7cc-4976-b8e8-eff6cddb5e00", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T09:42:10Z", - "name": "Grok_Roleplay", - "sd_path": { - "Content": { - "content_id": "a8fbdcad-cd95-5f8a-8f7e-6d4762ed8834" - } - }, - "sidecars": [], - "size": 423276, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "40cb59b6b807b5f4", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.955929Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.955929Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 305447, - "uuid": "dec4b7da-ef03-5322-8036-ff8f4921dd6f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.797458Z", - "extension": "png", - "id": "22b84e73-bf14-49c9-b1ea-e3fc32ca3a8b", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T12:42:51Z", - "name": "Screenshot 2025-10-26 at 5.42.45 AM", - "sd_path": { - "Content": { - "content_id": "dec4b7da-ef03-5322-8036-ff8f4921dd6f" - } - }, - "sidecars": [], - "size": 305447, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b51d2caa1a523ff3", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.161916Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.161916Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 18064, - "uuid": "f5fd316a-faca-55d7-917d-ce52a19fd274" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.804615Z", - "extension": "png", - "id": "241289cd-9197-4fb7-a759-f77a5644f860", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T03:01:31Z", - "name": "Screenshot 2025-10-25 at 8.01.25 PM", - "sd_path": { - "Content": { - "content_id": "f5fd316a-faca-55d7-917d-ce52a19fd274" - } - }, - "sidecars": [], - "size": 18064, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "69ebb4f653fad1de", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.912298Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.912299Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 2286850, - "uuid": "112ffde6-5802-5a9c-972d-a95c59d37fe0" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.795480Z", - "extension": "png", - "id": "266b77f6-b521-4aa1-992d-00ba070271aa", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T10:30:48Z", - "name": "Screenshot 2025-11-10 at 2.30.43 AM", - "sd_path": { - "Content": { - "content_id": "112ffde6-5802-5a9c-972d-a95c59d37fe0" - } - }, - "sidecars": [], - "size": 2286850, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ef5fa5b5d5b073be", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.108404Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.108404Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 2830459, - "uuid": "fcdc3f5a-9638-5ae8-a555-12fa022085e9" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.802768Z", - "extension": "png", - "id": "26bfb77e-9a75-4422-8a7d-af5e45748f2f", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-05T06:20:23Z", - "name": "Screenshot 2025-11-04 at 10.20.17 PM", - "sd_path": { - "Content": { - "content_id": "fcdc3f5a-9638-5ae8-a555-12fa022085e9" - } - }, - "sidecars": [], - "size": 2830459, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e75bc0c568210288", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.149398Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.149398Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 508062, - "uuid": "fa0c1a27-07b4-5e05-b201-0bbae7fbece2" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.804122Z", - "extension": "png", - "id": "2d02f13d-94aa-40ba-8b4f-de4eed2eebfb", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T03:06:42Z", - "name": "Screenshot 2025-10-12 at 8.06.37 PM", - "sd_path": { - "Content": { - "content_id": "fa0c1a27-07b4-5e05-b201-0bbae7fbece2" - } - }, - "sidecars": [], - "size": 508062, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d57c5237e5c8b7d8", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.988139Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.988139Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 16686, - "uuid": "77c6aac3-013e-554c-97a8-c3acea8a2f4e" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.798643Z", - "extension": "png", - "id": "2d3bd2a3-c118-45b3-8632-e9d551aee938", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-14T03:57:54Z", - "name": "Screenshot 2025-10-13 at 8.57.46 PM", - "sd_path": { - "Content": { - "content_id": "77c6aac3-013e-554c-97a8-c3acea8a2f4e" - } - }, - "sidecars": [], - "size": 16686, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "cc9d2dc5460782b4", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.059189Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.059189Z", - "mime_type_id": 7, - "text_content": null, - "total_size": 67690, - "uuid": "fb2cd86d-c2b8-5b2b-943b-0f7af82d0744" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.801164Z", - "extension": "webp", - "id": "2ffd237b-b44b-4898-9ee7-d7d2ea51398f", - "is_local": false, - "kind": { - "File": { - "extension": "webp" - } - }, - "modified_at": "2025-11-05T01:05:43Z", - "name": "1488505642709-michael-blutrich-1.jpeg", - "sd_path": { - "Content": { - "content_id": "fb2cd86d-c2b8-5b2b-943b-0f7af82d0744" - } - }, - "sidecars": [], - "size": 67690, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "bc043e01c040f36f", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.905004Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.905005Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3369794, - "uuid": "d79ae970-6aa2-5277-bf65-baf500a5cd8d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.795222Z", - "extension": "png", - "id": "3406c432-64dc-4caf-a7f0-2ed510afc478", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T10:29:56Z", - "name": "Screenshot 2025-11-10 at 2.29.51 AM", - "sd_path": { - "Content": { - "content_id": "d79ae970-6aa2-5277-bf65-baf500a5cd8d" - } - }, - "sidecars": [], - "size": 3369794, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "f91f3ddcb10a7d92", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.114423Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.114423Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 10407, - "uuid": "685ff2de-f970-5d6b-a0ac-28c31e7a8c31" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.802954Z", - "extension": "md", - "id": "341bba79-58b1-474d-8c8d-57c6056e8e0a", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T01:45:35Z", - "name": "OPTIONAL_FIELDS_COMPLETE_FIX", - "sd_path": { - "Content": { - "content_id": "685ff2de-f970-5d6b-a0ac-28c31e7a8c31" - } - }, - "sidecars": [], - "size": 10407, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b331d8210fa210bf", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.101950Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.101950Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 54420, - "uuid": "1c2f577c-f429-5642-8b8f-3d7f4502aa39" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.802577Z", - "extension": "png", - "id": "345bd7f7-76ed-4017-a47c-f50bbb275b0c", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T06:00:15Z", - "name": "Screenshot 2025-10-25 at 11.00.09 PM", - "sd_path": { - "Content": { - "content_id": "1c2f577c-f429-5642-8b8f-3d7f4502aa39" - } - }, - "sidecars": [], - "size": 54420, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b67f9eb068d87ee3", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.130594Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.130594Z", - "mime_type_id": 4, - "text_content": null, - "total_size": 277829, - "uuid": "7f60ff05-14d3-5873-b7b6-f5f567b1a98f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.803476Z", - "extension": "pdf", - "id": "39a29301-8912-4baa-940e-49850d0e6c1e", - "is_local": false, - "kind": { - "File": { - "extension": "pdf" - } - }, - "modified_at": "2025-10-04T09:11:29Z", - "name": "passport", - "sd_path": { - "Content": { - "content_id": "7f60ff05-14d3-5873-b7b6-f5f567b1a98f" - } - }, - "sidecars": [], - "size": 277829, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e94c93fabbe780c9", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.919191Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.919191Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 2931912, - "uuid": "1dda057d-9700-5e5a-aed7-b0fa1bc74b6d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.795819Z", - "extension": "png", - "id": "3c92f740-02de-4c2e-bdc2-a3edb06805ce", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T10:30:07Z", - "name": "Screenshot 2025-11-10 at 2.30.02 AM", - "sd_path": { - "Content": { - "content_id": "1dda057d-9700-5e5a-aed7-b0fa1bc74b6d" - } - }, - "sidecars": [], - "size": 2931912, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e839057cec29188e", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.146446Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.146446Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 37756828, - "uuid": "72b8a1af-5356-5fcf-a3cc-6f2739e7ce16" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.803975Z", - "extension": "mov", - "id": "3fb5b339-af03-4418-83e9-a5fb759906f1", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-13T06:58:11Z", - "name": "Screen Recording 2025-10-12 at 11.56.56 PM", - "sd_path": { - "Content": { - "content_id": "72b8a1af-5356-5fcf-a3cc-6f2739e7ce16" - } - }, - "sidecars": [], - "size": 37756828, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "71e0a99173564931", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.879518Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.879518Z", - "mime_type_id": 3, - "text_content": null, - "total_size": 0, - "uuid": "d81346b6-44c9-511d-b949-ee43e49e20f5" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.794296Z", - "extension": null, - "id": "438ba404-1d5a-4fd1-bb09-9764087cd9d5", - "is_local": false, - "kind": { - "File": { - "extension": null - } - }, - "modified_at": "2024-08-01T02:16:21Z", - "name": ".localized", - "sd_path": { - "Content": { - "content_id": "d81346b6-44c9-511d-b949-ee43e49e20f5" - } - }, - "sidecars": [], - "size": 0, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "4d9b87d46fd337cb", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.959301Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.959301Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 1960069, - "uuid": "e85919e7-b406-5b88-a885-0ac148d0993b" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.797571Z", - "extension": "jpeg", - "id": "44882ef9-bdb8-48a8-9378-1df5e7851503", - "is_local": false, - "kind": { - "File": { - "extension": "jpeg" - } - }, - "modified_at": "2025-11-09T06:34:06Z", - "name": "IMG_0347", - "sd_path": { - "Content": { - "content_id": "e85919e7-b406-5b88-a885-0ac148d0993b" - } - }, - "sidecars": [], - "size": 1960069, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "c163e3011ba2fe12", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.105156Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.105156Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 1055775, - "uuid": "f859d5ee-fced-56a8-b296-c6f93e6eb3f4" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.802672Z", - "extension": "jpeg", - "id": "4c3df1be-76c5-4d11-ba96-eb545c495e78", - "is_local": false, - "kind": { - "File": { - "extension": "jpeg" - } - }, - "modified_at": "2025-10-26T01:18:08Z", - "name": "IMG_5067", - "sd_path": { - "Content": { - "content_id": "f859d5ee-fced-56a8-b296-c6f93e6eb3f4" - } - }, - "sidecars": [], - "size": 1055775, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "9c74e2d6b7e964bf", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.872514Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.872514Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 843145, - "uuid": "39edacb3-cb59-51a3-989a-a595dc8ec8e8" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.794057Z", - "extension": "png", - "id": "4f817fd2-8b53-4958-b138-64e334d7bdb5", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-11T03:21:56Z", - "name": "Screenshot 2025-11-10 at 7.21.51 PM", - "sd_path": { - "Content": { - "content_id": "39edacb3-cb59-51a3-989a-a595dc8ec8e8" - } - }, - "sidecars": [], - "size": 843145, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5286a5d614bc3957", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.052612Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.052612Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1861693, - "uuid": "6aeb570d-d321-5ecd-bd49-b4af30b2806a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.800908Z", - "extension": "png", - "id": "558e2e9a-6855-44f1-afc5-52d2d1828c83", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T05:16:48Z", - "name": "Screenshot 2025-10-12 at 10.16.40 PM (2)", - "sd_path": { - "Content": { - "content_id": "6aeb570d-d321-5ecd-bd49-b4af30b2806a" - } - }, - "sidecars": [], - "size": 1861693, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "2874ce4dc6d27640", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.868884Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.868884Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 836860, - "uuid": "2488da1c-f9b6-5c9b-8446-8aa68bebaf06" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.793879Z", - "extension": "png", - "id": "58720339-8f04-4328-9582-aec4fded64b4", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-11T03:21:35Z", - "name": "Screenshot 2025-11-10 at 7.21.30 PM", - "sd_path": { - "Content": { - "content_id": "2488da1c-f9b6-5c9b-8446-8aa68bebaf06" - } - }, - "sidecars": [], - "size": 836860, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5bdf3f914d55f636", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.892903Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.892903Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1354091, - "uuid": "b04e1934-7608-5d9b-b43b-adf492845f9d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.794784Z", - "extension": "png", - "id": "5d4c417b-c8eb-4a75-ac8f-abb22e32ae0c", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T01:36:58Z", - "name": "Screenshot 2025-11-09 at 5.36.52 PM (2)", - "sd_path": { - "Content": { - "content_id": "b04e1934-7608-5d9b-b43b-adf492845f9d" - } - }, - "sidecars": [], - "size": 1354091, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "60287d1e5ba9e162", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.049449Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.049449Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 505758, - "uuid": "a3409a9a-2a17-5ee4-93b5-252be0c457ed" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.800812Z", - "extension": "png", - "id": "6055ab2e-a0e8-4744-a40b-b6860c0d817f", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-11T08:19:45Z", - "name": "Screenshot 2025-10-11 at 1.19.39 AM", - "sd_path": { - "Content": { - "content_id": "a3409a9a-2a17-5ee4-93b5-252be0c457ed" - } - }, - "sidecars": [], - "size": 505758, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "696c860be8605b97", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.952450Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.952450Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 222594, - "uuid": "fc53ce17-d6c0-5cd5-bc9e-8fcb678afb93" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.797320Z", - "extension": "png", - "id": "67170b02-8e0d-4914-bc2a-b76acc7838db", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-29T23:36:45Z", - "name": "Screenshot 2025-09-29 at 4.36.39 PM", - "sd_path": { - "Content": { - "content_id": "fc53ce17-d6c0-5cd5-bc9e-8fcb678afb93" - } - }, - "sidecars": [], - "size": 222594, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "0b0be3f043abebc3", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.875962Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.875962Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3278871, - "uuid": "e3edcad6-dc01-5967-a58b-3f2bf80b3e10" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.794192Z", - "extension": "png", - "id": "6b7a1886-aede-4b37-80a2-e3338cc753ae", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T10:31:08Z", - "name": "Screenshot 2025-11-10 at 2.31.03 AM", - "sd_path": { - "Content": { - "content_id": "e3edcad6-dc01-5967-a58b-3f2bf80b3e10" - } - }, - "sidecars": [], - "size": 3278871, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "65ba78be68e3fb6f", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.062355Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.062355Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 1791177, - "uuid": "f7ad31e1-a0c6-5450-ae62-9879ceb8ed7a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.801250Z", - "extension": "jpeg", - "id": "6f8ddad4-36dd-4f95-88ef-9da6b0d4678f", - "is_local": false, - "kind": { - "File": { - "extension": "jpeg" - } - }, - "modified_at": "2025-10-26T01:18:48Z", - "name": "IMG_5114", - "sd_path": { - "Content": { - "content_id": "f7ad31e1-a0c6-5450-ae62-9879ceb8ed7a" - } - }, - "sidecars": [], - "size": 1791177, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "02a66b8a4d462eec", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.068545Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.068545Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 338503, - "uuid": "28c4a735-c0a5-58dc-a535-c7787053f5a7" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.801513Z", - "extension": "png", - "id": "70da1ebd-6bee-48f3-ac5c-4fae5a539dc2", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-04T05:21:41Z", - "name": "Screenshot 2025-10-03 at 10.21.35 PM", - "sd_path": { - "Content": { - "content_id": "28c4a735-c0a5-58dc-a535-c7787053f5a7" - } - }, - "sidecars": [], - "size": 338503, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "88c3d7772de81d2e", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.994782Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.994782Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 2155258, - "uuid": "8fc3c621-9649-5343-acaa-410961722779" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.798876Z", - "extension": "png", - "id": "70dfce32-4d31-4e27-9ccc-e7ac6f981b0b", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-08T11:47:27Z", - "name": "Screenshot 2025-10-08 at 4.47.21 AM (2)", - "sd_path": { - "Content": { - "content_id": "8fc3c621-9649-5343-acaa-410961722779" - } - }, - "sidecars": [], - "size": 2155258, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "c05c8f4c667a702e", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.183888Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.183888Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3091168, - "uuid": "d77d77fb-a82d-56fc-a822-e9c7c51fb93d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.805482Z", - "extension": "png", - "id": "70f060e0-f3e9-4ee3-ab5a-144128c5ac2b", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-07T13:50:54Z", - "name": "Screenshot 2025-11-07 at 5.50.49 AM", - "sd_path": { - "Content": { - "content_id": "d77d77fb-a82d-56fc-a822-e9c7c51fb93d" - } - }, - "sidecars": [], - "size": 3091168, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "a6677dfb2955dd9a", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.117509Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.117509Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 574478, - "uuid": "5cccf265-a75e-5b2e-a352-0c91c5f2cee3" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.803092Z", - "extension": "png", - "id": "727335e4-f98b-4bbe-8e25-e396d0f04614", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T07:09:02Z", - "name": "Screenshot 2025-10-13 at 12.08.57 AM", - "sd_path": { - "Content": { - "content_id": "5cccf265-a75e-5b2e-a352-0c91c5f2cee3" - } - }, - "sidecars": [], - "size": 574478, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "48e8f68c71be313e", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.071868Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.071868Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 2996155, - "uuid": "da6ec071-39c5-5a47-8c78-59efa7f6cdbb" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.801610Z", - "extension": "jpeg", - "id": "73f65098-07c0-46d4-b371-fcad1f38a958", - "is_local": false, - "kind": { - "File": { - "extension": "jpeg" - } - }, - "modified_at": "2025-10-26T04:54:31Z", - "name": "IMG_1946", - "sd_path": { - "Content": { - "content_id": "da6ec071-39c5-5a47-8c78-59efa7f6cdbb" - } - }, - "sidecars": [], - "size": 2996155, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "431166096544893d", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.968651Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.968651Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 4931660, - "uuid": "a772e507-b6a7-5b40-b812-283594dafda3" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.797963Z", - "extension": "png", - "id": "7e76d031-3833-4ad8-90e7-ba3ae0c2ec0c", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-04T08:54:11Z", - "name": "Screenshot 2025-10-04 at 1.54.05 AM", - "sd_path": { - "Content": { - "content_id": "a772e507-b6a7-5b40-b812-283594dafda3" - } - }, - "sidecars": [], - "size": 4931660, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5bafd1f62642c90d", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.004738Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.004738Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 253495, - "uuid": "a77912c0-1f6e-5775-9438-281ea7cdec29" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.799197Z", - "extension": "png", - "id": "7f8d04a5-e53a-4b47-b27a-794ddd28c045", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T01:35:08Z", - "name": "Screenshot 2025-10-25 at 6.35.02 PM", - "sd_path": { - "Content": { - "content_id": "a77912c0-1f6e-5775-9438-281ea7cdec29" - } - }, - "sidecars": [], - "size": 253495, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e6d15410d7a4ee6b", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.971928Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.971928Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 190484568, - "uuid": "334279dc-d6ef-58e4-be23-92a7a790f3c5" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.798073Z", - "extension": "mov", - "id": "806d89f4-b592-4847-95fa-7d373fdf7165", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-14T09:50:28Z", - "name": "Screen Recording 2025-10-14 at 2.48.14 AM", - "sd_path": { - "Content": { - "content_id": "334279dc-d6ef-58e4-be23-92a7a790f3c5" - } - }, - "sidecars": [], - "size": 190484568, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3d0eb96a21120374", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.178122Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.178122Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 9071, - "uuid": "f34b25fd-eb78-5eea-88bd-503dd1c53b8f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.805277Z", - "extension": "md", - "id": "81a4cfd0-a21b-445a-ac7a-76c81e9e0f01", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-04T23:58:01Z", - "name": "REFACTOR_FINAL_STATUS", - "sd_path": { - "Content": { - "content_id": "f34b25fd-eb78-5eea-88bd-503dd1c53b8f" - } - }, - "sidecars": [], - "size": 9071, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d4345f3a68a50a8a", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.121055Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.121055Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1791632, - "uuid": "469ef39b-e34a-5d65-9405-4a8d4eefd837" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.803190Z", - "extension": "png", - "id": "84c6f520-a322-4a52-a492-ad467e3aadb0", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-07T09:28:02Z", - "name": "Screenshot 2025-11-07 at 1.27.57 AM", - "sd_path": { - "Content": { - "content_id": "469ef39b-e34a-5d65-9405-4a8d4eefd837" - } - }, - "sidecars": [], - "size": 1791632, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "84e43d43fee7f5c9", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.975563Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.975563Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 364860, - "uuid": "91fa01bc-79e6-5ccb-b03e-0c5e7cdcec91" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.798190Z", - "extension": "png", - "id": "84c952a9-f4ae-4ee7-be24-ffef1370f246", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-02T01:56:33Z", - "name": "Screenshot 2025-11-01 at 6.56.27 PM", - "sd_path": { - "Content": { - "content_id": "91fa01bc-79e6-5ccb-b03e-0c5e7cdcec91" - } - }, - "sidecars": [], - "size": 364860, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "cdac6b04d7ac9a19", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.020889Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.020890Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1278809, - "uuid": "2ef3f34c-bb25-50fe-b53c-5029996e58c6" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.799881Z", - "extension": "png", - "id": "856b0214-2d2c-4525-b7b4-f5f3d7b0fd0f", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-06T03:00:58Z", - "name": "Screenshot 2025-11-05 at 7.00.54 PM", - "sd_path": { - "Content": { - "content_id": "2ef3f34c-bb25-50fe-b53c-5029996e58c6" - } - }, - "sidecars": [], - "size": 1278809, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "a193abc57e634ab0", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.143463Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.143463Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1437506, - "uuid": "b9572f87-54c3-56ae-b128-f2c4b848d5bf" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.803874Z", - "extension": "png", - "id": "88640414-cfef-4cb5-af01-f70587bee149", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-04T04:58:01Z", - "name": "Screenshot 2025-10-03 at 9.58.01 PM", - "sd_path": { - "Content": { - "content_id": "b9572f87-54c3-56ae-b128-f2c4b848d5bf" - } - }, - "sidecars": [], - "size": 1437506, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5e08aef66449bd1d", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.897581Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.897581Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 24532, - "uuid": "cad4b99e-44a9-56e1-9b0e-59ea9ea6a030" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.794880Z", - "extension": "png", - "id": "88f75c04-ce41-4340-97b1-9d259f76c530", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T12:57:30Z", - "name": "Screenshot 2025-11-10 at 4.56.29 AM", - "sd_path": { - "Content": { - "content_id": "cad4b99e-44a9-56e1-9b0e-59ea9ea6a030" - } - }, - "sidecars": [], - "size": 24532, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "cf2d6cc9dbed38a8", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.078482Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.078483Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 145193, - "uuid": "a6d8e44b-b7d1-5a5a-a2ad-b437d860fcd3" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.801825Z", - "extension": "png", - "id": "8c57df9e-ddf8-4d46-8180-754afcb1c86c", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-08T02:11:30Z", - "name": "FEEBE2D5-B13D-4FD8-B8E7-3C23CC028809", - "sd_path": { - "Content": { - "content_id": "a6d8e44b-b7d1-5a5a-a2ad-b437d860fcd3" - } - }, - "sidecars": [], - "size": 145193, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b011a458eaa01f35", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.124484Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.124484Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1140110, - "uuid": "e17567a2-c1db-5a5a-be6d-f5b5e692d657" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.803284Z", - "extension": "png", - "id": "8cd7641a-7f0a-4f8a-abc2-476fa063b476", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-30T06:28:31Z", - "name": "Screenshot 2025-10-29 at 11.28.25 PM", - "sd_path": { - "Content": { - "content_id": "e17567a2-c1db-5a5a-be6d-f5b5e692d657" - } - }, - "sidecars": [], - "size": 1140110, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "9d9e55b929719051", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.171856Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.171856Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 41613, - "uuid": "4ea55e3c-2e4e-516f-a38b-abe88e3ca454" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.805065Z", - "extension": "png", - "id": "8dacb764-6d37-40d0-9f37-e9468acca652", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-11T11:06:40Z", - "name": "Screenshot 2025-10-11 at 4.06.34 AM", - "sd_path": { - "Content": { - "content_id": "4ea55e3c-2e4e-516f-a38b-abe88e3ca454" - } - }, - "sidecars": [], - "size": 41613, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "16f8e245554535a4", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.165047Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.165047Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 50579, - "uuid": "cb2bcb06-8bd0-5ab6-b0aa-d120909214dd" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.804808Z", - "extension": "png", - "id": "915fc007-ad4f-4606-bcd4-66304bd079a8", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-27T22:11:18Z", - "name": "Screenshot 2025-10-27 at 3.10.04 PM", - "sd_path": { - "Content": { - "content_id": "cb2bcb06-8bd0-5ab6-b0aa-d120909214dd" - } - }, - "sidecars": [], - "size": 50579, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "be735e74ca4088ba", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.991478Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.991478Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 275186, - "uuid": "715038ab-9e18-527c-8761-6a042773d938" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.798781Z", - "extension": "png", - "id": "93999202-b75b-45ab-9222-3ce60b622a05", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-02T01:19:42Z", - "name": "Screenshot 2025-11-01 at 6.19.37 PM", - "sd_path": { - "Content": { - "content_id": "715038ab-9e18-527c-8761-6a042773d938" - } - }, - "sidecars": [], - "size": 275186, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "a4eb5e8749bfc7a4", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.175164Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.175164Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 3199490, - "uuid": "963bb794-c3ff-5e3a-9220-231fab9f7e01" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.805170Z", - "extension": "jpeg", - "id": "951776d6-fdb7-4078-99a6-f9905241532b", - "is_local": false, - "kind": { - "File": { - "extension": "jpeg" - } - }, - "modified_at": "2025-10-26T04:54:42Z", - "name": "IMG_0439", - "sd_path": { - "Content": { - "content_id": "963bb794-c3ff-5e3a-9220-231fab9f7e01" - } - }, - "sidecars": [], - "size": 3199490, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "27ec4f3e3a5ad874", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.926786Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.926786Z", - "mime_type_id": 4, - "text_content": null, - "total_size": 71144, - "uuid": "b6f0145e-75d5-5749-8051-201c875c6b5f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.796486Z", - "extension": "pdf", - "id": "95ccd3a0-1d6c-47df-8bbf-683bac8de6cc", - "is_local": false, - "kind": { - "File": { - "extension": "pdf" - } - }, - "modified_at": "2025-10-27T04:02:36Z", - "name": "trp_letter", - "sd_path": { - "Content": { - "content_id": "b6f0145e-75d5-5749-8051-201c875c6b5f" - } - }, - "sidecars": [], - "size": 71144, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "44963bc8e5ccf695", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.908736Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.908736Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3986248, - "uuid": "139084b1-f1bf-5387-be50-da4239e8fd39" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.795332Z", - "extension": "png", - "id": "96c8c48f-c343-4611-918d-92e6c912803b", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T01:36:58Z", - "name": "Screenshot 2025-11-09 at 5.36.52 PM", - "sd_path": { - "Content": { - "content_id": "139084b1-f1bf-5387-be50-da4239e8fd39" - } - }, - "sidecars": [], - "size": 3986248, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "7402599d9f8b2f57", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.036813Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.036813Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 11610, - "uuid": "bf24aa69-295e-5b36-89aa-e00009074a4d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.800372Z", - "extension": "md", - "id": "96ee5087-dbd6-46a1-afd7-b002f59fa01a", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T01:45:35Z", - "name": "REFACTOR_COMPLETE", - "sd_path": { - "Content": { - "content_id": "bf24aa69-295e-5b36-89aa-e00009074a4d" - } - }, - "sidecars": [], - "size": 11610, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "28ccaf6378cc3e95", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.915493Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.915493Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 352423, - "uuid": "6b820364-d701-556d-a292-8b19cc6a7a72" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.795607Z", - "extension": "png", - "id": "99eedc86-da47-47cd-bd40-51009f12797e", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T10:54:05Z", - "name": "Screenshot 2025-11-10 at 2.53.59 AM", - "sd_path": { - "Content": { - "content_id": "6b820364-d701-556d-a292-8b19cc6a7a72" - } - }, - "sidecars": [], - "size": 352423, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "9a40bee1bebfe075", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.046268Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.046268Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 422956, - "uuid": "1681aa22-13bb-5745-9307-6201585b9e7a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.800698Z", - "extension": "png", - "id": "9aa41eb1-ab2c-497c-9979-458151aa7156", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-24T01:10:27Z", - "name": "Screenshot 2025-10-23 at 6.10.21 PM", - "sd_path": { - "Content": { - "content_id": "1681aa22-13bb-5745-9307-6201585b9e7a" - } - }, - "sidecars": [], - "size": 422956, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "cdaf9093f7f512a7", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.886070Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.886070Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 34064885, - "uuid": "9b6d3c8c-4199-551f-826e-36ca3ff08acd" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.794571Z", - "extension": "mov", - "id": "9d3d4f31-ce59-4d45-bd3b-9e33e8831584", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-11-11T04:54:18Z", - "name": "Screen Recording 2025-11-10 at 8.53.45 PM", - "sd_path": { - "Content": { - "content_id": "9b6d3c8c-4199-551f-826e-36ca3ff08acd" - } - }, - "sidecars": [], - "size": 34064885, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "bda5305f4caa8b9e", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.168439Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.168439Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3569, - "uuid": "dd8cdcfe-49c7-53fa-a7c9-5295fb05a6a0" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.804953Z", - "extension": "png", - "id": "9dd5521c-02d5-4fd6-a3b2-6e56da6d786a", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-14T15:31:57Z", - "name": "Screenshot 2025-10-14 at 8.31.50 AM", - "sd_path": { - "Content": { - "content_id": "dd8cdcfe-49c7-53fa-a7c9-5295fb05a6a0" - } - }, - "sidecars": [], - "size": 3569, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "8a2b78f8b53ff372", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.889590Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.889590Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 2918337786, - "uuid": "2fb65208-1f9c-52d5-85d2-d1eb4e40ff5a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.794683Z", - "extension": "mov", - "id": "a29d3032-23b8-4cac-a0f1-993d4caacec3", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-11-10T03:44:55Z", - "name": "Screen Recording 2025-11-09 at 7.18.50 PM", - "sd_path": { - "Content": { - "content_id": "2fb65208-1f9c-52d5-85d2-d1eb4e40ff5a" - } - }, - "sidecars": [], - "size": 2918337786, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "2e04f89d8064c3c8", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.026928Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.026928Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 11461, - "uuid": "15eacb01-d206-5683-9ed9-dfd36f02385c" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.800083Z", - "extension": "md", - "id": "a455c581-5e3d-4505-8136-5bddb3469b82", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-04T04:46:32Z", - "name": "REFACTOR_SUMMARY", - "sd_path": { - "Content": { - "content_id": "15eacb01-d206-5683-9ed9-dfd36f02385c" - } - }, - "sidecars": [], - "size": 11461, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b98fbc1569486273", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.095259Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.095259Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 243465, - "uuid": "f52e3b6d-cdbb-591b-8222-58f7814e4b14" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.802367Z", - "extension": "png", - "id": "a5b5c6ff-44a6-4652-9e71-76bc46300cad", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-02T23:21:15Z", - "name": "Screenshot 2025-10-02 at 4.21.10 PM", - "sd_path": { - "Content": { - "content_id": "f52e3b6d-cdbb-591b-8222-58f7814e4b14" - } - }, - "sidecars": [], - "size": 243465, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5613542c8d4012a7", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.017597Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.017597Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 401133, - "uuid": "e87ac956-c0b2-5f82-8743-1ac766da8ca3" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.799757Z", - "extension": "png", - "id": "a5f3aaf0-77d8-4953-a2f3-7d87f0a61214", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-11T03:08:25Z", - "name": "Screenshot 2025-10-10 at 8.08.22 PM", - "sd_path": { - "Content": { - "content_id": "e87ac956-c0b2-5f82-8743-1ac766da8ca3" - } - }, - "sidecars": [], - "size": 401133, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b77ada3219485d29", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.007912Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.007912Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 150991, - "uuid": "7a57304a-cf97-5631-a781-cfc2639fd68d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.799305Z", - "extension": "png", - "id": "a65704e9-2b18-44bf-ad2e-1c8979da19ff", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-09T02:59:38Z", - "name": "Screenshot 2025-11-08 at 6.59.33 PM", - "sd_path": { - "Content": { - "content_id": "7a57304a-cf97-5631-a781-cfc2639fd68d" - } - }, - "sidecars": [], - "size": 150991, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e8ff03fc88b69e6e", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.865762Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.865762Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 2875023, - "uuid": "11b3db32-5ece-5cbd-ad65-e2808b624258" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.793747Z", - "extension": "png", - "id": "a9d7c6f2-532a-4b94-844a-ca6c978676d9", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T10:30:29Z", - "name": "Screenshot 2025-11-10 at 2.30.23 AM", - "sd_path": { - "Content": { - "content_id": "11b3db32-5ece-5cbd-ad65-e2808b624258" - } - }, - "sidecars": [], - "size": 2875023, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "831bbe45f5cdfb03", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.981790Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.981790Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 2424403, - "uuid": "f27724a2-9816-5397-9afd-87ba61469b90" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.798434Z", - "extension": "png", - "id": "aa4c4881-9c2b-4912-9b83-87cc9193bf0f", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-08T03:19:11Z", - "name": "Screenshot 2025-11-07 at 7.19.05 PM", - "sd_path": { - "Content": { - "content_id": "f27724a2-9816-5397-9afd-87ba61469b90" - } - }, - "sidecars": [], - "size": 2424403, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "433d6c9f3e6fcefc", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.180980Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.180980Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 9551, - "uuid": "d44c8cfe-6877-504e-b024-bcfa53e79b09" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.805375Z", - "extension": "md", - "id": "af4b0abb-4d37-4705-abfa-4ef2350020e7", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-04T23:08:01Z", - "name": "REFACTOR_SESSION_1", - "sd_path": { - "Content": { - "content_id": "d44c8cfe-6877-504e-b024-bcfa53e79b09" - } - }, - "sidecars": [], - "size": 9551, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "57ea8d7b2f8244e0", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.014548Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.014548Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 10924, - "uuid": "22ff29c9-e3f0-54fe-90b4-1fa8fc8d9a9a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.799566Z", - "extension": "png", - "id": "b42c7c55-bde2-4c34-928d-5b0214c368d5", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-08T13:45:29Z", - "name": "Screenshot 2025-10-08 at 6.45.23 AM", - "sd_path": { - "Content": { - "content_id": "22ff29c9-e3f0-54fe-90b4-1fa8fc8d9a9a" - } - }, - "sidecars": [], - "size": 10924, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "7327d015f5b51864", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.111383Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.111383Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 5477, - "uuid": "3ac59642-a8ef-563c-9d74-6e82b8a22551" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.802861Z", - "extension": "md", - "id": "b6965110-b6db-4131-8309-ba93ca6adad4", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T01:45:35Z", - "name": "OPTIONAL_FIELDS_ISSUE", - "sd_path": { - "Content": { - "content_id": "3ac59642-a8ef-563c-9d74-6e82b8a22551" - } - }, - "sidecars": [], - "size": 5477, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e5a9f75710e5a83f", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.011136Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.011136Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 227949, - "uuid": "371f8207-25d2-5343-9ef9-2665d43f4532" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.799433Z", - "extension": "png", - "id": "ba6e3b7f-0d40-40df-8c6d-f63b1a4930dd", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-02T01:34:43Z", - "name": "Screenshot 2025-10-01 at 6.34.37 PM", - "sd_path": { - "Content": { - "content_id": "371f8207-25d2-5343-9ef9-2665d43f4532" - } - }, - "sidecars": [], - "size": 227949, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "1eb40634b1260191", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.001247Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.001247Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 59695, - "uuid": "ad1da6e3-f7f3-5ab9-906c-53b73c56afbd" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.799056Z", - "extension": "png", - "id": "bc16db14-f219-4422-aa52-43c13836703e", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-23T22:13:58Z", - "name": "Screenshot 2025-10-23 at 3.13.52 PM", - "sd_path": { - "Content": { - "content_id": "ad1da6e3-f7f3-5ab9-906c-53b73c56afbd" - } - }, - "sidecars": [], - "size": 59695, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "cc042b5c656aa9f4", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.055775Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.055775Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 205410, - "uuid": "508f9354-f64a-5d08-a07f-4c3a7cf6c241" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.801063Z", - "extension": "png", - "id": "bdf444db-4996-4512-b027-e95711e49019", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-23T23:24:58Z", - "name": "Screenshot 2025-10-23 at 4.24.53 PM", - "sd_path": { - "Content": { - "content_id": "508f9354-f64a-5d08-a07f-4c3a7cf6c241" - } - }, - "sidecars": [], - "size": 205410, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "83675436792350dc", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.997796Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.997796Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3861038, - "uuid": "a14a967e-e7a7-54e2-831a-0adfb6864efd" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.798966Z", - "extension": "png", - "id": "be476df5-91a0-499a-8451-981812d09d66", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-08T04:44:31Z", - "name": "Screenshot 2025-10-07 at 9.44.24 PM", - "sd_path": { - "Content": { - "content_id": "a14a967e-e7a7-54e2-831a-0adfb6864efd" - } - }, - "sidecars": [], - "size": 3861038, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "6663923d3bbb7aaf", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.158657Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.158657Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 222691, - "uuid": "423a1196-88aa-5cff-97fb-61eef3fdf3a1" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.804487Z", - "extension": "png", - "id": "c733e691-31bd-47f4-9453-05063fd5e803", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-06T13:41:42Z", - "name": "Screenshot 2025-11-06 at 5.41.36 AM", - "sd_path": { - "Content": { - "content_id": "423a1196-88aa-5cff-97fb-61eef3fdf3a1" - } - }, - "sidecars": [], - "size": 222691, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "f4c546213035408f", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.933055Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.933055Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 99926, - "uuid": "50a45910-739d-5f2c-a596-9b162011dc18" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.796697Z", - "extension": "png", - "id": "cd89d2a9-01c9-485c-82e2-6307c010fe86", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-10T02:48:09Z", - "name": "Screenshot 2025-10-09 at 7.48.04 PM", - "sd_path": { - "Content": { - "content_id": "50a45910-739d-5f2c-a596-9b162011dc18" - } - }, - "sidecars": [], - "size": 99926, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "63e1e21c60254049", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.962470Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.962470Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 85324160, - "uuid": "3ed83670-81bc-532d-9488-103dbdd3c585" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.797679Z", - "extension": "mov", - "id": "cf1a0e88-408b-44b9-a9fe-c409e0d0ff67", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-08T14:38:55Z", - "name": "spacedrive-gource", - "sd_path": { - "Content": { - "content_id": "3ed83670-81bc-532d-9488-103dbdd3c585" - } - }, - "sidecars": [], - "size": 85324160, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d70235956ba35e06", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.985047Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.985047Z", - "mime_type_id": 4, - "text_content": null, - "total_size": 89119, - "uuid": "889a2802-9a66-5972-a2bf-fcf61b746d83" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.798533Z", - "extension": "pdf", - "id": "cf30aefe-0647-4d1a-b3c1-14a6374e6d3e", - "is_local": false, - "kind": { - "File": { - "extension": "pdf" - } - }, - "modified_at": "2025-10-04T09:01:09Z", - "name": "OFRELEASEFORM2", - "sd_path": { - "Content": { - "content_id": "889a2802-9a66-5972-a2bf-fcf61b746d83" - } - }, - "sidecars": [], - "size": 89119, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "f82a183dbff4d412", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.936412Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.936412Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 4955658, - "uuid": "56f0bdd5-52ba-5df5-b83c-3dc229388f1d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.796802Z", - "extension": "mov", - "id": "cfa4a2c7-8f7a-491a-a978-5f3d779caba7", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-14T08:56:34Z", - "name": "Screen Recording 2025-10-14 at 1.56.09 AM", - "sd_path": { - "Content": { - "content_id": "56f0bdd5-52ba-5df5-b83c-3dc229388f1d" - } - }, - "sidecars": [], - "size": 4955658, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "2a7a95b1cb9fa9cb", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.043355Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.043355Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 2998919, - "uuid": "c0ed49ca-d92b-5e48-b08a-284885202240" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.800599Z", - "extension": "png", - "id": "d2e08f7f-52c3-4cd5-a790-53e68beec259", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-27T22:11:15Z", - "name": "Screenshot 2025-10-27 at 3.11.08 PM", - "sd_path": { - "Content": { - "content_id": "c0ed49ca-d92b-5e48-b08a-284885202240" - } - }, - "sidecars": [], - "size": 2998919, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "96d08f50b73e2abd", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.133805Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.133805Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 6746682, - "uuid": "01c27f40-604e-5ca0-b8fa-6e059b07bbaa" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.803568Z", - "extension": "jpg", - "id": "d31396da-d790-44b7-ac3f-ec877597c2b0", - "is_local": false, - "kind": { - "File": { - "extension": "jpg" - } - }, - "modified_at": "2025-10-26T04:54:13Z", - "name": "DSC07594", - "sd_path": { - "Content": { - "content_id": "01c27f40-604e-5ca0-b8fa-6e059b07bbaa" - } - }, - "sidecars": [], - "size": 6746682, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3c67816dde683ef9", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.098694Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.098694Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 20514, - "uuid": "bee98a8d-cad4-5998-bbe4-69cb2f2beb3b" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.802474Z", - "extension": "png", - "id": "d6c35620-ce82-41f4-b894-3b4fc1e787ad", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-08T02:08:22Z", - "name": "Screenshot 2025-11-07 at 6.08.16 PM", - "sd_path": { - "Content": { - "content_id": "bee98a8d-cad4-5998-bbe4-69cb2f2beb3b" - } - }, - "sidecars": [], - "size": 20514, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ed833a2a52d4f0a2", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.085020Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.085020Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 99125, - "uuid": "4308340f-32c1-56b5-bef8-cd0388f67805" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.802064Z", - "extension": "png", - "id": "d9b24e28-462b-49c3-b79a-7a4b7f9e1950", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-01T00:34:15Z", - "name": "Screenshot 2025-10-31 at 5.34.12 PM", - "sd_path": { - "Content": { - "content_id": "4308340f-32c1-56b5-bef8-cd0388f67805" - } - }, - "sidecars": [], - "size": 99125, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "7bddbc68ce80e5a4", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.929927Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.929927Z", - "mime_type_id": 4, - "text_content": null, - "total_size": 59458, - "uuid": "9a6bb62b-ce5d-5f20-9e89-a89a2cb70028" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.796597Z", - "extension": "pdf", - "id": "da58f4c6-75b8-41f3-9ee6-976811ff15a0", - "is_local": false, - "kind": { - "File": { - "extension": "pdf" - } - }, - "modified_at": "2025-10-26T10:37:12Z", - "name": "package_index", - "sd_path": { - "Content": { - "content_id": "9a6bb62b-ce5d-5f20-9e89-a89a2cb70028" - } - }, - "sidecars": [], - "size": 59458, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b60210c979270292", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.862230Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.862230Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 2243226, - "uuid": "317e448b-82c6-5973-8f32-ec741a0fb90a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.793523Z", - "extension": "mov", - "id": "dae38b7b-adbd-4e8c-b0c4-0d3911abaaf4", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-11-10T10:42:29Z", - "name": "Screen Recording 2025-11-10 at 2.42.22 AM", - "sd_path": { - "Content": { - "content_id": "317e448b-82c6-5973-8f32-ec741a0fb90a" - } - }, - "sidecars": [], - "size": 2243226, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "0f369d5469ae5057", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.949381Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.949381Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 5647, - "uuid": "1649f540-8ef3-5f06-a86d-8d96d2f822a3" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.797215Z", - "extension": "md", - "id": "db9b9dfe-6b66-401a-96f8-07176810a671", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T00:05:56Z", - "name": "MILESTONE_52_PERCENT", - "sd_path": { - "Content": { - "content_id": "1649f540-8ef3-5f06-a86d-8d96d2f822a3" - } - }, - "sidecars": [], - "size": 5647, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "4d01168111ad5e3f", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.065382Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.065382Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 7742818, - "uuid": "456deed1-57b6-53ac-846b-aaa544c2bb84" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.801417Z", - "extension": "png", - "id": "dfdf4abf-c4a2-430e-8b59-6e909bfe2438", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-30T06:42:37Z", - "name": "Screenshot 2025-10-29 at 11.42.31 PM (2)", - "sd_path": { - "Content": { - "content_id": "456deed1-57b6-53ac-846b-aaa544c2bb84" - } - }, - "sidecars": [], - "size": 7742818, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "7905286ad7fc83dc", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.923197Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.923197Z", - "mime_type_id": 4, - "text_content": null, - "total_size": 69830, - "uuid": "c02478b5-3b0e-5fcf-bd97-036d50e8c2ab" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.796345Z", - "extension": "pdf", - "id": "dff19e94-1c36-450f-9061-ba6b668db8c6", - "is_local": false, - "kind": { - "File": { - "extension": "pdf" - } - }, - "modified_at": "2025-10-26T12:24:14Z", - "name": "cra_letter", - "sd_path": { - "Content": { - "content_id": "c02478b5-3b0e-5fcf-bd97-036d50e8c2ab" - } - }, - "sidecars": [], - "size": 69830, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "8d936ad9fc717ebc", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.127569Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.127569Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1124381, - "uuid": "8adc49a2-1b44-5232-a62a-b17cae8b897d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.803382Z", - "extension": "png", - "id": "e09d60f1-b37c-472a-a568-5fefae001391", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T04:18:39Z", - "name": "Screenshot 2025-10-12 at 9.18.32 PM 1(2)", - "sd_path": { - "Content": { - "content_id": "8adc49a2-1b44-5232-a62a-b17cae8b897d" - } - }, - "sidecars": [], - "size": 1124381, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "aeb413e4f0884507", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.091948Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.091948Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 774897, - "uuid": "c6a36a32-4f89-557e-93c1-0dfa0107800f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.802269Z", - "extension": "png", - "id": "e6d150ff-5078-4d11-ab5c-5c3a30150865", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T13:31:18Z", - "name": "Screenshot 2025-10-26 at 6.31.12 AM", - "sd_path": { - "Content": { - "content_id": "c6a36a32-4f89-557e-93c1-0dfa0107800f" - } - }, - "sidecars": [], - "size": 774897, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "9a48cbebfa810dbd", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.882761Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.882762Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 13333222, - "uuid": "d15b915a-8b71-5279-ad73-6021249a2638" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.794452Z", - "extension": "mov", - "id": "eaaed04d-23df-4128-a17e-f0082755dca5", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-11-10T10:43:29Z", - "name": "Screen Recording 2025-11-10 at 2.43.14 AM", - "sd_path": { - "Content": { - "content_id": "d15b915a-8b71-5279-ad73-6021249a2638" - } - }, - "sidecars": [], - "size": 13333222, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "c6af3e5c40f3c5e0", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.088578Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.088578Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3721703, - "uuid": "9720de0f-9cd9-57f2-805b-d7a891462e2c" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.802175Z", - "extension": "png", - "id": "ebd18719-8257-49af-a141-1b685c32f58e", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T05:16:48Z", - "name": "Screenshot 2025-10-12 at 10.16.40 PM", - "sd_path": { - "Content": { - "content_id": "9720de0f-9cd9-57f2-805b-d7a891462e2c" - } - }, - "sidecars": [], - "size": 3721703, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d4a112e2c37cf803", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.939572Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.939572Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 62385, - "uuid": "b0dc4e90-6063-557b-8586-bdf2b4d1802b" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.796905Z", - "extension": "png", - "id": "efed2a67-7c64-4c96-bf05-188fbdf2a908", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-11T17:32:29Z", - "name": "Screenshot 2025-10-11 at 10.32.23 AM", - "sd_path": { - "Content": { - "content_id": "b0dc4e90-6063-557b-8586-bdf2b4d1802b" - } - }, - "sidecars": [], - "size": 62385, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "7cc1be6a1f0a3472", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.946327Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.946327Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 231784, - "uuid": "21a46552-ae54-5617-9426-adcef5dfd8e2" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.797097Z", - "extension": "png", - "id": "f187ad15-3795-45d6-a762-14ed351d20c6", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-07T02:39:45Z", - "name": "Screenshot 2025-11-06 at 6.39.39 PM", - "sd_path": { - "Content": { - "content_id": "21a46552-ae54-5617-9426-adcef5dfd8e2" - } - }, - "sidecars": [], - "size": 231784, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "8a668e3d472e8098", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.155538Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.155538Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 54188, - "uuid": "ad308f8b-77c0-518d-808e-b70dc4a8cc55" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.804362Z", - "extension": "png", - "id": "f1ac892f-bd15-445a-bd4c-f6f5c9559ee3", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-02T00:20:27Z", - "name": "Screenshot 2025-11-01 at 5.20.22 PM", - "sd_path": { - "Content": { - "content_id": "ad308f8b-77c0-518d-808e-b70dc4a8cc55" - } - }, - "sidecars": [], - "size": 54188, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "94cb43ca2dd30a47", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.978473Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.978473Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 6389, - "uuid": "579aeded-497c-5643-aee2-1eeded349328" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.798322Z", - "extension": "md", - "id": "f66c6315-22df-4c27-8f44-e7b0b1fcc661", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-04T23:26:05Z", - "name": "PROGRESS_UPDATE", - "sd_path": { - "Content": { - "content_id": "579aeded-497c-5643-aee2-1eeded349328" - } - }, - "sidecars": [], - "size": 6389, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "94b46545331a0809", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.040131Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.040131Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 480973, - "uuid": "75e7b3fe-9e76-5d4c-94aa-d78e208b975d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.800470Z", - "extension": "png", - "id": "f70b21b9-86de-4e4a-9c66-7b6edafcbc24", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T00:38:56Z", - "name": "Screenshot 2025-10-25 at 5.38.50 PM", - "sd_path": { - "Content": { - "content_id": "75e7b3fe-9e76-5d4c-94aa-d78e208b975d" - } - }, - "sidecars": [], - "size": 480973, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "671a3aa4c6461853", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.033810Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.033810Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 4978, - "uuid": "00e4833b-3227-563f-bb05-70d4abb56aef" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.800277Z", - "extension": "md", - "id": "f75127f8-d7e5-43cb-94c6-16ce74e75907", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-04T23:19:03Z", - "name": "EXTRACTION_STATUS", - "sd_path": { - "Content": { - "content_id": "00e4833b-3227-563f-bb05-70d4abb56aef" - } - }, - "sidecars": [], - "size": 4978, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "a9ac917475408320", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:36:59.965575Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:36:59.965575Z", - "mime_type_id": 7, - "text_content": null, - "total_size": 34420, - "uuid": "b5668549-b652-5a08-ad55-0bed73d50186" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.797794Z", - "extension": "webp", - "id": "fb17192d-f8d0-43ed-a2c9-49ee4b02930d", - "is_local": false, - "kind": { - "File": { - "extension": "webp" - } - }, - "modified_at": "2025-11-05T01:08:43Z", - "name": "020618michaelblutrichbz11.jpg", - "sd_path": { - "Content": { - "content_id": "b5668549-b652-5a08-ad55-0bed73d50186" - } - }, - "sidecars": [], - "size": 34420, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "99909be0a3ac0d6f", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.186973Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.186973Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 98796, - "uuid": "ad1e0818-dd41-5e39-8828-0d5aae4dd3be" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.805573Z", - "extension": "png", - "id": "fe0e348d-ffa5-42c4-9add-0ef860bfadb2", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T10:13:25Z", - "name": "Screenshot 2025-10-13 at 3.13.19 AM", - "sd_path": { - "Content": { - "content_id": "ad1e0818-dd41-5e39-8828-0d5aae4dd3be" - } - }, - "sidecars": [], - "size": 98796, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "fcfc4ffba6a71336", - "entry_count": 1, - "first_seen_at": "2025-11-11T05:37:00.075142Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T05:37:00.075142Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 784923, - "uuid": "5acba042-b872-5f04-b917-84f8253130b4" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T05:36:59.801725Z", - "extension": "png", - "id": "fef7c05c-4849-499d-8f6f-50e14ec91cbe", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T13:31:38Z", - "name": "JakePassingAnnouncement", - "sd_path": { - "Content": { - "content_id": "5acba042-b872-5f04-b917-84f8253130b4" - } - }, - "sidecars": [], - "size": 784923, - "tags": [] - } - ] -] \ No newline at end of file diff --git a/test_snapshots/phase_Content.json b/test_snapshots/phase_Content.json deleted file mode 100644 index 624902653..000000000 --- a/test_snapshots/phase_Content.json +++ /dev/null @@ -1,4947 +0,0 @@ -{ - "all_files": [ - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "24577669faa061c2", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.427038Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.427038Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3007313, - "uuid": "e2dec35e-626f-5376-b778-1e7f6d0db878" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.849530Z", - "extension": "png", - "id": "02bd2975-e7f0-4886-b38d-a989be977d7e", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-05T01:41:35Z", - "name": "3AE4AB29-5EC8-4DF9-80F8-F72AE5C38FBF", - "sd_path": { - "Content": { - "content_id": "e2dec35e-626f-5376-b778-1e7f6d0db878" - } - }, - "sidecars": [], - "size": 3007313, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "867b90353f2abeab", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.472840Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.472840Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1308809, - "uuid": "ac3f7705-2cc0-53c0-97e0-0c140fd19617" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.851182Z", - "extension": "png", - "id": "063a90cb-f91a-4a99-95a7-7013ec78dd81", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-30T06:28:05Z", - "name": "Screenshot 2025-10-29 at 11.28.00 PM", - "sd_path": { - "Content": { - "content_id": "ac3f7705-2cc0-53c0-97e0-0c140fd19617" - } - }, - "sidecars": [], - "size": 1308809, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "9ace6e157434a8c2", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.291275Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.291275Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 1910695, - "uuid": "50c2ad1a-0977-5cae-8258-3231e2b49c26" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.845062Z", - "extension": "jpeg", - "id": "06429e71-7207-4800-8674-5767ea2302cd", - "is_local": false, - "kind": { - "File": { - "extension": "jpeg" - } - }, - "modified_at": "2025-11-09T06:34:06Z", - "name": "IMG_0343", - "sd_path": { - "Content": { - "content_id": "50c2ad1a-0977-5cae-8258-3231e2b49c26" - } - }, - "sidecars": [], - "size": 1910695, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "4063b3abd1960251", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.566639Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.566639Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 64934, - "uuid": "12b816a7-bdea-5d2d-9c95-d07362c6594e" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.854717Z", - "extension": "png", - "id": "06a94ce1-8ffb-407e-9018-d11b8229c17a", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T03:56:29Z", - "name": "Screenshot 2025-09-26 at 8.55.51 PM", - "sd_path": { - "Content": { - "content_id": "12b816a7-bdea-5d2d-9c95-d07362c6594e" - } - }, - "sidecars": [], - "size": 64934, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "a511b3ecebbc1007", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.417673Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.417673Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 110053, - "uuid": "cafba655-f6be-586c-aab0-3a97a60d4e68" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.849268Z", - "extension": "png", - "id": "0c55bae8-3e92-4684-b7eb-c4e1bfd66364", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-11T14:27:05Z", - "name": "Screenshot 2025-10-11 at 7.26.59 AM", - "sd_path": { - "Content": { - "content_id": "cafba655-f6be-586c-aab0-3a97a60d4e68" - } - }, - "sidecars": [], - "size": 110053, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "7a7d5d06d78f2e48", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.515178Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.515178Z", - "mime_type_id": 12, - "text_content": null, - "total_size": 581, - "uuid": "a8ef0276-1a7d-5d06-a236-ac5a17607e0a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.852706Z", - "extension": "toml", - "id": "0e154d14-747c-45df-81ac-a22d2b43849b", - "is_local": false, - "kind": { - "File": { - "extension": "toml" - } - }, - "modified_at": "2025-04-19T02:42:21Z", - "name": "pyproject", - "sd_path": { - "Content": { - "content_id": "a8ef0276-1a7d-5d06-a236-ac5a17607e0a" - } - }, - "sidecars": [], - "size": 581, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "1a31f2374b2817d1", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.512152Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.512152Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 5069, - "uuid": "87e6b914-3fde-5567-86a0-8bfb86d87929" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.852611Z", - "extension": "py", - "id": "0f675a56-34dd-4e66-bfee-d6abd25398f8", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-19T04:36:04Z", - "name": "models", - "sd_path": { - "Content": { - "content_id": "87e6b914-3fde-5567-86a0-8bfb86d87929" - } - }, - "sidecars": [], - "size": 5069, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ce8fa365296b5dbc", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.386520Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.386520Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 268856, - "uuid": "1259c7c3-56dd-5c74-9233-25f840a09a1b" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.848298Z", - "extension": "png", - "id": "10dbbe67-a7ed-46bd-a53e-fe13fe30f8c2", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-02T01:19:52Z", - "name": "Screenshot 2025-11-01 at 6.19.47 PM", - "sd_path": { - "Content": { - "content_id": "1259c7c3-56dd-5c74-9233-25f840a09a1b" - } - }, - "sidecars": [], - "size": 268856, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "aecb1e9596fe29e8", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.433314Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.433314Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 693384, - "uuid": "c7abe8a4-7b58-5133-a202-21b86800903f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.849729Z", - "extension": "png", - "id": "1682e3a0-3eac-4a58-8171-3cbdd334fc34", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-11T13:00:35Z", - "name": "Screenshot 2025-10-11 at 6.00.30 AM", - "sd_path": { - "Content": { - "content_id": "c7abe8a4-7b58-5133-a202-21b86800903f" - } - }, - "sidecars": [], - "size": 693384, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "388fa1e69021dd46", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.575342Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.575342Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 155960, - "uuid": "62e70bca-6364-53ef-9d53-8c267574ae4e" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.855033Z", - "extension": "png", - "id": "1684e098-9caa-4a7f-b839-14bb5d1fd28f", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-28T10:05:05Z", - "name": "Screenshot 2025-09-28 at 3.05.00 AM", - "sd_path": { - "Content": { - "content_id": "62e70bca-6364-53ef-9d53-8c267574ae4e" - } - }, - "sidecars": [], - "size": 155960, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3fb8408253bd7eca", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.545092Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.545092Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 7309, - "uuid": "deb25042-203c-5c83-a764-1cb5337a0ab0" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.853895Z", - "extension": "py", - "id": "1ce3f7b0-23ab-4f1e-9c3a-3783571144e8", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-19T03:13:04Z", - "name": "email_matcher", - "sd_path": { - "Content": { - "content_id": "deb25042-203c-5c83-a764-1cb5337a0ab0" - } - }, - "sidecars": [], - "size": 7309, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d61fe07d75bcdb98", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.339362Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.339363Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 678438, - "uuid": "ae9b6af2-6007-5b1c-91d0-47a1d1d1b9eb" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.846886Z", - "extension": "png", - "id": "20628c1b-9c75-4694-90e4-84036080f47c", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-08T16:23:20Z", - "name": "Screenshot 2025-11-08 at 8.23.14 AM", - "sd_path": { - "Content": { - "content_id": "ae9b6af2-6007-5b1c-91d0-47a1d1d1b9eb" - } - }, - "sidecars": [], - "size": 678438, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5de686c44adcdcf3", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.303250Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.303250Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 8672310, - "uuid": "10825e5e-c10e-5f56-b81e-475d8ccc7294" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.845598Z", - "extension": "png", - "id": "20f809fc-8e2e-43fd-b396-f41cc9cf820e", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-08T04:44:31Z", - "name": "Screenshot 2025-10-07 at 9.44.24 PM (2)", - "sd_path": { - "Content": { - "content_id": "10825e5e-c10e-5f56-b81e-475d8ccc7294" - } - }, - "sidecars": [], - "size": 8672310, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "8daf386b9f5dd7cf", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.330372Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.330372Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 776724920, - "uuid": "23afa307-4abd-526d-b0dd-2c5f79c17fd4" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.846514Z", - "extension": "mov", - "id": "237c5609-a3d8-4912-82c2-342fdc5f88f8", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-12T04:47:01Z", - "name": "Screen Recording 2025-10-11 at 9.29.03 PM", - "sd_path": { - "Content": { - "content_id": "23afa307-4abd-526d-b0dd-2c5f79c17fd4" - } - }, - "sidecars": [], - "size": 776724920, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "fe31271cdda16861", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.506049Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.506049Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 159094, - "uuid": "0f8bfaaa-4717-5c2c-a18f-9f2e6af0d496" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.852415Z", - "extension": "png", - "id": "25113fd0-7037-4efe-92e0-6d133e407712", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T02:03:34Z", - "name": "Screenshot 2025-10-25 at 7.03.28 PM", - "sd_path": { - "Content": { - "content_id": "0f8bfaaa-4717-5c2c-a18f-9f2e6af0d496" - } - }, - "sidecars": [], - "size": 159094, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "41c8c1bc92fae647", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.357506Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.357506Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 53150, - "uuid": "34e7a777-9e08-5096-96f2-f9a2d131df6d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.847466Z", - "extension": "png", - "id": "280f9322-33d6-4629-8b4c-176c8b78c81c", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-08T13:57:18Z", - "name": "Screenshot 2025-10-08 at 6.56.57 AM", - "sd_path": { - "Content": { - "content_id": "34e7a777-9e08-5096-96f2-f9a2d131df6d" - } - }, - "sidecars": [], - "size": 53150, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "bff0970a8ee00b3b", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.563563Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.563563Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 464385, - "uuid": "685db77d-ae13-58e7-9000-cd8e94b2f749" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.854623Z", - "extension": "png", - "id": "2ade9660-b656-4ff2-9b84-d6b7804ce9fb", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-28T09:26:52Z", - "name": "Screenshot 2025-09-28 at 2.26.46 AM", - "sd_path": { - "Content": { - "content_id": "685db77d-ae13-58e7-9000-cd8e94b2f749" - } - }, - "sidecars": [], - "size": 464385, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "20ac41cc3f17e12f", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.463334Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.463334Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 14686859, - "uuid": "f5142762-efc0-5c17-b527-7356a597cc6f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.850882Z", - "extension": "mov", - "id": "30d2d71d-31c5-4d4a-9254-61de2928d674", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-14T10:00:53Z", - "name": "Screen Recording 2025-10-14 at 3.00.33 AM", - "sd_path": { - "Content": { - "content_id": "f5142762-efc0-5c17-b527-7356a597cc6f" - } - }, - "sidecars": [], - "size": 14686859, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "42102c11391ce992", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.401556Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.401556Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3545, - "uuid": "98ca22b0-c9ba-50ba-9001-631175bb5865" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.848745Z", - "extension": "png", - "id": "34335cb3-2cf6-4259-a07b-fa5b3369b886", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-27T04:50:01Z", - "name": "Screenshot 2025-10-26 at 9.49.55 PM", - "sd_path": { - "Content": { - "content_id": "98ca22b0-c9ba-50ba-9001-631175bb5865" - } - }, - "sidecars": [], - "size": 3545, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "735172ff2eef7e88", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.423798Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.423798Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 11010446, - "uuid": "f3a9dca0-0600-5f90-b0fe-d0421d530b29" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.849442Z", - "extension": "png", - "id": "397b6119-7322-41ba-8ede-889c721eb66f", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T04:18:33Z", - "name": "Screenshot 2025-10-12 at 9.18.32 PM", - "sd_path": { - "Content": { - "content_id": "f3a9dca0-0600-5f90-b0fe-d0421d530b29" - } - }, - "sidecars": [], - "size": 11010446, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "392cd724101204e8", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.345450Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.345450Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3063214, - "uuid": "64aa98d6-7372-552c-ac6f-371f3066616f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.847088Z", - "extension": "png", - "id": "3c999890-7a18-44e5-a646-147d46505fc1", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-08T13:45:00Z", - "name": "Screenshot 2025-11-08 at 5.44.54 AM", - "sd_path": { - "Content": { - "content_id": "64aa98d6-7372-552c-ac6f-371f3066616f" - } - }, - "sidecars": [], - "size": 3063214, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5c6083933f82298f", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.460391Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.460391Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 741233, - "uuid": "94a5aceb-a03c-57f8-97b2-3028c55a83f5" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.850778Z", - "extension": "jpg", - "id": "3f5336de-1124-425a-90bc-fe28509faf3d", - "is_local": false, - "kind": { - "File": { - "extension": "jpg" - } - }, - "modified_at": "2025-10-30T05:32:48Z", - "name": "CF54235D-6286-4893-8A63-1930295099EB", - "sd_path": { - "Content": { - "content_id": "94a5aceb-a03c-57f8-97b2-3028c55a83f5" - } - }, - "sidecars": [], - "size": 741233, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "920d1ca356469bc5", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.367306Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.367306Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 297024, - "uuid": "837b55be-74ed-5f58-8028-7fcdbcabe483" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.847746Z", - "extension": "png", - "id": "3faa6956-8df5-48a3-a670-d08f548cb0d1", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-06T01:11:30Z", - "name": "Screenshot 2025-11-05 at 5.11.24 PM", - "sd_path": { - "Content": { - "content_id": "837b55be-74ed-5f58-8028-7fcdbcabe483" - } - }, - "sidecars": [], - "size": 297024, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b1caa06f545cf555", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.524262Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.524262Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 1431, - "uuid": "849afb2f-0619-5067-a685-b8a0d65278b6" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.853008Z", - "extension": "py", - "id": "40b9269c-2b36-436c-8311-0bb1f1e9149f", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-16T21:37:44Z", - "name": "tax_utils", - "sd_path": { - "Content": { - "content_id": "849afb2f-0619-5067-a685-b8a0d65278b6" - } - }, - "sidecars": [], - "size": 1431, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "bb9f9f421db3e00e", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.509216Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.509216Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 1995, - "uuid": "6385e81c-aae2-5730-8e43-f5da5ca42c24" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.852517Z", - "extension": "py", - "id": "41e8a21f-b436-4555-8e8b-724e82e04f85", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-16T22:38:05Z", - "name": "ocr_cache", - "sd_path": { - "Content": { - "content_id": "6385e81c-aae2-5730-8e43-f5da5ca42c24" - } - }, - "sidecars": [], - "size": 1995, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "8e5ee713c0be6f5f", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.451235Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.451235Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 298445, - "uuid": "6eaae1c1-b969-5915-b4c1-bbbe87386b9d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.850412Z", - "extension": "png", - "id": "4296c93a-55a1-4f03-aba7-34c5518b7386", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-05T03:16:45Z", - "name": "Screenshot 2025-11-04 at 7.16.42 PM", - "sd_path": { - "Content": { - "content_id": "6eaae1c1-b969-5915-b4c1-bbbe87386b9d" - } - }, - "sidecars": [], - "size": 298445, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "6401770cf5b4f1a0", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.521292Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.521292Z", - "mime_type_id": 10, - "text_content": null, - "total_size": 648, - "uuid": "e4531b76-70e8-56b8-bf4a-23d89108718d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.852907Z", - "extension": "sh", - "id": "42b0d957-0832-4c06-a5a5-3f0d22c7b55c", - "is_local": false, - "kind": { - "File": { - "extension": "sh" - } - }, - "modified_at": "2025-04-16T13:33:03Z", - "name": "run-viewer", - "sd_path": { - "Content": { - "content_id": "e4531b76-70e8-56b8-bf4a-23d89108718d" - } - }, - "sidecars": [], - "size": 648, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "aac3fa48fd12fa49", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.436185Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.436185Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 243133, - "uuid": "d2f9c047-a11b-5113-ac22-bbfeb04a4f4f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.849840Z", - "extension": "png", - "id": "498362dc-0ef6-4d9c-874d-f5e7f84c4eea", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-07T09:10:32Z", - "name": "Screenshot 2025-11-07 at 1.10.26 AM", - "sd_path": { - "Content": { - "content_id": "d2f9c047-a11b-5113-ac22-bbfeb04a4f4f" - } - }, - "sidecars": [], - "size": 243133, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ffce0a96003cfed8", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.488261Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.488261Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1673592, - "uuid": "ea522180-9618-5685-8359-22225b0c3fba" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.851765Z", - "extension": "png", - "id": "4e58b569-c3d0-46eb-b2cf-12e95af7e1b4", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-05T09:15:50Z", - "name": "image", - "sd_path": { - "Content": { - "content_id": "ea522180-9618-5685-8359-22225b0c3fba" - } - }, - "sidecars": [], - "size": 1673592, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "f892827d2e5521b9", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.497160Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.497160Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 202977, - "uuid": "f50c5265-fc3e-5dd6-bde2-8c069748bc3c" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.852129Z", - "extension": "png", - "id": "4fcd5e25-92c6-49c7-b04d-febaf81e09d5", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-30T02:40:53Z", - "name": "Screenshot 2025-09-29 at 7.40.40 PM", - "sd_path": { - "Content": { - "content_id": "f50c5265-fc3e-5dd6-bde2-8c069748bc3c" - } - }, - "sidecars": [], - "size": 202977, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b2e02fe92f39b801", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.503103Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.503103Z", - "mime_type_id": 10, - "text_content": null, - "total_size": 12902, - "uuid": "2d027a56-67f1-5363-b345-42fd1e3f6d7f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.852321Z", - "extension": "log", - "id": "51a4f35c-5d62-47df-ba0b-1f074446264d", - "is_local": false, - "kind": { - "File": { - "extension": "log" - } - }, - "modified_at": "2025-10-14T07:24:28Z", - "name": "6a957e54-236d-4f56-be0a-a2a16adea400", - "sd_path": { - "Content": { - "content_id": "2d027a56-67f1-5363-b345-42fd1e3f6d7f" - } - }, - "sidecars": [], - "size": 12902, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "c374fea0710bde61", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.336392Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.336392Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 420380, - "uuid": "30338d29-4a0f-532b-95d4-c85b78f22a51" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.846712Z", - "extension": "png", - "id": "51e12579-e0b3-4b5d-aee6-f9d84c504266", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-24T01:10:14Z", - "name": "Screenshot 2025-10-23 at 6.10.08 PM", - "sd_path": { - "Content": { - "content_id": "30338d29-4a0f-532b-95d4-c85b78f22a51" - } - }, - "sidecars": [], - "size": 420380, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5487b3e8f45dd1a5", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.360349Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.360349Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 8985, - "uuid": "313c36b8-de5f-56c3-ba86-9cd7202d3527" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.847551Z", - "extension": "md", - "id": "523784ef-8854-4888-bc7b-9d59c00f6c03", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T01:45:35Z", - "name": "SESSION_SUMMARY", - "sd_path": { - "Content": { - "content_id": "313c36b8-de5f-56c3-ba86-9cd7202d3527" - } - }, - "sidecars": [], - "size": 8985, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "7657ec80d38894a3", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.500037Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.500037Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 297364322, - "uuid": "1f76f763-14e9-51ce-8894-067caf2d3587" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.852228Z", - "extension": "mov", - "id": "594adb9a-6a5b-46b8-83c6-df3fa730538c", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-09-29T22:25:18Z", - "name": "Screen Recording 2025-09-29 at 3.23.32 PM", - "sd_path": { - "Content": { - "content_id": "1f76f763-14e9-51ce-8894-067caf2d3587" - } - }, - "sidecars": [], - "size": 297364322, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "7d7df8748ff56cdc", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.376916Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.376916Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 408868, - "uuid": "d4573d62-0ad9-5972-b972-f1d825bc7b2e" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.848028Z", - "extension": "png", - "id": "5d054b29-790a-463f-944f-b6f39c1f5d32", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-10T02:56:17Z", - "name": "Screenshot 2025-10-09 at 7.56.11 PM", - "sd_path": { - "Content": { - "content_id": "d4573d62-0ad9-5972-b972-f1d825bc7b2e" - } - }, - "sidecars": [], - "size": 408868, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "24f4400202050f5c", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.482292Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.482292Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 32616, - "uuid": "ca1e70ab-0ce5-5db0-8f44-1a50b4ac246f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.851537Z", - "extension": "png", - "id": "5eb45d81-3c2c-4280-822f-7fbbea092597", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-08T13:53:19Z", - "name": "Screenshot 2025-10-08 at 6.53.13 AM", - "sd_path": { - "Content": { - "content_id": "ca1e70ab-0ce5-5db0-8f44-1a50b4ac246f" - } - }, - "sidecars": [], - "size": 32616, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "41bd2c25822150d5", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.294262Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.294262Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 120513, - "uuid": "ae7850fc-e90e-5815-8c18-3c6f069d93e7" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.845213Z", - "extension": "png", - "id": "63d73a00-ee44-45bf-85bf-ce1de62667da", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-04T01:28:05Z", - "name": "Screenshot 2025-11-03 at 5.28.00 PM", - "sd_path": { - "Content": { - "content_id": "ae7850fc-e90e-5815-8c18-3c6f069d93e7" - } - }, - "sidecars": [], - "size": 120513, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "2e21ea7df3e3c7d1", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.530136Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.530137Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 17565, - "uuid": "f3ab9201-4596-5b08-a7cd-0043256d2179" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.853265Z", - "extension": "py", - "id": "64098014-db20-430d-86b3-6d05d6a358a0", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-17T01:07:46Z", - "name": "tax_calculator", - "sd_path": { - "Content": { - "content_id": "f3ab9201-4596-5b08-a7cd-0043256d2179" - } - }, - "sidecars": [], - "size": 17565, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3f275cc716c18f84", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.351327Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.351327Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3544, - "uuid": "e8638223-3fbb-59bb-9a1a-443784af277f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.847266Z", - "extension": "png", - "id": "6463f63d-7dbd-4275-92c2-5cefba4ceae9", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-14T03:49:26Z", - "name": "Screenshot 2025-10-13 at 8.49.20 PM", - "sd_path": { - "Content": { - "content_id": "e8638223-3fbb-59bb-9a1a-443784af277f" - } - }, - "sidecars": [], - "size": 3544, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "dc5adf06a610f1ec", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.494032Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.494032Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 13048132, - "uuid": "773a9b4c-3d95-5bff-a8fe-fc68bb99c7f3" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.851960Z", - "extension": "png", - "id": "6534b447-ecef-4a21-9a25-7cbf3fb8f57c", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-09T07:08:46Z", - "name": "IMG_0347", - "sd_path": { - "Content": { - "content_id": "773a9b4c-3d95-5bff-a8fe-fc68bb99c7f3" - } - }, - "sidecars": [], - "size": 13048132, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ed14194c6dbca648", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.445248Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.445248Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 130697, - "uuid": "f299d795-9ceb-5816-89f3-6a81c8c2fa49" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.850159Z", - "extension": "png", - "id": "69f37a2f-bb89-4652-928d-236001abe3a3", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-23T22:14:49Z", - "name": "Screenshot 2025-10-23 at 3.14.43 PM", - "sd_path": { - "Content": { - "content_id": "f299d795-9ceb-5816-89f3-6a81c8c2fa49" - } - }, - "sidecars": [], - "size": 130697, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "225603cadd156572", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.454391Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.454391Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 7080, - "uuid": "cdfced09-a3ae-538a-a51d-d6f27c9e91a8" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.850500Z", - "extension": "md", - "id": "6ceb9477-50bb-44ba-9573-b0659238bd4b", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T01:45:35Z", - "name": "TUPLE_VARIANTS_IMPLEMENTED", - "sd_path": { - "Content": { - "content_id": "cdfced09-a3ae-538a-a51d-d6f27c9e91a8" - } - }, - "sidecars": [], - "size": 7080, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "540b285ef2ed8275", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.548348Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.548348Z", - "mime_type_id": 14, - "text_content": null, - "total_size": 1450, - "uuid": "8363a41a-4e18-56b1-9a23-0312975640c7" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.854001Z", - "extension": "csv", - "id": "6eb36b22-37e8-45a8-8e24-dd0ae0926823", - "is_local": false, - "kind": { - "File": { - "extension": "csv" - } - }, - "modified_at": "2025-10-27T04:32:50Z", - "name": "2024_income_breakdown", - "sd_path": { - "Content": { - "content_id": "8363a41a-4e18-56b1-9a23-0312975640c7" - } - }, - "sidecars": [], - "size": 1450, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e726b698b9ba9ae9", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.408300Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.408300Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 164040080, - "uuid": "a9fa82d9-8192-5cde-9919-ef2815901622" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.848990Z", - "extension": "mov", - "id": "6eb694dd-d43c-411a-b7d5-aec6209d3161", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-09-29T22:17:22Z", - "name": "Screen Recording 2025-09-29 at 3.16.06 PM", - "sd_path": { - "Content": { - "content_id": "a9fa82d9-8192-5cde-9919-ef2815901622" - } - }, - "sidecars": [], - "size": 164040080, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ef56ed4dc26d128e", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.348469Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.348469Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3249022, - "uuid": "6d35d997-a671-5e02-8862-540bde8ffeff" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.847181Z", - "extension": "png", - "id": "6fd9b783-fbff-4d0b-95fc-1db79002ab06", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-05T01:14:22Z", - "name": "4369DEA3-E137-408E-8641-42FF42955272", - "sd_path": { - "Content": { - "content_id": "6d35d997-a671-5e02-8862-540bde8ffeff" - } - }, - "sidecars": [], - "size": 3249022, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "c97bdcd56064d8c3", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.278964Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.278964Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 655329, - "uuid": "317af9fe-39c3-565b-bbf2-b28aa83cf200" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.844686Z", - "extension": "png", - "id": "72f93b48-7d4d-439a-b509-20d7dcb8d9fe", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-07T07:54:41Z", - "name": "Screenshot 2025-11-06 at 11.54.36 PM", - "sd_path": { - "Content": { - "content_id": "317af9fe-39c3-565b-bbf2-b28aa83cf200" - } - }, - "sidecars": [], - "size": 655329, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d31c452c53cb565a", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.392613Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.392613Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 7745, - "uuid": "85771110-7017-5762-954b-cb8dff73ea4a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.848477Z", - "extension": "md", - "id": "730349c4-8bf5-43d8-856e-6151c239f5c6", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T01:45:35Z", - "name": "OPTIONAL_FIELDS_FIX_VERIFIED", - "sd_path": { - "Content": { - "content_id": "85771110-7017-5762-954b-cb8dff73ea4a" - } - }, - "sidecars": [], - "size": 7745, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3dad74526da427b2", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.342478Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.342478Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 4287356, - "uuid": "0b9e23e9-0b60-55c8-993a-400abd7ae28a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.846980Z", - "extension": "png", - "id": "775c2017-67d9-4adf-9f21-fb54eea490a7", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-02T03:52:18Z", - "name": "Screenshot 2025-11-01 at 8.52.12 PM", - "sd_path": { - "Content": { - "content_id": "0b9e23e9-0b60-55c8-993a-400abd7ae28a" - } - }, - "sidecars": [], - "size": 4287356, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "01a8562cc56a640b", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.569534Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.569534Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 2210059, - "uuid": "4d1c3b00-0035-5abd-9515-16fd887f6544" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.854824Z", - "extension": "png", - "id": "7bbf9271-64c3-45eb-bc7b-06fd95d5e5f5", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-15T07:35:47Z", - "name": "Screenshot 2025-10-15 at 12.35.42 AM", - "sd_path": { - "Content": { - "content_id": "4d1c3b00-0035-5abd-9515-16fd887f6544" - } - }, - "sidecars": [], - "size": 2210059, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "55c70be4b4891c98", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.491158Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.491158Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 379061, - "uuid": "ef2bab89-e2f8-5f5d-bedd-5608e344ad0e" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.851864Z", - "extension": "png", - "id": "7efe26e3-0916-46de-8d9e-1b6e0349ccf3", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-27T05:19:24Z", - "name": "Screenshot 2025-10-26 at 10.19.18 PM", - "sd_path": { - "Content": { - "content_id": "ef2bab89-e2f8-5f5d-bedd-5608e344ad0e" - } - }, - "sidecars": [], - "size": 379061, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "94ef9581fca63afa", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.285267Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.285267Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 81502, - "uuid": "ca50111a-27d8-5bd5-ad36-9e51d1fed19e" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.844876Z", - "extension": "png", - "id": "84fe0aac-00ac-466b-ad8e-04df9fb66216", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-04T22:53:02Z", - "name": "Screenshot 2025-10-04 at 3.52.57 PM", - "sd_path": { - "Content": { - "content_id": "ca50111a-27d8-5bd5-ad36-9e51d1fed19e" - } - }, - "sidecars": [], - "size": 81502, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "8d936ad9fc717ebc", - "entry_count": 2, - "first_seen_at": "2025-11-11T06:00:09.151567Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.276018Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1124381, - "uuid": "8fbec022-ba50-53e7-8251-221ac2143449" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.844510Z", - "extension": "png", - "id": "8826e0f9-502b-45cc-9b08-7b5a9816d485", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T04:18:33Z", - "name": "Screenshot 2025-10-12 at 9.18.32 PM (2)", - "sd_path": { - "Content": { - "content_id": "8fbec022-ba50-53e7-8251-221ac2143449" - } - }, - "sidecars": [], - "size": 1124381, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "a3495c736aba6463", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.430036Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.430036Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 71965207, - "uuid": "7a01544e-63dd-57b7-bb3b-d0901a81bab9" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.849622Z", - "extension": "mov", - "id": "895d9fc6-b773-4931-b7a5-9d381ab073da", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-14T08:59:22Z", - "name": "Screen Recording 2025-10-14 at 1.58.05 AM", - "sd_path": { - "Content": { - "content_id": "7a01544e-63dd-57b7-bb3b-d0901a81bab9" - } - }, - "sidecars": [], - "size": 71965207, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "78ed1106eb545ee1", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.518199Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.518199Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 26583, - "uuid": "1cbaa4d8-2e41-5b00-b10d-e3285ef786ed" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.852807Z", - "extension": "py", - "id": "8f160ad8-9004-48e0-8a76-35a93e1610fe", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-19T04:39:19Z", - "name": "email_parser", - "sd_path": { - "Content": { - "content_id": "1cbaa4d8-2e41-5b00-b10d-e3285ef786ed" - } - }, - "sidecars": [], - "size": 26583, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e5cc3a826c031f09", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.327515Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.327515Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 212069, - "uuid": "50b4fb59-34cc-535b-8a75-c437e1c17280" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.846409Z", - "extension": "png", - "id": "90c35dd8-7c5d-43ca-92de-b6b948185089", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T01:55:41Z", - "name": "Screenshot 2025-10-12 at 6.55.36 PM", - "sd_path": { - "Content": { - "content_id": "50b4fb59-34cc-535b-8a75-c437e1c17280" - } - }, - "sidecars": [], - "size": 212069, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "cc1eb60edbb36f65", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.373361Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.373361Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 1450013, - "uuid": "81e819f2-63c7-5095-8ab8-4abf0698ff0f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.847923Z", - "extension": "jpg", - "id": "931bf1d8-557c-4503-83fc-59ff84a1c61e", - "is_local": false, - "kind": { - "File": { - "extension": "jpg" - } - }, - "modified_at": "2025-10-27T02:47:35Z", - "name": "IMG_4142", - "sd_path": { - "Content": { - "content_id": "81e819f2-63c7-5095-8ab8-4abf0698ff0f" - } - }, - "sidecars": [], - "size": 1450013, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ae10caa0347f190c", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.476083Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.476083Z", - "mime_type_id": 8, - "text_content": null, - "total_size": 401408, - "uuid": "46377d2d-57aa-506a-b507-14418ced40e3" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.851318Z", - "extension": "db", - "id": "96db3465-63bf-48d9-8eec-ffbca55ac77f", - "is_local": false, - "kind": { - "File": { - "extension": "db" - } - }, - "modified_at": "2025-10-14T07:09:23Z", - "name": "database", - "sd_path": { - "Content": { - "content_id": "46377d2d-57aa-506a-b507-14418ced40e3" - } - }, - "sidecars": [], - "size": 401408, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "73116f15be09a92b", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.395687Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.395687Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 42980, - "uuid": "2974b2b7-ee98-5a14-9b01-60f3078cf8b3" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.848569Z", - "extension": "png", - "id": "984b131d-b25c-4290-ba9f-91fcc339336c", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-11T17:32:18Z", - "name": "Screenshot 2025-10-11 at 10.32.12 AM", - "sd_path": { - "Content": { - "content_id": "2974b2b7-ee98-5a14-9b01-60f3078cf8b3" - } - }, - "sidecars": [], - "size": 42980, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3bd4235a4e60d739", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.560606Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.560606Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1535928, - "uuid": "9d423ee1-377d-5ffb-a361-e57d9250730c" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.854518Z", - "extension": "png", - "id": "997a1060-c10b-487a-a18a-f4b22da1db0e", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T12:19:57Z", - "name": "Screenshot 2025-09-27 at 5.19.51 AM", - "sd_path": { - "Content": { - "content_id": "9d423ee1-377d-5ffb-a361-e57d9250730c" - } - }, - "sidecars": [], - "size": 1535928, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "6cb4576591a2be6a", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.315160Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.315160Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1258750, - "uuid": "de24c797-28d0-5327-bcb4-136220609deb" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.846007Z", - "extension": "png", - "id": "a187280e-1ece-471c-b98e-ab254f9e8646", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-30T06:28:21Z", - "name": "Screenshot 2025-10-29 at 11.28.16 PM", - "sd_path": { - "Content": { - "content_id": "de24c797-28d0-5327-bcb4-136220609deb" - } - }, - "sidecars": [], - "size": 1258750, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "f6e2cde3d36b099e", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.309292Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.309293Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 60992, - "uuid": "aaadb35b-82fd-51ea-8f5a-c7c4f9676bba" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.845808Z", - "extension": "png", - "id": "a32257df-c763-46a2-9a47-7c420cd080ca", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T10:12:52Z", - "name": "Screenshot 2025-10-13 at 3.12.46 AM", - "sd_path": { - "Content": { - "content_id": "aaadb35b-82fd-51ea-8f5a-c7c4f9676bba" - } - }, - "sidecars": [], - "size": 60992, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "12ad58510c87c445", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.557464Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.557464Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 1212, - "uuid": "fb62f73a-9597-52b0-9ef6-d9a8ebd4f653" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.854417Z", - "extension": "py", - "id": "a56ae5f8-4874-4c8a-bf17-eed33ffa8430", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-16T03:42:04Z", - "name": "init_db", - "sd_path": { - "Content": { - "content_id": "fb62f73a-9597-52b0-9ef6-d9a8ebd4f653" - } - }, - "sidecars": [], - "size": 1212, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "fdaee937b2fc7e02", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.318144Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.318144Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1284257, - "uuid": "2a7c5a95-1953-54c7-8204-66f748a77e35" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.846101Z", - "extension": "png", - "id": "a83c853c-c1fd-43d4-bc20-9b5305feb605", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-30T06:28:09Z", - "name": "Screenshot 2025-10-29 at 11.28.04 PM", - "sd_path": { - "Content": { - "content_id": "2a7c5a95-1953-54c7-8204-66f748a77e35" - } - }, - "sidecars": [], - "size": 1284257, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "a63384910ccf3678", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.469700Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.469700Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 533444, - "uuid": "9c588a72-4ae6-5d0b-9a1b-bd8c4bcf77a7" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.851081Z", - "extension": "jpeg", - "id": "a8b3ffdc-0f0c-4c6e-8455-bf55a6f0616d", - "is_local": false, - "kind": { - "File": { - "extension": "jpeg" - } - }, - "modified_at": "2025-10-26T01:19:56Z", - "name": "IMG_0173", - "sd_path": { - "Content": { - "content_id": "9c588a72-4ae6-5d0b-9a1b-bd8c4bcf77a7" - } - }, - "sidecars": [], - "size": 533444, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "dcf625f85d2cd9f9", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.420680Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.420680Z", - "mime_type_id": 7, - "text_content": null, - "total_size": 44962, - "uuid": "b1c9d0e2-c177-59dc-9ac6-a4d70a14b52f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.849352Z", - "extension": "webp", - "id": "adf34739-2ebe-44c3-9ad7-40833c6a2bd7", - "is_local": false, - "kind": { - "File": { - "extension": "webp" - } - }, - "modified_at": "2025-10-30T07:54:54Z", - "name": "notify-subscribe.png", - "sd_path": { - "Content": { - "content_id": "b1c9d0e2-c177-59dc-9ac6-a4d70a14b52f" - } - }, - "sidecars": [], - "size": 44962, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "c183d86e49ba0a9a", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.439078Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.439078Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 15681, - "uuid": "3525a34f-5f3a-5f3d-aa68-eec7b7ca371a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.849961Z", - "extension": "md", - "id": "b03a0937-6e53-4a6c-9780-01940a1bef37", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T01:45:35Z", - "name": "REFACTOR_PLAN", - "sd_path": { - "Content": { - "content_id": "3525a34f-5f3a-5f3d-aa68-eec7b7ca371a" - } - }, - "sidecars": [], - "size": 15681, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "18d735f26f333d54", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.324521Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.324521Z", - "mime_type_id": 4, - "text_content": null, - "total_size": 321844, - "uuid": "a3ef3206-4576-5395-b3d7-7090023d2d99" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.846315Z", - "extension": "pdf", - "id": "b0d71add-544c-4de8-85d0-b62775b8cdee", - "is_local": false, - "kind": { - "File": { - "extension": "pdf" - } - }, - "modified_at": "2025-02-04T02:16:26Z", - "name": "imm5557e", - "sd_path": { - "Content": { - "content_id": "a3ef3206-4576-5395-b3d7-7090023d2d99" - } - }, - "sidecars": [], - "size": 321844, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3a9f5142cdced0d9", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.300115Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.300115Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 715281, - "uuid": "3b98956a-9657-5f37-8c9b-4b97da9f3211" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.845475Z", - "extension": "png", - "id": "b0e70141-383d-43d9-a3a8-5b762ecdc942", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-27T07:13:51Z", - "name": "Screenshot 2025-10-27 at 12.12.29 AM", - "sd_path": { - "Content": { - "content_id": "3b98956a-9657-5f37-8c9b-4b97da9f3211" - } - }, - "sidecars": [], - "size": 715281, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d950c71892eb3c80", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.306241Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.306241Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1572598, - "uuid": "1433cb86-cf2f-51bf-b8c9-67816109b103" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.845708Z", - "extension": "png", - "id": "b516db6f-0769-4925-9315-49844faef5ed", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-07T09:28:10Z", - "name": "Screenshot 2025-11-07 at 1.28.04 AM", - "sd_path": { - "Content": { - "content_id": "1433cb86-cf2f-51bf-b8c9-67816109b103" - } - }, - "sidecars": [], - "size": 1572598, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d2d6002c5dc8573b", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.404753Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.404753Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 126184367, - "uuid": "eaf41966-0e05-5b66-9e14-ca04f50178c0" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.848881Z", - "extension": "mov", - "id": "b530f263-1f1f-4f65-bb77-d6a66233a74d", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-09-29T22:32:13Z", - "name": "Spacedrive v2 Development Gource", - "sd_path": { - "Content": { - "content_id": "eaf41966-0e05-5b66-9e14-ca04f50178c0" - } - }, - "sidecars": [], - "size": 126184367, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3874e35a6426d192", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.398590Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.398590Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 15026, - "uuid": "d1447e7b-ece7-5d5e-87fb-a627eace9309" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.848656Z", - "extension": "md", - "id": "b6a18f79-1c99-432d-9ebd-751d912d7191", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T00:08:40Z", - "name": "REFACTOR_COMPLETE_SUMMARY", - "sd_path": { - "Content": { - "content_id": "d1447e7b-ece7-5d5e-87fb-a627eace9309" - } - }, - "sidecars": [], - "size": 15026, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "73e89631edd9e759", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.370310Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.370310Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 206829, - "uuid": "e9f13629-c7a0-5e70-86ce-4b6f59b00d32" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.847838Z", - "extension": "jpg", - "id": "bb9ced39-f477-4e9e-982a-347d675060f6", - "is_local": false, - "kind": { - "File": { - "extension": "jpg" - } - }, - "modified_at": "2025-11-05T01:09:13Z", - "name": "IMG_7106", - "sd_path": { - "Content": { - "content_id": "e9f13629-c7a0-5e70-86ce-4b6f59b00d32" - } - }, - "sidecars": [], - "size": 206829, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "4b0f0d71d017bdc5", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.389768Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.389768Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 362192, - "uuid": "66da3dfe-03c3-5d70-be23-92d00e382c75" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.848387Z", - "extension": "png", - "id": "bde30bac-8af3-4852-8d7d-e5a8ed1a08de", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-02T01:43:43Z", - "name": "Screenshot 2025-11-01 at 6.43.38 PM", - "sd_path": { - "Content": { - "content_id": "66da3dfe-03c3-5d70-be23-92d00e382c75" - } - }, - "sidecars": [], - "size": 362192, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "02d5165765b1fca9", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.363912Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.363912Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1704024, - "uuid": "7ec1a8fc-f8c6-5363-bf3e-fd1403ea4a46" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.847637Z", - "extension": "png", - "id": "c09d4373-2c18-4be2-84f7-c0e73ad34e78", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-07T04:10:58Z", - "name": "Screenshot 2025-11-06 at 8.10.53 PM", - "sd_path": { - "Content": { - "content_id": "7ec1a8fc-f8c6-5363-bf3e-fd1403ea4a46" - } - }, - "sidecars": [], - "size": 1704024, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "83d5cf76c1dc5309", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.354466Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.354466Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 268333, - "uuid": "5cd6897a-b1e8-50af-9604-2fbaa5ad1413" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.847357Z", - "extension": "png", - "id": "c1a5b331-51c4-4e2c-80b5-92aa877d5506", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-06T10:46:44Z", - "name": "Screenshot 2025-11-06 at 2.46.39 AM", - "sd_path": { - "Content": { - "content_id": "5cd6897a-b1e8-50af-9604-2fbaa5ad1413" - } - }, - "sidecars": [], - "size": 268333, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "94fa3cb5e3253187", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.282027Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.282027Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 580774, - "uuid": "b231c2c0-7890-52d4-821b-52af800f811a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.844783Z", - "extension": "png", - "id": "c937a25b-4c9b-4d9d-840e-a42cea3890f8", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T03:06:49Z", - "name": "Screenshot 2025-10-12 at 8.06.43 PM", - "sd_path": { - "Content": { - "content_id": "b231c2c0-7890-52d4-821b-52af800f811a" - } - }, - "sidecars": [], - "size": 580774, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "825b3b9fc5aae17d", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.383374Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.383374Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 2933730, - "uuid": "da951e85-c3c1-5eeb-b2a8-d40ab3f139b9" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.848209Z", - "extension": "mov", - "id": "c9d25ef9-2951-4c38-86e6-09d712db2aad", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-13T06:55:54Z", - "name": "Screen Recording 2025-10-12 at 11.55.35 PM", - "sd_path": { - "Content": { - "content_id": "da951e85-c3c1-5eeb-b2a8-d40ab3f139b9" - } - }, - "sidecars": [], - "size": 2933730, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "62ede5eea1b01177", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.479394Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.479394Z", - "mime_type_id": 9, - "text_content": null, - "total_size": 505465731, - "uuid": "f80388b7-338d-5e94-af11-5d5b78a964ea" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.851434Z", - "extension": "zip", - "id": "cdc9ddc8-2a90-4f1f-bd7e-3fcaf9baaa38", - "is_local": false, - "kind": { - "File": { - "extension": "zip" - } - }, - "modified_at": "2025-10-04T07:30:13Z", - "name": "Andrew Willis Files", - "sd_path": { - "Content": { - "content_id": "f80388b7-338d-5e94-af11-5d5b78a964ea" - } - }, - "sidecars": [], - "size": 505465731, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "77dee041207c3aae", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.485278Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.485278Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1738553, - "uuid": "76711832-5c9a-59f2-9952-aea46bffb3ef" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.851631Z", - "extension": "png", - "id": "cef60505-a433-4057-820e-b27cb30184e4", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-10T06:00:14Z", - "name": "Screenshot 2025-10-09 at 11.00.03 PM", - "sd_path": { - "Content": { - "content_id": "76711832-5c9a-59f2-9952-aea46bffb3ef" - } - }, - "sidecars": [], - "size": 1738553, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "960a0dbc1a8df0b2", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.297175Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.297175Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 11010444, - "uuid": "607d468a-1420-57e7-8b91-64010531d762" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.845310Z", - "extension": "png", - "id": "cf3036b8-3feb-41c9-970d-84bddc7c9fa3", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T04:18:39Z", - "name": "Screenshot 2025-10-12 at 9.18.32 PM 1", - "sd_path": { - "Content": { - "content_id": "607d468a-1420-57e7-8b91-64010531d762" - } - }, - "sidecars": [], - "size": 11010444, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "7dcf4bcc014d4a38", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.414640Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.414641Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 70707, - "uuid": "24cd76d5-56aa-5950-b665-89b71b77c075" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.849177Z", - "extension": "jpg", - "id": "d50f76f2-4d9a-422d-80ef-9ef243fbdbb5", - "is_local": false, - "kind": { - "File": { - "extension": "jpg" - } - }, - "modified_at": "2025-11-05T01:15:48Z", - "name": "photo-2", - "sd_path": { - "Content": { - "content_id": "24cd76d5-56aa-5950-b665-89b71b77c075" - } - }, - "sidecars": [], - "size": 70707, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "bbd88d40e54ed662", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.321364Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.321364Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 775102, - "uuid": "12a736ab-1001-51c4-8834-b2ab21b1f3bd" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.846194Z", - "extension": "png", - "id": "d5ec2119-00fe-4be3-a3c2-dfd4830ae0ca", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T04:49:41Z", - "name": "Screenshot 2025-10-25 at 9.49.24 PM", - "sd_path": { - "Content": { - "content_id": "12a736ab-1001-51c4-8834-b2ab21b1f3bd" - } - }, - "sidecars": [], - "size": 775102, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "aa57877bc57772d6", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.554585Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.554585Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 19709, - "uuid": "3bc68d7c-6871-5472-b3c8-ae358d655f61" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.854318Z", - "extension": "py", - "id": "dc3c7d6c-614b-4c87-984a-561c4e410614", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-19T03:14:38Z", - "name": "main", - "sd_path": { - "Content": { - "content_id": "3bc68d7c-6871-5472-b3c8-ae358d655f61" - } - }, - "sidecars": [], - "size": 19709, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "f8ac7efdd6821d72", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.312274Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.312274Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 11875223, - "uuid": "19e8a3e5-a781-56ca-8fd5-459da2f2b709" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.845909Z", - "extension": "png", - "id": "de86a3a6-2eda-4c51-b890-17abd92cac9a", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-30T06:42:37Z", - "name": "Screenshot 2025-10-29 at 11.42.31 PM", - "sd_path": { - "Content": { - "content_id": "19e8a3e5-a781-56ca-8fd5-459da2f2b709" - } - }, - "sidecars": [], - "size": 11875223, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "2c9f06f0b7bfbda6", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.536140Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.536140Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 46733, - "uuid": "ff5327a6-be09-5a62-8960-cc46a72ff65c" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.853463Z", - "extension": "py", - "id": "df93a0e3-c1ca-4f7a-85d1-44a04b39c58f", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-18T17:45:01Z", - "name": "parser", - "sd_path": { - "Content": { - "content_id": "ff5327a6-be09-5a62-8960-cc46a72ff65c" - } - }, - "sidecars": [], - "size": 46733, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e8777b01b4683f90", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.457372Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.457372Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 310630, - "uuid": "ced5cb25-87f1-5f07-91ec-f34b75f7c722" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.850644Z", - "extension": "png", - "id": "e05af25b-08bf-4660-8784-e65f25081d70", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-06T01:11:36Z", - "name": "Screenshot 2025-11-05 at 5.11.30 PM", - "sd_path": { - "Content": { - "content_id": "ced5cb25-87f1-5f07-91ec-f34b75f7c722" - } - }, - "sidecars": [], - "size": 310630, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "025030b27bab098f", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.466622Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.466622Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 103047, - "uuid": "b69fdcd2-cbda-5c54-b5e4-30a2ed91ae76" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.850986Z", - "extension": "png", - "id": "e09faf0b-8a54-4802-9115-0af58998897e", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-04T01:28:37Z", - "name": "Screenshot 2025-11-03 at 5.28.32 PM", - "sd_path": { - "Content": { - "content_id": "b69fdcd2-cbda-5c54-b5e4-30a2ed91ae76" - } - }, - "sidecars": [], - "size": 103047, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "4650258d6bf4465f", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.442008Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.442008Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 99465, - "uuid": "5b328408-5a86-5ef3-b598-f71b297ab6f8" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.850055Z", - "extension": "png", - "id": "e133633f-feed-4172-b425-0d1595bd7df0", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-01T00:34:09Z", - "name": "Screenshot 2025-10-31 at 5.34.03 PM", - "sd_path": { - "Content": { - "content_id": "5b328408-5a86-5ef3-b598-f71b297ab6f8" - } - }, - "sidecars": [], - "size": 99465, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "74fd9e6cf5fe222c", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.411229Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.411229Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 218378, - "uuid": "c8f426e6-8260-5cec-bdf4-80c67dbdf3ba" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.849085Z", - "extension": "png", - "id": "e5614d13-3529-47de-bedf-457c58f095b0", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-08T03:04:35Z", - "name": "Screenshot 2025-11-07 at 7.04.29 PM", - "sd_path": { - "Content": { - "content_id": "c8f426e6-8260-5cec-bdf4-80c67dbdf3ba" - } - }, - "sidecars": [], - "size": 218378, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "80a1c9c39902eda8", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.551562Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.551562Z", - "mime_type_id": 15, - "text_content": null, - "total_size": 280569, - "uuid": "c5441068-f6ca-5e7b-981d-24bf88aa67b6" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.854093Z", - "extension": "lock", - "id": "e6f2fcbb-6683-400b-881e-8592e672c762", - "is_local": false, - "kind": { - "File": { - "extension": "lock" - } - }, - "modified_at": "2025-04-19T02:42:36Z", - "name": "poetry", - "sd_path": { - "Content": { - "content_id": "c5441068-f6ca-5e7b-981d-24bf88aa67b6" - } - }, - "sidecars": [], - "size": 280569, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "421715d465c58201", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.288230Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.288230Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 78902998, - "uuid": "ebe4ea2a-4c2f-5107-a92d-211cce355001" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.844968Z", - "extension": "mov", - "id": "ec6ee744-0509-4b77-941c-6fd5e859e1f4", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-14T09:51:01Z", - "name": "Cloud support working", - "sd_path": { - "Content": { - "content_id": "ebe4ea2a-4c2f-5107-a92d-211cce355001" - } - }, - "sidecars": [], - "size": 78902998, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e1feea641bd57cae", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.448276Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.448276Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1144352, - "uuid": "a3a96909-9677-5854-aeec-3a937b65e370" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.850264Z", - "extension": "png", - "id": "efaa57d1-0dc3-44d3-90ab-beadcd5e7be3", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-04T02:10:33Z", - "name": "Screenshot 2025-11-03 at 6.10.27 PM", - "sd_path": { - "Content": { - "content_id": "a3a96909-9677-5854-aeec-3a937b65e370" - } - }, - "sidecars": [], - "size": 1144352, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "9a66281e4c9848af", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.333218Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.333218Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 83469419, - "uuid": "983dcf30-e75f-51ee-9d10-3f0f3a8459e6" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.846611Z", - "extension": "mov", - "id": "f0069d43-3d1f-4152-989d-3e00d4c2206a", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-08T15:15:06Z", - "name": "spacedrive-gource-insta", - "sd_path": { - "Content": { - "content_id": "983dcf30-e75f-51ee-9d10-3f0f3a8459e6" - } - }, - "sidecars": [], - "size": 83469419, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "1bdee76c510adad9", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.542322Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.542322Z", - "mime_type_id": 13, - "text_content": null, - "total_size": 5995, - "uuid": "80b69e5d-7eaa-5510-bd17-ed0032d7cbbb" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.853775Z", - "extension": "json", - "id": "f3656fc5-47dd-4f05-bc75-fbd75b7d5fc7", - "is_local": false, - "kind": { - "File": { - "extension": "json" - } - }, - "modified_at": "2025-04-18T18:33:41Z", - "name": "non_taxable_patterns", - "sd_path": { - "Content": { - "content_id": "80b69e5d-7eaa-5510-bd17-ed0032d7cbbb" - } - }, - "sidecars": [], - "size": 5995, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "cac3a3a2f998ace0", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.275294Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.275294Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 396629, - "uuid": "2f14ede8-8135-5f97-afce-4ba8d52276b5" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.844356Z", - "extension": "png", - "id": "f391f25d-5153-4134-bf91-c07223e51a29", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-01T00:51:23Z", - "name": "Screenshot 2025-10-31 at 5.51.17 PM", - "sd_path": { - "Content": { - "content_id": "2f14ede8-8135-5f97-afce-4ba8d52276b5" - } - }, - "sidecars": [], - "size": 396629, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "518c51e8f08bb19c", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.572419Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.572419Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3544, - "uuid": "dd7e35e1-0e33-534e-b564-106624f4a4c6" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.854920Z", - "extension": "png", - "id": "f6482acf-87c7-4f26-bd6a-de028eb48c2c", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T01:20:57Z", - "name": "Screenshot 2025-09-26 at 6.20.53 PM", - "sd_path": { - "Content": { - "content_id": "dd7e35e1-0e33-534e-b564-106624f4a4c6" - } - }, - "sidecars": [], - "size": 3544, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "6a4531bfaa7dd91b", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.532919Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.532919Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 10772, - "uuid": "8c005d24-9054-5ef7-b163-a01a823d3dc1" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.853362Z", - "extension": "md", - "id": "fb440704-663d-4b39-a52f-c7e922fc9b61", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-04-17T01:08:35Z", - "name": "README", - "sd_path": { - "Content": { - "content_id": "8c005d24-9054-5ef7-b163-a01a823d3dc1" - } - }, - "sidecars": [], - "size": 10772, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "64b3062f354235db", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.539077Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.539077Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 15870, - "uuid": "b163b84b-b7d5-5cd2-b7a2-88e8be1f918c" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.853555Z", - "extension": "py", - "id": "fba085f3-7ffa-41f2-9a32-8a018ba296be", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-19T04:39:35Z", - "name": "api", - "sd_path": { - "Content": { - "content_id": "b163b84b-b7d5-5cd2-b7a2-88e8be1f918c" - } - }, - "sidecars": [], - "size": 15870, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "292663fbdaa5db55", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.379903Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.379903Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 239688, - "uuid": "b839bd41-7714-5ea6-884e-d21c84de7b87" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.848115Z", - "extension": "png", - "id": "fc17a99d-56bc-4435-9c7e-1be139d9cf09", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-04T13:13:54Z", - "name": "Screenshot 2025-11-04 at 5.13.49 AM", - "sd_path": { - "Content": { - "content_id": "b839bd41-7714-5ea6-884e-d21c84de7b87" - } - }, - "sidecars": [], - "size": 239688, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "879bc7e5eaf1e01b", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.527215Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.527215Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 4502, - "uuid": "e369539e-359d-501e-bded-c8be1a6267ee" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.853140Z", - "extension": "py", - "id": "fec29a46-4bc6-4cb4-a214-e7592b1b0707", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-16T13:05:26Z", - "name": "logger", - "sd_path": { - "Content": { - "content_id": "e369539e-359d-501e-bded-c8be1a6267ee" - } - }, - "sidecars": [], - "size": 4502, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "0605ca4398566349", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.672526Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.672526Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 112679, - "uuid": "bab97728-ed9f-5f8e-9228-5e03218accbe" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.856997Z", - "extension": "png", - "id": "04313e34-4895-4a40-a285-d9646c2a8be3", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T08:17:52Z", - "name": "Screenshot 2025-09-27 at 1.17.46 AM", - "sd_path": { - "Content": { - "content_id": "bab97728-ed9f-5f8e-9228-5e03218accbe" - } - }, - "sidecars": [], - "size": 112679, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "6c5d491edf11bf2d", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.631289Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.631289Z", - "mime_type_id": 3, - "text_content": null, - "total_size": 32768, - "uuid": "43ebc012-1d7f-5506-9ac3-2641665ce26a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.855244Z", - "extension": "db-shm", - "id": "0e069dc6-ba68-431e-88b2-34bed5c9297a", - "is_local": false, - "kind": { - "File": { - "extension": "db-shm" - } - }, - "modified_at": "2025-10-23T02:47:33Z", - "name": "database", - "sd_path": { - "Content": { - "content_id": "43ebc012-1d7f-5506-9ac3-2641665ce26a" - } - }, - "sidecars": [], - "size": 32768, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "31af49cbd1820aa5", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.658999Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.658999Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 56328, - "uuid": "3600d4c1-7719-500f-9442-2dd268684d4b" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.856442Z", - "extension": "png", - "id": "0ef18555-4e15-4230-89a9-b265283f0fd1", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T01:07:21Z", - "name": "Screenshot 2025-09-26 at 6.00.07 PM", - "sd_path": { - "Content": { - "content_id": "3600d4c1-7719-500f-9442-2dd268684d4b" - } - }, - "sidecars": [], - "size": 56328, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "c272ea0ef784998e", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.665962Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.665962Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 66583, - "uuid": "483c1154-70a4-5684-aa67-fde4e6defd51" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.856673Z", - "extension": "png", - "id": "10ec6b42-4adf-48a8-bd3d-bfd7ec9301d0", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T00:46:40Z", - "name": "Screenshot 2025-09-26 at 5.46.35 PM", - "sd_path": { - "Content": { - "content_id": "483c1154-70a4-5684-aa67-fde4e6defd51" - } - }, - "sidecars": [], - "size": 66583, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "1241d430cbb99306", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.703037Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.703037Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 234, - "uuid": "726cfbbf-1374-52df-90c8-9e504d03a4b2" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.858301Z", - "extension": "py", - "id": "1b266745-8818-47a7-955a-c4fe10abf895", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-18T17:33:19Z", - "name": "thresholds", - "sd_path": { - "Content": { - "content_id": "726cfbbf-1374-52df-90c8-9e504d03a4b2" - } - }, - "sidecars": [], - "size": 234, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b7690e2b29b11b4c", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.705973Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.705973Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 142, - "uuid": "fc4b214c-c6b8-53ef-a329-7ed31a4fe2f4" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.858394Z", - "extension": "py", - "id": "20f73ee2-b51f-47ae-94de-906164d89283", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-18T17:29:56Z", - "name": "header_words", - "sd_path": { - "Content": { - "content_id": "fc4b214c-c6b8-53ef-a329-7ed31a4fe2f4" - } - }, - "sidecars": [], - "size": 142, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d9fc9133c3547444", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.721448Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.721448Z", - "mime_type_id": 17, - "text_content": null, - "total_size": 7156, - "uuid": "2e90f0da-dcd4-56e3-a4ca-d83b7d49d836" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.858920Z", - "extension": "js", - "id": "2f80fd6e-e7b5-4ad1-a595-b837aabaad07", - "is_local": false, - "kind": { - "File": { - "extension": "js" - } - }, - "modified_at": "2025-04-16T22:10:01Z", - "name": "App", - "sd_path": { - "Content": { - "content_id": "2e90f0da-dcd4-56e3-a4ca-d83b7d49d836" - } - }, - "sidecars": [], - "size": 7156, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "84d9a66e7359ab58", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.696969Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.696969Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 394, - "uuid": "68a75121-ee34-5082-9ab2-1b2b88b39d32" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.858081Z", - "extension": "py", - "id": "311cac48-2c59-4494-860b-097c477d0038", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-18T17:38:00Z", - "name": "patterns", - "sd_path": { - "Content": { - "content_id": "68a75121-ee34-5082-9ab2-1b2b88b39d32" - } - }, - "sidecars": [], - "size": 394, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "cdeb49fd7495f86e", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.675501Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.675501Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 389581, - "uuid": "8b9e8446-5ff8-5f33-a770-298b7998c1d8" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.857087Z", - "extension": "png", - "id": "354c6fba-2e49-4266-9c77-c1e3bd90ce83", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T01:20:41Z", - "name": "Screenshot 2025-09-26 at 6.20.35 PM", - "sd_path": { - "Content": { - "content_id": "8b9e8446-5ff8-5f33-a770-298b7998c1d8" - } - }, - "sidecars": [], - "size": 389581, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5982adfd27bea679", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.690760Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.690761Z", - "mime_type_id": 13, - "text_content": null, - "total_size": 708993, - "uuid": "bf8f907c-e704-544d-849e-b1fb6a7848e4" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.857806Z", - "extension": "json", - "id": "52542088-c499-487f-a72e-90b7bbc37706", - "is_local": false, - "kind": { - "File": { - "extension": "json" - } - }, - "modified_at": "2025-07-16T20:36:53Z", - "name": "package-lock", - "sd_path": { - "Content": { - "content_id": "bf8f907c-e704-544d-849e-b1fb6a7848e4" - } - }, - "sidecars": [], - "size": 708993, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "dfd30ea874c512c3", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.637748Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.637748Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 430386, - "uuid": "9d9901bd-e169-589e-ab4c-3570efb55464" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.855637Z", - "extension": "png", - "id": "62922ca0-0be5-43b7-a36e-78ae4210c142", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-16T12:12:04Z", - "name": "Screenshot 2025-10-16 at 5.11.58 AM", - "sd_path": { - "Content": { - "content_id": "9d9901bd-e169-589e-ab4c-3570efb55464" - } - }, - "sidecars": [], - "size": 430386, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "f433b47a39b53e7d", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.730527Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.730527Z", - "mime_type_id": 17, - "text_content": null, - "total_size": 11965, - "uuid": "fb32b2cf-30e4-5dba-89fa-0bc19987fa31" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.859221Z", - "extension": "js", - "id": "7b5501f3-aa0b-4917-a085-0fbbf9d0301e", - "is_local": false, - "kind": { - "File": { - "extension": "js" - } - }, - "modified_at": "2025-04-19T04:12:53Z", - "name": "TaxSummary", - "sd_path": { - "Content": { - "content_id": "fb32b2cf-30e4-5dba-89fa-0bc19987fa31" - } - }, - "sidecars": [], - "size": 11965, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "030458e2de24b521", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.634814Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.634814Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 104567, - "uuid": "d4a3095f-223a-53d5-9d4c-551169f1902b" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.855502Z", - "extension": "png", - "id": "86e870d0-71f8-4da6-99a7-2356e1c827fe", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-28T09:26:03Z", - "name": "Screenshot 2025-09-28 at 2.25.57 AM", - "sd_path": { - "Content": { - "content_id": "d4a3095f-223a-53d5-9d4c-551169f1902b" - } - }, - "sidecars": [], - "size": 104567, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "9c43bf24c6916491", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.709241Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.709241Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 454, - "uuid": "45e01a90-1693-5369-97be-2645777c9742" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.858485Z", - "extension": "py", - "id": "98a63dd1-fd49-4fa2-befe-01664c129d50", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-18T17:38:47Z", - "name": "__init__", - "sd_path": { - "Content": { - "content_id": "45e01a90-1693-5369-97be-2645777c9742" - } - }, - "sidecars": [], - "size": 454, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3e68b3dd07b63b9c", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.662520Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.662520Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3549, - "uuid": "bfb70aa1-9c54-5ef7-8d9d-6d0d4178c263" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.856571Z", - "extension": "png", - "id": "9ad3c070-1a89-4f44-8cfb-0b8ccf338d33", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-15T07:14:16Z", - "name": "Screenshot 2025-10-15 at 12.14.10 AM", - "sd_path": { - "Content": { - "content_id": "bfb70aa1-9c54-5ef7-8d9d-6d0d4178c263" - } - }, - "sidecars": [], - "size": 3549, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e5932b85d71a7074", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.718371Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.718371Z", - "mime_type_id": 17, - "text_content": null, - "total_size": 231, - "uuid": "133dce59-92bf-592e-897e-545fcd6704ee" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.858831Z", - "extension": "js", - "id": "9c958528-dbea-44b8-ba48-71c65e077f13", - "is_local": false, - "kind": { - "File": { - "extension": "js" - } - }, - "modified_at": "2025-04-16T13:28:18Z", - "name": "index", - "sd_path": { - "Content": { - "content_id": "133dce59-92bf-592e-897e-545fcd6704ee" - } - }, - "sidecars": [], - "size": 231, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ec4451bbf1cb2bcb", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.699904Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.699904Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 364, - "uuid": "8937a8c7-9826-5a4f-9f7d-ae20e64973c8" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.858209Z", - "extension": "py", - "id": "a9130f6c-816e-45c9-b335-d045190a2d92", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-18T18:14:15Z", - "name": "proximity_thresholds", - "sd_path": { - "Content": { - "content_id": "8937a8c7-9826-5a4f-9f7d-ae20e64973c8" - } - }, - "sidecars": [], - "size": 364, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b9bf27f6719d5773", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.724528Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.724529Z", - "mime_type_id": 17, - "text_content": null, - "total_size": 9574, - "uuid": "afe3c0b8-0fa7-5773-b9eb-889393e61d8b" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.859011Z", - "extension": "js", - "id": "a9223e8c-d0b1-461b-9d8c-b2b7551e381d", - "is_local": false, - "kind": { - "File": { - "extension": "js" - } - }, - "modified_at": "2025-04-19T04:08:22Z", - "name": "StatementViewer", - "sd_path": { - "Content": { - "content_id": "afe3c0b8-0fa7-5773-b9eb-889393e61d8b" - } - }, - "sidecars": [], - "size": 9574, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "8f9ca59b0ef3b99d", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.715270Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.715270Z", - "mime_type_id": 16, - "text_content": null, - "total_size": 894, - "uuid": "028ebbe8-f306-5463-9f30-836f771ad10c" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.858738Z", - "extension": "html", - "id": "af98a1a8-464d-4b2e-8e45-a833bcdfdf62", - "is_local": false, - "kind": { - "File": { - "extension": "html" - } - }, - "modified_at": "2025-04-16T13:31:20Z", - "name": "index", - "sd_path": { - "Content": { - "content_id": "028ebbe8-f306-5463-9f30-836f771ad10c" - } - }, - "sidecars": [], - "size": 894, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "55d821f3663ec7ab", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.684827Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.684827Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 41275, - "uuid": "57f6356c-effd-5c14-9b21-60507cc2d7fb" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.857414Z", - "extension": "png", - "id": "b11afb0a-cc8b-44a8-aeaf-e7033a71a8f2", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T14:50:23Z", - "name": "Google_2015_logo.svg", - "sd_path": { - "Content": { - "content_id": "57f6356c-effd-5c14-9b21-60507cc2d7fb" - } - }, - "sidecars": [], - "size": 41275, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "51677af6c6f0e3e9", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.655845Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.655845Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1674604, - "uuid": "e9e4cd5a-c2b9-51c9-abc5-2cd7d1bb6e73" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.856343Z", - "extension": "png", - "id": "b3bc14f0-912b-48f6-b1f3-0d48693074e3", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T12:02:38Z", - "name": "Screenshot 2025-09-27 at 5.02.26 AM", - "sd_path": { - "Content": { - "content_id": "e9e4cd5a-c2b9-51c9-abc5-2cd7d1bb6e73" - } - }, - "sidecars": [], - "size": 1674604, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3e130b974d3004e3", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.712125Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.712125Z", - "mime_type_id": 11, - "text_content": null, - "total_size": 469, - "uuid": "45b6715d-e78f-5734-9c1f-346a4cc5b04a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.858567Z", - "extension": "py", - "id": "bc95af30-3056-41a8-ba3a-987fc730cdf8", - "is_local": false, - "kind": { - "File": { - "extension": "py" - } - }, - "modified_at": "2025-04-18T17:43:17Z", - "name": "column_ranges", - "sd_path": { - "Content": { - "content_id": "45b6715d-e78f-5734-9c1f-346a4cc5b04a" - } - }, - "sidecars": [], - "size": 469, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d9e71469bdd716bc", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.687673Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.687673Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 829, - "uuid": "d2107827-414d-5e74-b8bf-38286f131f88" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.857701Z", - "extension": "md", - "id": "c272b175-21d7-4c27-a690-3b9f2dbfadce", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-04-16T13:40:09Z", - "name": "README", - "sd_path": { - "Content": { - "content_id": "d2107827-414d-5e74-b8bf-38286f131f88" - } - }, - "sidecars": [], - "size": 829, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "a03ceb99e09ff5fd", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.646711Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.646711Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 133482, - "uuid": "10118785-beff-519e-abd3-bba1afba5af9" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.855964Z", - "extension": "png", - "id": "cba7183c-193c-4be3-bcbe-de0d1fa2dc4c", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-16T13:08:44Z", - "name": "Screenshot 2025-10-16 at 6.08.39 AM", - "sd_path": { - "Content": { - "content_id": "10118785-beff-519e-abd3-bba1afba5af9" - } - }, - "sidecars": [], - "size": 133482, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "23f167c9aa3562ba", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.643736Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.643736Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1381931, - "uuid": "1d46a695-4579-50ea-8066-386c818b5065" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.855872Z", - "extension": "png", - "id": "cbe083d6-1fef-4f8c-8b94-36664d34ae44", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-15T06:30:58Z", - "name": "Screenshot 2025-10-14 at 11.30.52 PM", - "sd_path": { - "Content": { - "content_id": "1d46a695-4579-50ea-8066-386c818b5065" - } - }, - "sidecars": [], - "size": 1381931, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5df7c88a56dade31", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.727485Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.727486Z", - "mime_type_id": 17, - "text_content": null, - "total_size": 5581, - "uuid": "9c2419d9-83e3-5817-aa69-ac6a3bb21fe2" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.859110Z", - "extension": "js", - "id": "d1f25379-9fb0-40d0-85a9-952dab26cf6c", - "is_local": false, - "kind": { - "File": { - "extension": "js" - } - }, - "modified_at": "2025-04-19T04:39:43Z", - "name": "ReceiptIcon", - "sd_path": { - "Content": { - "content_id": "9c2419d9-83e3-5817-aa69-ac6a3bb21fe2" - } - }, - "sidecars": [], - "size": 5581, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "8132b840c51a1029", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.628178Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.628178Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 4676487, - "uuid": "8a08547c-3373-502a-a61f-ef83d47e7876" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.855135Z", - "extension": "png", - "id": "d47c6c19-c5e6-4dea-b662-0c545848a0ee", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-15T06:30:58Z", - "name": "Screenshot 2025-10-14 at 11.30.52 PM (2)", - "sd_path": { - "Content": { - "content_id": "8a08547c-3373-502a-a61f-ef83d47e7876" - } - }, - "sidecars": [], - "size": 4676487, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "71e0a99173564931", - "entry_count": 2, - "first_seen_at": "2025-11-11T06:00:08.915050Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.631895Z", - "mime_type_id": 3, - "text_content": null, - "total_size": 0, - "uuid": "fe9a050a-206a-5480-a987-4c316b3ad61a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.855348Z", - "extension": "db-wal", - "id": "d65bbe7f-6205-4fe9-87e1-69c987a98412", - "is_local": false, - "kind": { - "File": { - "extension": "db-wal" - } - }, - "modified_at": "2025-10-23T02:47:33Z", - "name": "database", - "sd_path": { - "Content": { - "content_id": "fe9a050a-206a-5480-a987-4c316b3ad61a" - } - }, - "sidecars": [], - "size": 0, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ebf613ef99bd92fb", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.652703Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.652703Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1112244, - "uuid": "01796bd6-3f71-5313-9dd4-a62b783f6c76" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.856205Z", - "extension": "png", - "id": "e0a4e8f2-ea4f-4f6c-8db7-de688ddf5e3d", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T10:00:27Z", - "name": "Screenshot 2025-09-27 at 3.00.21 AM", - "sd_path": { - "Content": { - "content_id": "01796bd6-3f71-5313-9dd4-a62b783f6c76" - } - }, - "sidecars": [], - "size": 1112244, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "459483affdc22c7f", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.693946Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.693946Z", - "mime_type_id": 13, - "text_content": null, - "total_size": 1012, - "uuid": "58b6f7df-2fde-5ed4-83c2-08eb40cc4f10" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.857901Z", - "extension": "json", - "id": "ec7a9334-6c67-4107-a120-392a6cbb281b", - "is_local": false, - "kind": { - "File": { - "extension": "json" - } - }, - "modified_at": "2025-04-16T13:40:09Z", - "name": "package", - "sd_path": { - "Content": { - "content_id": "58b6f7df-2fde-5ed4-83c2-08eb40cc4f10" - } - }, - "sidecars": [], - "size": 1012, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b186ba77c926b46d", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.649740Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.649740Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 5964675, - "uuid": "c1138dbb-9238-5f43-887e-c911894dfa4a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.856104Z", - "extension": "png", - "id": "eeeeca25-3311-4cee-b857-7a7a1fc8ce9e", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-28T23:49:58Z", - "name": "Screenshot 2025-09-28 at 4.49.52 PM", - "sd_path": { - "Content": { - "content_id": "c1138dbb-9238-5f43-887e-c911894dfa4a" - } - }, - "sidecars": [], - "size": 5964675, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e97bc801f42d5ee9", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.681443Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.681443Z", - "mime_type_id": 8, - "text_content": null, - "total_size": 1802240, - "uuid": "33e4b93d-d111-5e31-8406-687c011af5ac" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.857317Z", - "extension": "db", - "id": "efdf77ee-298a-473b-a7ee-8a42d17f364a", - "is_local": false, - "kind": { - "File": { - "extension": "db" - } - }, - "modified_at": "2025-10-23T02:47:28Z", - "name": "database", - "sd_path": { - "Content": { - "content_id": "33e4b93d-d111-5e31-8406-687c011af5ac" - } - }, - "sidecars": [], - "size": 1802240, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "321348226a2a9bde", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.678286Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.678286Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 152583369, - "uuid": "eacfdac6-73b6-5408-a4d7-ae150c27277f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.857180Z", - "extension": "mov", - "id": "fa44653e-bb84-4c60-a3bd-01fefeb928bd", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-21T17:20:29Z", - "name": "Screen Recording 2025-10-21 at 10.20.09 AM", - "sd_path": { - "Content": { - "content_id": "eacfdac6-73b6-5408-a4d7-ae150c27277f" - } - }, - "sidecars": [], - "size": 152583369, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "16d620996dbf915b", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.640760Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.640760Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 284761, - "uuid": "d902a434-6f49-5bbb-9899-6b06d25d62cf" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.855757Z", - "extension": "png", - "id": "fae6927d-98d6-406a-8a06-f1ec11e636fd", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T01:21:10Z", - "name": "Screenshot 2025-09-26 at 6.21.04 PM", - "sd_path": { - "Content": { - "content_id": "d902a434-6f49-5bbb-9899-6b06d25d62cf" - } - }, - "sidecars": [], - "size": 284761, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d5cd741a5fa3e076", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.669311Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.669311Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3544, - "uuid": "cd33af63-400b-53d5-bc39-4034eb9b90f6" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.856903Z", - "extension": "png", - "id": "fff3f92b-f240-4662-845f-1eea559f798a", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T01:21:02Z", - "name": "Screenshot 2025-09-26 at 6.20.56 PM", - "sd_path": { - "Content": { - "content_id": "cd33af63-400b-53d5-bc39-4034eb9b90f6" - } - }, - "sidecars": [], - "size": 3544, - "tags": [] - } - ], - "file_batches": [ - { - "batch_size": 100, - "sample_file": { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "24577669faa061c2", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.427038Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.427038Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3007313, - "uuid": "e2dec35e-626f-5376-b778-1e7f6d0db878" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.849530Z", - "extension": "png", - "id": "02bd2975-e7f0-4886-b38d-a989be977d7e", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-05T01:41:35Z", - "name": "3AE4AB29-5EC8-4DF9-80F8-F72AE5C38FBF", - "sd_path": { - "Content": { - "content_id": "e2dec35e-626f-5376-b778-1e7f6d0db878" - } - }, - "sidecars": [], - "size": 3007313, - "tags": [] - } - }, - { - "batch_size": 35, - "sample_file": { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "0605ca4398566349", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.672526Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.672526Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 112679, - "uuid": "bab97728-ed9f-5f8e-9228-5e03218accbe" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.856997Z", - "extension": "png", - "id": "04313e34-4895-4a40-a285-d9646c2a8be3", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-27T08:17:52Z", - "name": "Screenshot 2025-09-27 at 1.17.46 AM", - "sd_path": { - "Content": { - "content_id": "bab97728-ed9f-5f8e-9228-5e03218accbe" - } - }, - "sidecars": [], - "size": 112679, - "tags": [] - } - } - ], - "phase_name": "Content", - "total_events": 5, - "total_files": 135 -} \ No newline at end of file diff --git a/test_snapshots/phase_Discovery.json b/test_snapshots/phase_Discovery.json deleted file mode 100644 index 678bb8f3d..000000000 --- a/test_snapshots/phase_Discovery.json +++ /dev/null @@ -1,3648 +0,0 @@ -{ - "all_files": [ - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "57ea8d7b2f8244e0", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.041386Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.041386Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 10924, - "uuid": "7fe74553-2d80-5a51-8d40-0b6b446261d7" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.838524Z", - "extension": "png", - "id": "0571c5c6-cbef-4161-930e-3833c464b56a", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-08T13:45:29Z", - "name": "Screenshot 2025-10-08 at 6.45.23 AM", - "sd_path": { - "Content": { - "content_id": "7fe74553-2d80-5a51-8d40-0b6b446261d7" - } - }, - "sidecars": [], - "size": 10924, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "bc043e01c040f36f", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.937322Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.937322Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3369794, - "uuid": "cd8f1a8b-58ce-5ac5-ab51-ba7b5f224aad" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.835022Z", - "extension": "png", - "id": "06767d35-8e7e-4121-9e80-afdd82e45f3f", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T10:29:56Z", - "name": "Screenshot 2025-11-10 at 2.29.51 AM", - "sd_path": { - "Content": { - "content_id": "cd8f1a8b-58ce-5ac5-ab51-ba7b5f224aad" - } - }, - "sidecars": [], - "size": 3369794, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "69ebb4f653fad1de", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.944017Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.944017Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 2286850, - "uuid": "2203c530-ba6a-5493-a9e7-b2a1fbcbbd60" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.835212Z", - "extension": "png", - "id": "0f40effc-5995-4037-a709-3f0166858bbf", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T10:30:48Z", - "name": "Screenshot 2025-11-10 at 2.30.43 AM", - "sd_path": { - "Content": { - "content_id": "2203c530-ba6a-5493-a9e7-b2a1fbcbbd60" - } - }, - "sidecars": [], - "size": 2286850, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ef5fa5b5d5b073be", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.132846Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.132846Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 2830459, - "uuid": "1a493441-8811-5e22-b2ff-baeb11602863" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.841624Z", - "extension": "png", - "id": "0f762aa3-ba72-4eda-a4f5-c199e12f1265", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-05T06:20:23Z", - "name": "Screenshot 2025-11-04 at 10.20.17 PM", - "sd_path": { - "Content": { - "content_id": "1a493441-8811-5e22-b2ff-baeb11602863" - } - }, - "sidecars": [], - "size": 2830459, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "02a66b8a4d462eec", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.095640Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.095641Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 338503, - "uuid": "9304716a-846c-565f-a84a-db478b43448d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.840412Z", - "extension": "png", - "id": "1242e1f8-c52e-4336-bef7-375cb5228aff", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-04T05:21:41Z", - "name": "Screenshot 2025-10-03 at 10.21.35 PM", - "sd_path": { - "Content": { - "content_id": "9304716a-846c-565f-a84a-db478b43448d" - } - }, - "sidecars": [], - "size": 338503, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "134db89813515ef7", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.175345Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.175345Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 8463335, - "uuid": "52a6dd75-a6ff-5791-b821-48c995ae7a27" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.843068Z", - "extension": "png", - "id": "15f20306-3a94-4192-9864-d7ae6b2abc94", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-08T11:47:27Z", - "name": "Screenshot 2025-10-08 at 4.47.21 AM", - "sd_path": { - "Content": { - "content_id": "52a6dd75-a6ff-5791-b821-48c995ae7a27" - } - }, - "sidecars": [], - "size": 8463335, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "cc042b5c656aa9f4", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.082611Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.082611Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 205410, - "uuid": "b65e939b-76fc-5938-826f-915def5aa524" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.839938Z", - "extension": "png", - "id": "18f33613-33a7-4c04-9c1b-66deddf74606", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-23T23:24:58Z", - "name": "Screenshot 2025-10-23 at 4.24.53 PM", - "sd_path": { - "Content": { - "content_id": "b65e939b-76fc-5938-826f-915def5aa524" - } - }, - "sidecars": [], - "size": 205410, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "a193abc57e634ab0", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.166486Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.166486Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1437506, - "uuid": "7f3a5423-59c9-596a-bdae-86dafa6ef4e0" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.842788Z", - "extension": "png", - "id": "18f430fb-68fc-4be4-a741-bc80224f99d0", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-04T04:58:01Z", - "name": "Screenshot 2025-10-03 at 9.58.01 PM", - "sd_path": { - "Content": { - "content_id": "7f3a5423-59c9-596a-bdae-86dafa6ef4e0" - } - }, - "sidecars": [], - "size": 1437506, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "bda5305f4caa8b9e", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.190687Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.190687Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3569, - "uuid": "ac73a83f-e5bf-54db-95ba-d536ad2bab4d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.843599Z", - "extension": "png", - "id": "1ff5c04a-ae19-449f-a37e-05113245bed5", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-14T15:31:57Z", - "name": "Screenshot 2025-10-14 at 8.31.50 AM", - "sd_path": { - "Content": { - "content_id": "ac73a83f-e5bf-54db-95ba-d536ad2bab4d" - } - }, - "sidecars": [], - "size": 3569, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "44963bc8e5ccf695", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.940660Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.940660Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3986248, - "uuid": "4fd4841c-0b74-5889-824e-74dc40316157" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.835110Z", - "extension": "png", - "id": "21de9648-8d82-40e0-8a17-9f4d47ea575f", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T01:36:58Z", - "name": "Screenshot 2025-11-09 at 5.36.52 PM", - "sd_path": { - "Content": { - "content_id": "4fd4841c-0b74-5889-824e-74dc40316157" - } - }, - "sidecars": [], - "size": 3986248, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "88c3d7772de81d2e", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.022321Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.022321Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 2155258, - "uuid": "9676ffb2-aa2e-558b-91d1-922bc4131660" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.837999Z", - "extension": "png", - "id": "22353a9b-213b-4303-96dc-6139441936f8", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-08T11:47:27Z", - "name": "Screenshot 2025-10-08 at 4.47.21 AM (2)", - "sd_path": { - "Content": { - "content_id": "9676ffb2-aa2e-558b-91d1-922bc4131660" - } - }, - "sidecars": [], - "size": 2155258, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "7327d015f5b51864", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.136141Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.136141Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 5477, - "uuid": "57751a6b-e703-5a97-8cdf-ba41b5cdb837" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.841729Z", - "extension": "md", - "id": "22fdb960-daad-42cd-ab35-b3a2d599b8e4", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T01:45:35Z", - "name": "OPTIONAL_FIELDS_ISSUE", - "sd_path": { - "Content": { - "content_id": "57751a6b-e703-5a97-8cdf-ba41b5cdb837" - } - }, - "sidecars": [], - "size": 5477, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ffef13d7ef887c9b", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.107591Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.107591Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 98976474, - "uuid": "b55d0509-7403-5250-afdb-fefca21111f6" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.840793Z", - "extension": "mov", - "id": "27d76cea-ec37-4236-91e0-276a7f054cfd", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-09-29T22:33:13Z", - "name": "Spacedrive v2 development gource 720p", - "sd_path": { - "Content": { - "content_id": "b55d0509-7403-5250-afdb-fefca21111f6" - } - }, - "sidecars": [], - "size": 98976474, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d57c5237e5c8b7d8", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.015754Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.015755Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 16686, - "uuid": "43cc034f-dbe4-5588-9e5b-3776b7120116" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.837814Z", - "extension": "png", - "id": "27fe80d5-37fc-413e-875d-467263b3df38", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-14T03:57:54Z", - "name": "Screenshot 2025-10-13 at 8.57.46 PM", - "sd_path": { - "Content": { - "content_id": "43cc034f-dbe4-5588-9e5b-3776b7120116" - } - }, - "sidecars": [], - "size": 16686, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e75bc0c568210288", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.172383Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.172384Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 508062, - "uuid": "6ef30382-f5a6-5fcf-a8b8-d6b311f30dc6" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.842977Z", - "extension": "png", - "id": "282db159-0407-4c0c-acb3-551cd05ab9be", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T03:06:42Z", - "name": "Screenshot 2025-10-12 at 8.06.37 PM", - "sd_path": { - "Content": { - "content_id": "6ef30382-f5a6-5fcf-a8b8-d6b311f30dc6" - } - }, - "sidecars": [], - "size": 508062, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5bdf3f914d55f636", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.927765Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.927765Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1354091, - "uuid": "29f648b5-47c2-56c8-983f-8099f2fe54b5" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.834744Z", - "extension": "png", - "id": "2bb80f8e-b1c9-45b1-8d3c-e15bec0e674f", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T01:36:58Z", - "name": "Screenshot 2025-11-09 at 5.36.52 PM (2)", - "sd_path": { - "Content": { - "content_id": "29f648b5-47c2-56c8-983f-8099f2fe54b5" - } - }, - "sidecars": [], - "size": 1354091, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "c6af3e5c40f3c5e0", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.114001Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.114001Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3721703, - "uuid": "1489f073-4724-5f41-be4b-9b8b977056ae" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.841017Z", - "extension": "png", - "id": "32203ce5-55fc-46b6-a1bf-7ad1a078eea4", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T05:16:48Z", - "name": "Screenshot 2025-10-12 at 10.16.40 PM", - "sd_path": { - "Content": { - "content_id": "1489f073-4724-5f41-be4b-9b8b977056ae" - } - }, - "sidecars": [], - "size": 3721703, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "28ccaf6378cc3e95", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.947165Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.947165Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 352423, - "uuid": "634165c4-ac5f-58e3-ac31-32c13be49caa" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.835299Z", - "extension": "png", - "id": "3595cf70-f752-425e-a492-5e9f4f2de2f0", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T10:54:05Z", - "name": "Screenshot 2025-11-10 at 2.53.59 AM", - "sd_path": { - "Content": { - "content_id": "634165c4-ac5f-58e3-ac31-32c13be49caa" - } - }, - "sidecars": [], - "size": 352423, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "f4c546213035408f", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.962987Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.962987Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 99926, - "uuid": "89c16b76-4874-5858-8bea-841fb2ed610c" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.836221Z", - "extension": "png", - "id": "3905d3b1-9d14-4846-b581-e0cfd46618b1", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-10T02:48:09Z", - "name": "Screenshot 2025-10-09 at 7.48.04 PM", - "sd_path": { - "Content": { - "content_id": "89c16b76-4874-5858-8bea-841fb2ed610c" - } - }, - "sidecars": [], - "size": 99926, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "83675436792350dc", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.025379Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.025379Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3861038, - "uuid": "22faf146-650e-5595-9a67-8c4f8562d630" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.838092Z", - "extension": "png", - "id": "3ae4d5a4-4f98-4f3a-b6cf-253109113fca", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-08T04:44:31Z", - "name": "Screenshot 2025-10-07 at 9.44.24 PM", - "sd_path": { - "Content": { - "content_id": "22faf146-650e-5595-9a67-8c4f8562d630" - } - }, - "sidecars": [], - "size": 3861038, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "ed833a2a52d4f0a2", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.110936Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.110936Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 99125, - "uuid": "2fd51d85-e3db-5385-b087-13ff42d42ab0" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.840910Z", - "extension": "png", - "id": "41ad880d-2462-4eab-b4b3-103852508db1", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-01T00:34:15Z", - "name": "Screenshot 2025-10-31 at 5.34.12 PM", - "sd_path": { - "Content": { - "content_id": "2fd51d85-e3db-5385-b087-13ff42d42ab0" - } - }, - "sidecars": [], - "size": 99125, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "be735e74ca4088ba", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.019265Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.019265Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 275186, - "uuid": "3c4a9118-dfe9-58fc-a623-820409683630" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.837904Z", - "extension": "png", - "id": "41f37a7e-20f1-4bc1-910d-96f6900c8726", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-02T01:19:42Z", - "name": "Screenshot 2025-11-01 at 6.19.37 PM", - "sd_path": { - "Content": { - "content_id": "3c4a9118-dfe9-58fc-a623-820409683630" - } - }, - "sidecars": [], - "size": 275186, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "71e0a99173564931", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.915050Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.915050Z", - "mime_type_id": 3, - "text_content": null, - "total_size": 0, - "uuid": "fe9a050a-206a-5480-a987-4c316b3ad61a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.834304Z", - "extension": null, - "id": "423f40e8-d41d-4bef-a2d8-17816b021112", - "is_local": false, - "kind": { - "File": { - "extension": null - } - }, - "modified_at": "2024-08-01T02:16:21Z", - "name": ".localized", - "sd_path": { - "Content": { - "content_id": "fe9a050a-206a-5480-a987-4c316b3ad61a" - } - }, - "sidecars": [], - "size": 0, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5c1ae1d33b47bb28", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.972332Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.972332Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 540634, - "uuid": "1e98f971-1b7e-54a2-9615-62f38a415f7c" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.836489Z", - "extension": "png", - "id": "4335c2bc-58f2-4237-ac55-29139f4089b0", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-05T00:39:03Z", - "name": "Screenshot 2025-10-04 at 5.38.57 PM", - "sd_path": { - "Content": { - "content_id": "1e98f971-1b7e-54a2-9615-62f38a415f7c" - } - }, - "sidecars": [], - "size": 540634, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5286a5d614bc3957", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.079237Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.079237Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1861693, - "uuid": "86e37bf9-6601-5727-a137-10df89f3ead7" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.839851Z", - "extension": "png", - "id": "441c3ba4-bdb5-472d-8d85-9a586924d90f", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T05:16:48Z", - "name": "Screenshot 2025-10-12 at 10.16.40 PM (2)", - "sd_path": { - "Content": { - "content_id": "86e37bf9-6601-5727-a137-10df89f3ead7" - } - }, - "sidecars": [], - "size": 1861693, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b77ada3219485d29", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.035024Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.035024Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 150991, - "uuid": "63935b4d-56b8-5ecb-ac5b-c7e12f1dc8ae" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.838358Z", - "extension": "png", - "id": "45806301-9b87-48fb-ba03-7c6fa134d848", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-09T02:59:38Z", - "name": "Screenshot 2025-11-08 at 6.59.33 PM", - "sd_path": { - "Content": { - "content_id": "63935b4d-56b8-5ecb-ac5b-c7e12f1dc8ae" - } - }, - "sidecars": [], - "size": 150991, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "1eb40634b1260191", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.028513Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.028513Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 59695, - "uuid": "c403b02b-e95b-56d1-a7e6-276e9e2bcf00" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.838179Z", - "extension": "png", - "id": "46629898-6287-48c7-b36e-492ee48d0b55", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-23T22:13:58Z", - "name": "Screenshot 2025-10-23 at 3.13.52 PM", - "sd_path": { - "Content": { - "content_id": "c403b02b-e95b-56d1-a7e6-276e9e2bcf00" - } - }, - "sidecars": [], - "size": 59695, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "9c74e2d6b7e964bf", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.908429Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.908430Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 843145, - "uuid": "6d0c39ec-601d-5482-84df-3f5afa7c1083" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.834070Z", - "extension": "png", - "id": "46fada6c-efca-4a42-b251-f04c36a1e5a4", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-11T03:21:56Z", - "name": "Screenshot 2025-11-10 at 7.21.51 PM", - "sd_path": { - "Content": { - "content_id": "6d0c39ec-601d-5482-84df-3f5afa7c1083" - } - }, - "sidecars": [], - "size": 843145, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "831bbe45f5cdfb03", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.009218Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.009218Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 2424403, - "uuid": "3e018bc0-e6bb-5ab6-9645-9d8c41829093" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.837645Z", - "extension": "png", - "id": "48aa8eb4-72be-4723-b873-956029169567", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-08T03:19:11Z", - "name": "Screenshot 2025-11-07 at 7.19.05 PM", - "sd_path": { - "Content": { - "content_id": "3e018bc0-e6bb-5ab6-9645-9d8c41829093" - } - }, - "sidecars": [], - "size": 2424403, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "94cb43ca2dd30a47", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.006049Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.006049Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 6389, - "uuid": "68753da9-2dc7-5692-baee-7dd0d55c1d41" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.837557Z", - "extension": "md", - "id": "4d988f65-782d-49b6-bd50-ef5172559d24", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-04T23:26:05Z", - "name": "PROGRESS_UPDATE", - "sd_path": { - "Content": { - "content_id": "68753da9-2dc7-5692-baee-7dd0d55c1d41" - } - }, - "sidecars": [], - "size": 6389, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "431166096544893d", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.996794Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.996794Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 4931660, - "uuid": "40ecd207-0170-57fa-9237-795bc2f3de7c" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.837275Z", - "extension": "png", - "id": "4eb78c8a-f8d3-4bca-a238-88ef7f74c94f", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-04T08:54:11Z", - "name": "Screenshot 2025-10-04 at 1.54.05 AM", - "sd_path": { - "Content": { - "content_id": "40ecd207-0170-57fa-9237-795bc2f3de7c" - } - }, - "sidecars": [], - "size": 4931660, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "aeb413e4f0884507", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.117164Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.117164Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 774897, - "uuid": "447053fe-6f42-5d04-bbc1-f02406b6913b" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.841108Z", - "extension": "png", - "id": "4fc51ad2-4305-412b-9898-37c571f00029", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T13:31:18Z", - "name": "Screenshot 2025-10-26 at 6.31.12 AM", - "sd_path": { - "Content": { - "content_id": "447053fe-6f42-5d04-bbc1-f02406b6913b" - } - }, - "sidecars": [], - "size": 774897, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "4d01168111ad5e3f", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.092398Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.092398Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 7742818, - "uuid": "2f88e82c-3ce5-5d38-ac07-a3a926455b4b" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.840300Z", - "extension": "png", - "id": "50f02d20-472b-4422-936c-2be30262a82a", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-30T06:42:37Z", - "name": "Screenshot 2025-10-29 at 11.42.31 PM (2)", - "sd_path": { - "Content": { - "content_id": "2f88e82c-3ce5-5d38-ac07-a3a926455b4b" - } - }, - "sidecars": [], - "size": 7742818, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "63e1e21c60254049", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.990445Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.990445Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 85324160, - "uuid": "03cce45e-f904-553d-ae19-e255f28f3b39" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.837001Z", - "extension": "mov", - "id": "5583b865-bddf-4270-94c2-3a42babf30a7", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-08T14:38:55Z", - "name": "spacedrive-gource", - "sd_path": { - "Content": { - "content_id": "03cce45e-f904-553d-ae19-e255f28f3b39" - } - }, - "sidecars": [], - "size": 85324160, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "4d35f5f489dc612f", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.056823Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.056823Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 2675005, - "uuid": "4526f024-7e6f-5ec9-8568-9015a9c4768f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.839147Z", - "extension": "png", - "id": "5661c9ff-f060-461f-85d9-e64c7ccbc500", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-24T01:10:22Z", - "name": "Screenshot 2025-10-23 at 6.10.17 PM", - "sd_path": { - "Content": { - "content_id": "4526f024-7e6f-5ec9-8568-9015a9c4768f" - } - }, - "sidecars": [], - "size": 2675005, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "27ec4f3e3a5ad874", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.956897Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.956897Z", - "mime_type_id": 4, - "text_content": null, - "total_size": 71144, - "uuid": "d190498d-5ad2-57f0-8059-6ffb0a1f5c63" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.836051Z", - "extension": "pdf", - "id": "567710f6-c73e-4efa-80a2-199ca1dac9e6", - "is_local": false, - "kind": { - "File": { - "extension": "pdf" - } - }, - "modified_at": "2025-10-27T04:02:36Z", - "name": "trp_letter", - "sd_path": { - "Content": { - "content_id": "d190498d-5ad2-57f0-8059-6ffb0a1f5c63" - } - }, - "sidecars": [], - "size": 71144, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "a4eb5e8749bfc7a4", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.197064Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.197064Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 3199490, - "uuid": "5ecdd924-572b-51b2-8f6f-e84d79e50270" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.843775Z", - "extension": "jpeg", - "id": "5f8164e0-fd22-445f-8a7d-98e81e808d2f", - "is_local": false, - "kind": { - "File": { - "extension": "jpeg" - } - }, - "modified_at": "2025-10-26T04:54:42Z", - "name": "IMG_0439", - "sd_path": { - "Content": { - "content_id": "5ecdd924-572b-51b2-8f6f-e84d79e50270" - } - }, - "sidecars": [], - "size": 3199490, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b98fbc1569486273", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.120433Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.120433Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 243465, - "uuid": "b59e492a-4896-5416-b400-94a628a6417b" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.841193Z", - "extension": "png", - "id": "6205d7fa-3522-4a73-a627-d9e560f9cada", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-02T23:21:15Z", - "name": "Screenshot 2025-10-02 at 4.21.10 PM", - "sd_path": { - "Content": { - "content_id": "b59e492a-4896-5416-b400-94a628a6417b" - } - }, - "sidecars": [], - "size": 243465, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "cdac6b04d7ac9a19", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.047413Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.047413Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1278809, - "uuid": "c883e3b0-d480-5503-b8ad-193186228b77" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.838802Z", - "extension": "png", - "id": "62e1f286-8bd6-41d2-b6ac-5dbd5602741f", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-06T03:00:58Z", - "name": "Screenshot 2025-11-05 at 7.00.54 PM", - "sd_path": { - "Content": { - "content_id": "c883e3b0-d480-5503-b8ad-193186228b77" - } - }, - "sidecars": [], - "size": 1278809, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "696c860be8605b97", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.981364Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.981364Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 222594, - "uuid": "670d1f4f-9140-551b-a035-7c5d16be7669" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.836747Z", - "extension": "png", - "id": "62e674aa-0ac2-4bd8-a6a7-0acfc0a8b363", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-09-29T23:36:45Z", - "name": "Screenshot 2025-09-29 at 4.36.39 PM", - "sd_path": { - "Content": { - "content_id": "670d1f4f-9140-551b-a035-7c5d16be7669" - } - }, - "sidecars": [], - "size": 222594, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "6663923d3bbb7aaf", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.181468Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.181468Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 222691, - "uuid": "8336feb0-ca13-57dd-9a10-cad915e2b7dd" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.843239Z", - "extension": "png", - "id": "6602ba37-1891-40be-8172-5fcf4f7b9903", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-06T13:41:42Z", - "name": "Screenshot 2025-11-06 at 5.41.36 AM", - "sd_path": { - "Content": { - "content_id": "8336feb0-ca13-57dd-9a10-cad915e2b7dd" - } - }, - "sidecars": [], - "size": 222691, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "48e8f68c71be313e", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.098684Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.098684Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 2996155, - "uuid": "7df609e4-bcf2-53dc-acff-01958943203d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.840509Z", - "extension": "jpeg", - "id": "6c629a98-5d15-43d3-a090-c6366461a672", - "is_local": false, - "kind": { - "File": { - "extension": "jpeg" - } - }, - "modified_at": "2025-10-26T04:54:31Z", - "name": "IMG_1946", - "sd_path": { - "Content": { - "content_id": "7df609e4-bcf2-53dc-acff-01958943203d" - } - }, - "sidecars": [], - "size": 2996155, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "40cb59b6b807b5f4", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.984405Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.984405Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 305447, - "uuid": "2c5604df-b228-587f-bcdf-76d0cf20ff3d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.836832Z", - "extension": "png", - "id": "72ba967e-2cd8-4b10-9bca-0a9ac55fc8fd", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T12:42:51Z", - "name": "Screenshot 2025-10-26 at 5.42.45 AM", - "sd_path": { - "Content": { - "content_id": "2c5604df-b228-587f-bcdf-76d0cf20ff3d" - } - }, - "sidecars": [], - "size": 305447, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e6d15410d7a4ee6b", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.999803Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.999804Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 190484568, - "uuid": "d2610f0e-b9d2-50f2-866a-3a13972f3ee6" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.837374Z", - "extension": "mov", - "id": "7576543b-b788-4159-a11a-216f6508108c", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-14T09:50:28Z", - "name": "Screen Recording 2025-10-14 at 2.48.14 AM", - "sd_path": { - "Content": { - "content_id": "d2610f0e-b9d2-50f2-866a-3a13972f3ee6" - } - }, - "sidecars": [], - "size": 190484568, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "9a48cbebfa810dbd", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.918Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.918Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 13333222, - "uuid": "f0449122-e8a7-5524-9899-8d0bbb995d31" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.834411Z", - "extension": "mov", - "id": "76a12572-8a16-4ba5-9ceb-167f01b95bcb", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-11-10T10:43:29Z", - "name": "Screen Recording 2025-11-10 at 2.43.14 AM", - "sd_path": { - "Content": { - "content_id": "f0449122-e8a7-5524-9899-8d0bbb995d31" - } - }, - "sidecars": [], - "size": 13333222, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "fcfc4ffba6a71336", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.101584Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.101584Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 784923, - "uuid": "25da3e03-6c78-5537-906d-242946072fbb" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.840606Z", - "extension": "png", - "id": "78220b49-d458-498d-9ea4-a643cba29f7c", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T13:31:38Z", - "name": "JakePassingAnnouncement", - "sd_path": { - "Content": { - "content_id": "25da3e03-6c78-5537-906d-242946072fbb" - } - }, - "sidecars": [], - "size": 784923, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "2a7a95b1cb9fa9cb", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.069791Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.069791Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 2998919, - "uuid": "42a29666-ed70-5db5-bcd1-e8256a11712e" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.839541Z", - "extension": "png", - "id": "782a1b18-88bc-4241-9e58-31daa36c3d22", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-27T22:11:15Z", - "name": "Screenshot 2025-10-27 at 3.11.08 PM", - "sd_path": { - "Content": { - "content_id": "42a29666-ed70-5db5-bcd1-e8256a11712e" - } - }, - "sidecars": [], - "size": 2998919, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d4345f3a68a50a8a", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.145712Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.145712Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1791632, - "uuid": "f0278714-5ef4-5f9c-be05-89a9b4a81e4a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.842080Z", - "extension": "png", - "id": "830d1cf7-fdc0-4de8-b51a-c30ea04805b0", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-07T09:28:02Z", - "name": "Screenshot 2025-11-07 at 1.27.57 AM", - "sd_path": { - "Content": { - "content_id": "f0278714-5ef4-5f9c-be05-89a9b4a81e4a" - } - }, - "sidecars": [], - "size": 1791632, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "c163e3011ba2fe12", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.129774Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.129775Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 1055775, - "uuid": "c2f745c1-9be7-542d-ae5c-d3e13d3683e1" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.841522Z", - "extension": "jpeg", - "id": "83e8b450-1133-46e6-a140-93deb244fd99", - "is_local": false, - "kind": { - "File": { - "extension": "jpeg" - } - }, - "modified_at": "2025-10-26T01:18:08Z", - "name": "IMG_5067", - "sd_path": { - "Content": { - "content_id": "c2f745c1-9be7-542d-ae5c-d3e13d3683e1" - } - }, - "sidecars": [], - "size": 1055775, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "671a3aa4c6461853", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.060284Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.060284Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 4978, - "uuid": "0d86a26b-6ff3-5d93-a132-17f4b4715ebd" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.839250Z", - "extension": "md", - "id": "8600f15c-285b-48bb-bfc2-88e225762104", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-04T23:19:03Z", - "name": "EXTRACTION_STATUS", - "sd_path": { - "Content": { - "content_id": "0d86a26b-6ff3-5d93-a132-17f4b4715ebd" - } - }, - "sidecars": [], - "size": 4978, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "9a40bee1bebfe075", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.072769Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.072769Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 422956, - "uuid": "89fdbc51-6eee-50f5-baca-3702cb7237ad" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.839643Z", - "extension": "png", - "id": "872b3d47-429d-46af-ae68-121bf983bc7c", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-24T01:10:27Z", - "name": "Screenshot 2025-10-23 at 6.10.21 PM", - "sd_path": { - "Content": { - "content_id": "89fdbc51-6eee-50f5-baca-3702cb7237ad" - } - }, - "sidecars": [], - "size": 422956, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d70235956ba35e06", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.012705Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.012705Z", - "mime_type_id": 4, - "text_content": null, - "total_size": 89119, - "uuid": "1adb6aa6-4e26-5941-9b63-da3745ec42ce" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.837730Z", - "extension": "pdf", - "id": "8818bd51-7136-4b4b-ba5f-34fe07bfcb65", - "is_local": false, - "kind": { - "File": { - "extension": "pdf" - } - }, - "modified_at": "2025-10-04T09:01:09Z", - "name": "OFRELEASEFORM2", - "sd_path": { - "Content": { - "content_id": "1adb6aa6-4e26-5941-9b63-da3745ec42ce" - } - }, - "sidecars": [], - "size": 89119, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b51d2caa1a523ff3", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.184552Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.184552Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 18064, - "uuid": "8dad5c1d-050d-5b3c-ae7e-abd3aa14feea" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.843351Z", - "extension": "png", - "id": "88797290-df4c-4d57-85ab-f2d9550a32d3", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T03:01:31Z", - "name": "Screenshot 2025-10-25 at 8.01.25 PM", - "sd_path": { - "Content": { - "content_id": "8dad5c1d-050d-5b3c-ae7e-abd3aa14feea" - } - }, - "sidecars": [], - "size": 18064, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5613542c8d4012a7", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.044362Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.044362Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 401133, - "uuid": "3dec0dcc-05a3-5829-bf9b-294766def1f4" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.838714Z", - "extension": "png", - "id": "8e4a0019-a614-4b41-9fcb-48c2e11860da", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-11T03:08:25Z", - "name": "Screenshot 2025-10-10 at 8.08.22 PM", - "sd_path": { - "Content": { - "content_id": "3dec0dcc-05a3-5829-bf9b-294766def1f4" - } - }, - "sidecars": [], - "size": 401133, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "7cc1be6a1f0a3472", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.975354Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.975354Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 231784, - "uuid": "1419b640-3228-5f9b-ad71-cfceca67a283" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.836578Z", - "extension": "png", - "id": "9544903f-8874-4ab6-8b90-6b97e3553319", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-07T02:39:45Z", - "name": "Screenshot 2025-11-06 at 6.39.39 PM", - "sd_path": { - "Content": { - "content_id": "1419b640-3228-5f9b-ad71-cfceca67a283" - } - }, - "sidecars": [], - "size": 231784, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "f91f3ddcb10a7d92", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.139073Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.139073Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 10407, - "uuid": "1e64136a-41fb-535c-ab85-2c131cb523a4" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.841831Z", - "extension": "md", - "id": "970c4bba-249c-4b63-a141-a6f0d0609b8c", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T01:45:35Z", - "name": "OPTIONAL_FIELDS_COMPLETE_FIX", - "sd_path": { - "Content": { - "content_id": "1e64136a-41fb-535c-ab85-2c131cb523a4" - } - }, - "sidecars": [], - "size": 10407, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e94c93fabbe780c9", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.950447Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.950447Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 2931912, - "uuid": "1df94291-c99f-5518-88e4-2de027c7f6d8" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.835500Z", - "extension": "png", - "id": "992e1dcb-a556-4540-a885-ae6028f7e75e", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T10:30:07Z", - "name": "Screenshot 2025-11-10 at 2.30.02 AM", - "sd_path": { - "Content": { - "content_id": "1df94291-c99f-5518-88e4-2de027c7f6d8" - } - }, - "sidecars": [], - "size": 2931912, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3d0eb96a21120374", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.200183Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.200183Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 9071, - "uuid": "1859f6a6-579e-5526-9e77-ac87630d5c24" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.843862Z", - "extension": "md", - "id": "99a829ff-db89-4c52-8f43-8c8fe36040da", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-04T23:58:01Z", - "name": "REFACTOR_FINAL_STATUS", - "sd_path": { - "Content": { - "content_id": "1859f6a6-579e-5526-9e77-ac87630d5c24" - } - }, - "sidecars": [], - "size": 9071, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "65ba78be68e3fb6f", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.089060Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.089061Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 1791177, - "uuid": "8d5a84a1-778a-5d9d-9c65-79f994d1d01d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.840113Z", - "extension": "jpeg", - "id": "9fa5a4ef-76bf-4c2a-bdab-f0180d3b3662", - "is_local": false, - "kind": { - "File": { - "extension": "jpeg" - } - }, - "modified_at": "2025-10-26T01:18:48Z", - "name": "IMG_5114", - "sd_path": { - "Content": { - "content_id": "8d5a84a1-778a-5d9d-9c65-79f994d1d01d" - } - }, - "sidecars": [], - "size": 1791177, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "f82a183dbff4d412", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.966192Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.966193Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 4955658, - "uuid": "37b2c478-ef23-5c52-be65-39e5dad884b0" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.836310Z", - "extension": "mov", - "id": "a2b43f2d-6808-4fec-8b64-1b75028fd9cd", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-14T08:56:34Z", - "name": "Screen Recording 2025-10-14 at 1.56.09 AM", - "sd_path": { - "Content": { - "content_id": "37b2c478-ef23-5c52-be65-39e5dad884b0" - } - }, - "sidecars": [], - "size": 4955658, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "d4a112e2c37cf803", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.969300Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.969300Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 62385, - "uuid": "df53b2da-eed5-515f-8c8c-3a64b65f84ab" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.836397Z", - "extension": "png", - "id": "a2f46f54-baa2-4e3f-b76a-899ab0a4e4ac", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-11T17:32:29Z", - "name": "Screenshot 2025-10-11 at 10.32.23 AM", - "sd_path": { - "Content": { - "content_id": "df53b2da-eed5-515f-8c8c-3a64b65f84ab" - } - }, - "sidecars": [], - "size": 62385, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "0f369d5469ae5057", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.978353Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.978353Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 5647, - "uuid": "f9f5d260-9adb-52d0-94ab-672576b1d057" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.836660Z", - "extension": "md", - "id": "a41b38e7-b840-4429-8f98-e2f434a0e01b", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T00:05:56Z", - "name": "MILESTONE_52_PERCENT", - "sd_path": { - "Content": { - "content_id": "f9f5d260-9adb-52d0-94ab-672576b1d057" - } - }, - "sidecars": [], - "size": 5647, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b011a458eaa01f35", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.148694Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.148694Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1140110, - "uuid": "bdd49b59-7ebc-53c8-9b89-e31167ef2c57" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.842177Z", - "extension": "png", - "id": "a761a715-a7e8-4012-8375-d27ecf19cd9c", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-30T06:28:31Z", - "name": "Screenshot 2025-10-29 at 11.28.25 PM", - "sd_path": { - "Content": { - "content_id": "bdd49b59-7ebc-53c8-9b89-e31167ef2c57" - } - }, - "sidecars": [], - "size": 1140110, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b60210c979270292", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.898598Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.898598Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 2243226, - "uuid": "cc4f38c4-f4ac-5044-92e1-96b2f061dd5f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.833702Z", - "extension": "mov", - "id": "af38eed9-9320-4ec1-ba81-f58418e4bf62", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-11-10T10:42:29Z", - "name": "Screen Recording 2025-11-10 at 2.42.22 AM", - "sd_path": { - "Content": { - "content_id": "cc4f38c4-f4ac-5044-92e1-96b2f061dd5f" - } - }, - "sidecars": [], - "size": 2243226, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "433d6c9f3e6fcefc", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.203048Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.203048Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 9551, - "uuid": "1001016a-15b2-5f99-92b3-fef108af2eaa" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.843944Z", - "extension": "md", - "id": "b1cfffd8-ff08-4f2d-a173-65a803047a1a", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-04T23:08:01Z", - "name": "REFACTOR_SESSION_1", - "sd_path": { - "Content": { - "content_id": "1001016a-15b2-5f99-92b3-fef108af2eaa" - } - }, - "sidecars": [], - "size": 9551, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e5a9f75710e5a83f", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.038148Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.038148Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 227949, - "uuid": "fb5b9ee2-fccb-5f2c-b8a6-8e0fc4771954" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.838442Z", - "extension": "png", - "id": "b3db1edf-d32b-4032-afd0-a46e3867bf6f", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-02T01:34:43Z", - "name": "Screenshot 2025-10-01 at 6.34.37 PM", - "sd_path": { - "Content": { - "content_id": "fb5b9ee2-fccb-5f2c-b8a6-8e0fc4771954" - } - }, - "sidecars": [], - "size": 227949, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e8ff03fc88b69e6e", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.901928Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.901928Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 2875023, - "uuid": "a50c4ddd-93cb-597a-96f3-eb3acc76bbb8" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.833864Z", - "extension": "png", - "id": "b4b16fb6-189a-4183-991a-235ffc3e5c5a", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T10:30:29Z", - "name": "Screenshot 2025-11-10 at 2.30.23 AM", - "sd_path": { - "Content": { - "content_id": "a50c4ddd-93cb-597a-96f3-eb3acc76bbb8" - } - }, - "sidecars": [], - "size": 2875023, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "84e43d43fee7f5c9", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.003117Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.003117Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 364860, - "uuid": "75019937-4d84-53a0-8a57-79410010831f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.837469Z", - "extension": "png", - "id": "b60635ca-0bf6-4662-a081-2ebe6dbb3846", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-02T01:56:33Z", - "name": "Screenshot 2025-11-01 at 6.56.27 PM", - "sd_path": { - "Content": { - "content_id": "75019937-4d84-53a0-8a57-79410010831f" - } - }, - "sidecars": [], - "size": 364860, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b331d8210fa210bf", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.126903Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.126903Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 54420, - "uuid": "dc73cc13-5c95-5d3c-b6fc-78d708305ac2" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.841401Z", - "extension": "png", - "id": "b86964ea-37a6-4704-92a1-b550e3f876b4", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T06:00:15Z", - "name": "Screenshot 2025-10-25 at 11.00.09 PM", - "sd_path": { - "Content": { - "content_id": "dc73cc13-5c95-5d3c-b6fc-78d708305ac2" - } - }, - "sidecars": [], - "size": 54420, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "2e04f89d8064c3c8", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.053670Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.053670Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 11461, - "uuid": "21e65df4-81cc-51b2-9513-15ecb0e14784" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.839047Z", - "extension": "md", - "id": "b96de871-d49d-4f97-920a-781bd14befc9", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-04T04:46:32Z", - "name": "REFACTOR_SUMMARY", - "sd_path": { - "Content": { - "content_id": "21e65df4-81cc-51b2-9513-15ecb0e14784" - } - }, - "sidecars": [], - "size": 11461, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "2874ce4dc6d27640", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.905035Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.905035Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 836860, - "uuid": "fd4af7fa-29c4-5b8b-8da3-e49ca099279d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.833957Z", - "extension": "png", - "id": "bb440908-48d6-4f28-a55f-6bb128afe1e2", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-11T03:21:35Z", - "name": "Screenshot 2025-11-10 at 7.21.30 PM", - "sd_path": { - "Content": { - "content_id": "fd4af7fa-29c4-5b8b-8da3-e49ca099279d" - } - }, - "sidecars": [], - "size": 836860, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "a9ac917475408320", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.993691Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.993692Z", - "mime_type_id": 7, - "text_content": null, - "total_size": 34420, - "uuid": "7e8c1b65-4335-599d-9ea4-f5e60a0d92f7" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.837109Z", - "extension": "webp", - "id": "bc6702f9-1a2d-4796-acbd-deb71587dec2", - "is_local": false, - "kind": { - "File": { - "extension": "webp" - } - }, - "modified_at": "2025-11-05T01:08:43Z", - "name": "020618michaelblutrichbz11.jpg", - "sd_path": { - "Content": { - "content_id": "7e8c1b65-4335-599d-9ea4-f5e60a0d92f7" - } - }, - "sidecars": [], - "size": 34420, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "8a668e3d472e8098", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.178374Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.178374Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 54188, - "uuid": "ccb5f17d-4d25-544c-a80e-b5724d7b4af7" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.843155Z", - "extension": "png", - "id": "bf295bd1-eeec-421e-b38c-9e202d0fbad7", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-02T00:20:27Z", - "name": "Screenshot 2025-11-01 at 5.20.22 PM", - "sd_path": { - "Content": { - "content_id": "ccb5f17d-4d25-544c-a80e-b5724d7b4af7" - } - }, - "sidecars": [], - "size": 54188, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "94b46545331a0809", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.066642Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.066642Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 480973, - "uuid": "a2b12a69-e3bb-5249-b530-a1afacdaffbc" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.839438Z", - "extension": "png", - "id": "c6a63863-2240-4672-92e5-5d0e5645bf30", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T00:38:56Z", - "name": "Screenshot 2025-10-25 at 5.38.50 PM", - "sd_path": { - "Content": { - "content_id": "a2b12a69-e3bb-5249-b530-a1afacdaffbc" - } - }, - "sidecars": [], - "size": 480973, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "8a2b78f8b53ff372", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.924528Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.924528Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 2918337786, - "uuid": "4d170c2e-4356-5326-8c36-953996cf764a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.834640Z", - "extension": "mov", - "id": "ca566188-473d-442a-a2c9-72503954483a", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-11-10T03:44:55Z", - "name": "Screen Recording 2025-11-09 at 7.18.50 PM", - "sd_path": { - "Content": { - "content_id": "4d170c2e-4356-5326-8c36-953996cf764a" - } - }, - "sidecars": [], - "size": 2918337786, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "1a8eead8d9c4b387", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.163543Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.163543Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 423276, - "uuid": "1112725b-8c1a-5e01-b4fa-832a460f4b7c" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.842666Z", - "extension": "png", - "id": "cbba54f2-4d6d-41e7-8909-2f09adadc93b", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T09:42:10Z", - "name": "Grok_Roleplay", - "sd_path": { - "Content": { - "content_id": "1112725b-8c1a-5e01-b4fa-832a460f4b7c" - } - }, - "sidecars": [], - "size": 423276, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "4d9b87d46fd337cb", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.987419Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.987419Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 1960069, - "uuid": "7bc3fdbb-30d6-5127-bacc-87a52b24e6f8" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.836920Z", - "extension": "jpeg", - "id": "cce70736-4783-4d3d-9525-1ce7e61f8495", - "is_local": false, - "kind": { - "File": { - "extension": "jpeg" - } - }, - "modified_at": "2025-11-09T06:34:06Z", - "name": "IMG_0347", - "sd_path": { - "Content": { - "content_id": "7bc3fdbb-30d6-5127-bacc-87a52b24e6f8" - } - }, - "sidecars": [], - "size": 1960069, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "9d9e55b929719051", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.193687Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.193688Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 41613, - "uuid": "3751faa3-784a-5cef-bc54-15f7c092b657" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.843684Z", - "extension": "png", - "id": "ce62f4df-74f6-48be-b53b-c8c9d1823dc4", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-11T11:06:40Z", - "name": "Screenshot 2025-10-11 at 4.06.34 AM", - "sd_path": { - "Content": { - "content_id": "3751faa3-784a-5cef-bc54-15f7c092b657" - } - }, - "sidecars": [], - "size": 41613, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "7bddbc68ce80e5a4", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.959824Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.959824Z", - "mime_type_id": 4, - "text_content": null, - "total_size": 59458, - "uuid": "3319e9c0-70e8-5272-9037-eedd0dfd676f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.836136Z", - "extension": "pdf", - "id": "d1a9f4ad-1ec4-4d95-a384-102fb456cae2", - "is_local": false, - "kind": { - "File": { - "extension": "pdf" - } - }, - "modified_at": "2025-10-26T10:37:12Z", - "name": "package_index", - "sd_path": { - "Content": { - "content_id": "3319e9c0-70e8-5272-9037-eedd0dfd676f" - } - }, - "sidecars": [], - "size": 59458, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "8d936ad9fc717ebc", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.151567Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.151567Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1124381, - "uuid": "8fbec022-ba50-53e7-8251-221ac2143449" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.842285Z", - "extension": "png", - "id": "d738fc43-2226-4b4a-b72f-4b75be8f4216", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T04:18:39Z", - "name": "Screenshot 2025-10-12 at 9.18.32 PM 1(2)", - "sd_path": { - "Content": { - "content_id": "8fbec022-ba50-53e7-8251-221ac2143449" - } - }, - "sidecars": [], - "size": 1124381, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "7905286ad7fc83dc", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.953718Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.953718Z", - "mime_type_id": 4, - "text_content": null, - "total_size": 69830, - "uuid": "b35bff7d-bf6c-5b8e-9ef7-9ca4ead83403" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.835950Z", - "extension": "pdf", - "id": "d8d4efaa-8c5e-4ef7-88f1-f27bd5cd6c25", - "is_local": false, - "kind": { - "File": { - "extension": "pdf" - } - }, - "modified_at": "2025-10-26T12:24:14Z", - "name": "cra_letter", - "sd_path": { - "Content": { - "content_id": "b35bff7d-bf6c-5b8e-9ef7-9ca4ead83403" - } - }, - "sidecars": [], - "size": 69830, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "cf2d6cc9dbed38a8", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.104578Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.104578Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 145193, - "uuid": "0e41ea9c-9a80-5949-8703-1bc8f45405f2" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.840707Z", - "extension": "png", - "id": "d99fa37f-6ae5-4765-bcc0-bebae2ad16ff", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-08T02:11:30Z", - "name": "FEEBE2D5-B13D-4FD8-B8E7-3C23CC028809", - "sd_path": { - "Content": { - "content_id": "0e41ea9c-9a80-5949-8703-1bc8f45405f2" - } - }, - "sidecars": [], - "size": 145193, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "99909be0a3ac0d6f", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.209005Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.209005Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 98796, - "uuid": "23e3c6c8-461c-5512-99a9-87bc8ca3cd25" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.844156Z", - "extension": "png", - "id": "dac4b926-987b-4c4c-ba53-2231527f57e9", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T10:13:25Z", - "name": "Screenshot 2025-10-13 at 3.13.19 AM", - "sd_path": { - "Content": { - "content_id": "23e3c6c8-461c-5512-99a9-87bc8ca3cd25" - } - }, - "sidecars": [], - "size": 98796, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "c05c8f4c667a702e", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.206014Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.206014Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3091168, - "uuid": "9af24849-030e-589a-a132-8a02b3f46026" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.844055Z", - "extension": "png", - "id": "daf0ed36-6601-42f0-9067-8ece6f4ea1fe", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-07T13:50:54Z", - "name": "Screenshot 2025-11-07 at 5.50.49 AM", - "sd_path": { - "Content": { - "content_id": "9af24849-030e-589a-a132-8a02b3f46026" - } - }, - "sidecars": [], - "size": 3091168, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "a6677dfb2955dd9a", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.142078Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.142078Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 574478, - "uuid": "d0afcc07-8b67-53cd-8652-2f32032bd79f" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.841983Z", - "extension": "png", - "id": "db01a86f-fe70-4b93-87c0-00719d7f82ae", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-13T07:09:02Z", - "name": "Screenshot 2025-10-13 at 12.08.57 AM", - "sd_path": { - "Content": { - "content_id": "d0afcc07-8b67-53cd-8652-2f32032bd79f" - } - }, - "sidecars": [], - "size": 574478, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5e0c1fe735efe812", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.050714Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.050715Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 6070, - "uuid": "7b0083d0-cc95-5748-876a-944bbf8d3267" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.838916Z", - "extension": "md", - "id": "dbb6cea7-020f-4376-b4f5-31cabec50ce7", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T01:45:35Z", - "name": "OPTIONAL_FIELDS_FIX_SUMMARY", - "sd_path": { - "Content": { - "content_id": "7b0083d0-cc95-5748-876a-944bbf8d3267" - } - }, - "sidecars": [], - "size": 6070, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5072e2739a785d6c", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.934306Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.934306Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 1019701, - "uuid": "06c3790a-0766-5358-b002-7db4bbdd92ae" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.834934Z", - "extension": "png", - "id": "df2f7d77-f239-4d59-abaa-035e754a1933", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T10:35:06Z", - "name": "Screenshot 2025-11-10 at 2.35.01 AM", - "sd_path": { - "Content": { - "content_id": "06c3790a-0766-5358-b002-7db4bbdd92ae" - } - }, - "sidecars": [], - "size": 1019701, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "60287d1e5ba9e162", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.075912Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.075912Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 505758, - "uuid": "2f5bff8d-a567-55d1-9ed1-d07a4fcf9f0a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.839756Z", - "extension": "png", - "id": "e1a9cc9b-46ab-49c0-ac72-5a9d0f40890d", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-11T08:19:45Z", - "name": "Screenshot 2025-10-11 at 1.19.39 AM", - "sd_path": { - "Content": { - "content_id": "2f5bff8d-a567-55d1-9ed1-d07a4fcf9f0a" - } - }, - "sidecars": [], - "size": 505758, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "cdaf9093f7f512a7", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.921228Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.921228Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 34064885, - "uuid": "e07850ef-96c6-5537-88c8-11c3e037340a" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.834515Z", - "extension": "mov", - "id": "e3f6a0e9-144e-4267-b053-93128bc74d9e", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-11-11T04:54:18Z", - "name": "Screen Recording 2025-11-10 at 8.53.45 PM", - "sd_path": { - "Content": { - "content_id": "e07850ef-96c6-5537-88c8-11c3e037340a" - } - }, - "sidecars": [], - "size": 34064885, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "fee06ba006c368ee", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.160610Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.160610Z", - "mime_type_id": 4, - "text_content": null, - "total_size": 109472, - "uuid": "ff31e36a-0e95-580e-8c5a-e8c4451bbf54" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.842572Z", - "extension": "pdf", - "id": "e5b6c074-db49-4800-bdea-5f42542c6c7f", - "is_local": false, - "kind": { - "File": { - "extension": "pdf" - } - }, - "modified_at": "2025-10-04T09:01:37Z", - "name": "OFRELEASEFORM", - "sd_path": { - "Content": { - "content_id": "ff31e36a-0e95-580e-8c5a-e8c4451bbf54" - } - }, - "sidecars": [], - "size": 109472, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5e08aef66449bd1d", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.931117Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.931117Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 24532, - "uuid": "0e3d5916-c07a-5796-af3d-a9c0ca8baa7b" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.834837Z", - "extension": "png", - "id": "e5e09d75-ed57-48d8-a9b4-259132de32c3", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T12:57:30Z", - "name": "Screenshot 2025-11-10 at 4.56.29 AM", - "sd_path": { - "Content": { - "content_id": "0e3d5916-c07a-5796-af3d-a9c0ca8baa7b" - } - }, - "sidecars": [], - "size": 24532, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "b67f9eb068d87ee3", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.154548Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.154548Z", - "mime_type_id": 4, - "text_content": null, - "total_size": 277829, - "uuid": "e0e4cc93-8ecc-51ab-848f-df10ed46d7f9" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.842386Z", - "extension": "pdf", - "id": "e6abb3c8-0f9f-41d3-944c-78c5bacf19dc", - "is_local": false, - "kind": { - "File": { - "extension": "pdf" - } - }, - "modified_at": "2025-10-04T09:11:29Z", - "name": "passport", - "sd_path": { - "Content": { - "content_id": "e0e4cc93-8ecc-51ab-848f-df10ed46d7f9" - } - }, - "sidecars": [], - "size": 277829, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "16f8e245554535a4", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.187585Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.187585Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 50579, - "uuid": "6b9c902b-5447-5f22-aba3-00d0e5ece58c" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.843508Z", - "extension": "png", - "id": "eb808f42-78ff-47ee-819e-9770af19cbac", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-27T22:11:18Z", - "name": "Screenshot 2025-10-27 at 3.10.04 PM", - "sd_path": { - "Content": { - "content_id": "6b9c902b-5447-5f22-aba3-00d0e5ece58c" - } - }, - "sidecars": [], - "size": 50579, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "3c67816dde683ef9", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.123630Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.123630Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 20514, - "uuid": "7f2609ec-67de-51bb-9e3c-ccb400a72fcb" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.841298Z", - "extension": "png", - "id": "ebac1149-2071-4ebf-ad2d-a963177496ff", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-08T02:08:22Z", - "name": "Screenshot 2025-11-07 at 6.08.16 PM", - "sd_path": { - "Content": { - "content_id": "7f2609ec-67de-51bb-9e3c-ccb400a72fcb" - } - }, - "sidecars": [], - "size": 20514, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "cc9d2dc5460782b4", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.085867Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.085867Z", - "mime_type_id": 7, - "text_content": null, - "total_size": 67690, - "uuid": "6b404b91-2594-5ff7-9e1e-897ffed89130" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.840023Z", - "extension": "webp", - "id": "ebd57270-6866-45a0-8bd9-7e4189fb7c90", - "is_local": false, - "kind": { - "File": { - "extension": "webp" - } - }, - "modified_at": "2025-11-05T01:05:43Z", - "name": "1488505642709-michael-blutrich-1.jpeg", - "sd_path": { - "Content": { - "content_id": "6b404b91-2594-5ff7-9e1e-897ffed89130" - } - }, - "sidecars": [], - "size": 67690, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "96d08f50b73e2abd", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.157575Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.157575Z", - "mime_type_id": 6, - "text_content": null, - "total_size": 6746682, - "uuid": "4aaa3015-7417-506c-991b-2be37de026cf" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.842485Z", - "extension": "jpg", - "id": "ee8ea94e-9d8f-4b15-b3eb-f232f1d196df", - "is_local": false, - "kind": { - "File": { - "extension": "jpg" - } - }, - "modified_at": "2025-10-26T04:54:13Z", - "name": "DSC07594", - "sd_path": { - "Content": { - "content_id": "4aaa3015-7417-506c-991b-2be37de026cf" - } - }, - "sidecars": [], - "size": 6746682, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "5bafd1f62642c90d", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.031807Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.031807Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 253495, - "uuid": "0796b2bc-59fd-5562-97e7-827c73c66af5" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.838271Z", - "extension": "png", - "id": "ef99c1f7-4556-48b2-94b0-47c20abad3be", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-26T01:35:08Z", - "name": "Screenshot 2025-10-25 at 6.35.02 PM", - "sd_path": { - "Content": { - "content_id": "0796b2bc-59fd-5562-97e7-827c73c66af5" - } - }, - "sidecars": [], - "size": 253495, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "0b0be3f043abebc3", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:08.911868Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:08.911869Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 3278871, - "uuid": "5c0906c7-185f-5db3-8ea6-3506502b973d" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.834171Z", - "extension": "png", - "id": "f21715c5-3216-44ed-bceb-fafc002c7ce9", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-11-10T10:31:08Z", - "name": "Screenshot 2025-11-10 at 2.31.03 AM", - "sd_path": { - "Content": { - "content_id": "5c0906c7-185f-5db3-8ea6-3506502b973d" - } - }, - "sidecars": [], - "size": 3278871, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "7402599d9f8b2f57", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.063482Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.063482Z", - "mime_type_id": 5, - "text_content": null, - "total_size": 11610, - "uuid": "910dc9c4-2cf2-54b5-a0ac-e744476f9576" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.839342Z", - "extension": "md", - "id": "f730dc93-5167-4d38-b7f3-b772cd292833", - "is_local": false, - "kind": { - "File": { - "extension": "md" - } - }, - "modified_at": "2025-10-05T01:45:35Z", - "name": "REFACTOR_COMPLETE", - "sd_path": { - "Content": { - "content_id": "910dc9c4-2cf2-54b5-a0ac-e744476f9576" - } - }, - "sidecars": [], - "size": 11610, - "tags": [] - }, - { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "e839057cec29188e", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.169471Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.169471Z", - "mime_type_id": 1, - "text_content": null, - "total_size": 37756828, - "uuid": "7aacf378-4ca7-5598-876d-424a89551d6b" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.842882Z", - "extension": "mov", - "id": "fa9d09d3-ba36-4337-aac1-2b01bba973dc", - "is_local": false, - "kind": { - "File": { - "extension": "mov" - } - }, - "modified_at": "2025-10-13T06:58:11Z", - "name": "Screen Recording 2025-10-12 at 11.56.56 PM", - "sd_path": { - "Content": { - "content_id": "7aacf378-4ca7-5598-876d-424a89551d6b" - } - }, - "sidecars": [], - "size": 37756828, - "tags": [] - } - ], - "file_batches": [ - { - "batch_size": 100, - "sample_file": { - "accessed_at": null, - "alternate_paths": [], - "content_identity": { - "content_hash": "57ea8d7b2f8244e0", - "entry_count": 1, - "first_seen_at": "2025-11-11T06:00:09.041386Z", - "integrity_hash": null, - "kind": "unknown", - "last_verified_at": "2025-11-11T06:00:09.041386Z", - "mime_type_id": 2, - "text_content": null, - "total_size": 10924, - "uuid": "7fe74553-2d80-5a51-8d40-0b6b446261d7" - }, - "content_kind": "unknown", - "created_at": "2025-11-11T06:00:08.838524Z", - "extension": "png", - "id": "0571c5c6-cbef-4161-930e-3833c464b56a", - "is_local": false, - "kind": { - "File": { - "extension": "png" - } - }, - "modified_at": "2025-10-08T13:45:29Z", - "name": "Screenshot 2025-10-08 at 6.45.23 AM", - "sd_path": { - "Content": { - "content_id": "7fe74553-2d80-5a51-8d40-0b6b446261d7" - } - }, - "sidecars": [], - "size": 10924, - "tags": [] - } - } - ], - "phase_name": "Discovery", - "total_events": 2, - "total_files": 100 -} \ No newline at end of file diff --git a/test_snapshots/phase_Initial.json b/test_snapshots/phase_Initial.json deleted file mode 100644 index 14a23e8d8..000000000 --- a/test_snapshots/phase_Initial.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "all_files": [], - "file_batches": [], - "phase_name": "Initial", - "total_events": 1, - "total_files": 0 -} \ No newline at end of file diff --git a/test_snapshots/track_single_file.sh b/test_snapshots/track_single_file.sh deleted file mode 100755 index 602336a7d..000000000 --- a/test_snapshots/track_single_file.sh +++ /dev/null @@ -1,61 +0,0 @@ -#!/bin/bash - -# Pick the first file from Discovery phase -DISCOVERY_FILE=$(jq '.all_files[0]' phase_Discovery.json) -FILE_ID=$(echo "$DISCOVERY_FILE" | jq -r '.id') -FILE_NAME=$(echo "$DISCOVERY_FILE" | jq -r '.name') - -echo "==============================================" -echo "TRACKING FILE: $FILE_NAME" -echo "ID: $FILE_ID" -echo "==============================================" -echo "" - -echo "DISCOVERY PHASE:" -echo "$DISCOVERY_FILE" | jq '{ - id, - name, - sd_path, - content_identity_present: (.content_identity != null), - content_identity_uuid: .content_identity.uuid, - sidecars_count: (.sidecars | length) -}' -echo "" - -echo "CONTENT PHASE (same file):" -CONTENT_FILE=$(jq --arg id "$FILE_ID" '.all_files[] | select(.id == $id)' phase_Content.json) - -if [ -n "$CONTENT_FILE" ]; then - echo "$CONTENT_FILE" | jq '{ - id, - name, - sd_path, - content_identity_present: (.content_identity != null), - content_identity_uuid: .content_identity.uuid, - sidecars_count: (.sidecars | length) - }' -else - echo " File not found in Content phase events" -fi -echo "" - -echo "==============================================" -echo "COMPARISON:" -echo "==============================================" - -DISC_HAS_CI=$(echo "$DISCOVERY_FILE" | jq '.content_identity != null') -CONT_HAS_CI=$(echo "$CONTENT_FILE" | jq '.content_identity != null') - -echo "Discovery has content_identity: $DISC_HAS_CI" -echo "Content has content_identity: $CONT_HAS_CI" -echo "" - -# Check full objects -echo "FULL DISCOVERY FILE:" -echo "$DISCOVERY_FILE" | jq '.' -echo "" - -if [ -n "$CONTENT_FILE" ]; then - echo "FULL CONTENT FILE:" - echo "$CONTENT_FILE" | jq '.' -fi