diff --git a/apps/web/package.json b/apps/web/package.json index deaa17022..9ce283baa 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -9,6 +9,7 @@ "lint": "next lint" }, "dependencies": { + "@google/genai": "^1.43.0", "@google/generative-ai": "^0.24.1", "@stripe/stripe-js": "^2.0.0", "@supabase/supabase-js": "^2.39.0", diff --git a/apps/web/src/app/api/extract-events/route.ts b/apps/web/src/app/api/extract-events/route.ts index 9b063ae92..c85cfd288 100644 --- a/apps/web/src/app/api/extract-events/route.ts +++ b/apps/web/src/app/api/extract-events/route.ts @@ -1,5 +1,5 @@ import OpenAI from 'openai'; -import { GoogleGenerativeAI } from '@google/generative-ai'; +import { GoogleGenAI, Type } from '@google/genai'; import { NextResponse } from 'next/server'; let _openai: OpenAI | null = null; @@ -8,13 +8,13 @@ function getOpenAI() { return _openai; } -let _gemini: GoogleGenerativeAI | null = null; +let _gemini: GoogleGenAI | null = null; function getGemini() { - if (!_gemini) _gemini = new GoogleGenerativeAI(process.env.GEMINI_API_KEY || ''); + if (!_gemini) _gemini = new GoogleGenAI({ apiKey: process.env.GEMINI_API_KEY || '' }); return _gemini; } -// JSON Schema for structured extraction via Responses API +// JSON Schema for structured extraction via OpenAI Responses API const extractionSchema = { type: 'object' as const, properties: { @@ -54,6 +54,43 @@ const extractionSchema = { additionalProperties: false, }; +// Gemini responseSchema using @google/genai Type system +const geminiResponseSchema = { + type: Type.OBJECT, + properties: { + events: { + type: Type.ARRAY, + items: { + type: Type.OBJECT, + properties: { + type: { type: Type.STRING, enum: ['action', 'topic', 'insight', 'tool', 'resource'] }, + title: { type: Type.STRING }, + description: { type: Type.STRING }, + timestamp: { type: Type.STRING, nullable: true }, + priority: { type: Type.STRING, enum: ['high', 'medium', 'low'] }, + }, + required: ['type', 'title', 'description', 'priority'], + }, + }, + actions: { + type: Type.ARRAY, + items: { + type: Type.OBJECT, + properties: { + title: { type: Type.STRING }, + description: { type: Type.STRING }, + category: { type: Type.STRING, enum: ['setup', 'build', 'deploy', 'learn', 'research', 'configure'] }, + estimatedMinutes: { type: Type.NUMBER, nullable: true }, + }, + required: ['title', 'description', 'category'], + }, + }, + summary: { type: Type.STRING }, + topics: { type: Type.ARRAY, items: { type: Type.STRING } }, + }, + required: ['events', 'actions', 'summary', 'topics'], +}; + const SYSTEM_PROMPT = `You are an expert content analyst. Extract structured data from video transcripts. Be specific and practical — no vague or generic items. For events: classify type (action/topic/insight/tool/resource) and priority (high/medium/low). @@ -94,15 +131,18 @@ async function extractWithOpenAI(trimmed: string, videoTitle?: string, videoUrl? } async function extractWithGemini(trimmed: string, videoTitle?: string, videoUrl?: string) { - const model = getGemini().getGenerativeModel({ + const ai = getGemini(); + const response = await ai.models.generateContent({ model: 'gemini-2.0-flash', - generationConfig: { - responseMimeType: 'application/json', + contents: `${SYSTEM_PROMPT}\n\n${buildUserPrompt(trimmed, videoTitle, videoUrl)}`, + config: { temperature: 0.3, + responseMimeType: 'application/json', + responseSchema: geminiResponseSchema, + tools: [{ googleSearch: {} }], }, }); - const result = await model.generateContent(`${SYSTEM_PROMPT}\n\n${buildUserPrompt(trimmed, videoTitle, videoUrl)}`); - const text = result.response.text(); + const text = response.text ?? ''; return JSON.parse(text); } diff --git a/apps/web/src/app/api/transcribe/route.ts b/apps/web/src/app/api/transcribe/route.ts index 1255e6970..ea23fbd90 100644 --- a/apps/web/src/app/api/transcribe/route.ts +++ b/apps/web/src/app/api/transcribe/route.ts @@ -1,5 +1,5 @@ import OpenAI from 'openai'; -import { GoogleGenerativeAI } from '@google/generative-ai'; +import { GoogleGenAI } from '@google/genai'; import { NextResponse } from 'next/server'; let _openai: OpenAI | null = null; @@ -8,9 +8,9 @@ function getOpenAI() { return _openai; } -let _gemini: GoogleGenerativeAI | null = null; +let _gemini: GoogleGenAI | null = null; function getGemini() { - if (!_gemini) _gemini = new GoogleGenerativeAI(process.env.GEMINI_API_KEY || ''); + if (!_gemini) _gemini = new GoogleGenAI({ apiKey: process.env.GEMINI_API_KEY || '' }); return _gemini; } @@ -121,32 +121,76 @@ Be thorough — capture all key points, quotes, and technical details.`, } } - // Strategy 3: Gemini fallback (when OpenAI unavailable) + // Strategy 3: Gemini with direct YouTube URL processing + Google Search grounding if (url && !audioUrl && process.env.GEMINI_API_KEY) { try { - const model = getGemini().getGenerativeModel({ + const ai = getGemini(); + const result = await ai.models.generateContent({ model: 'gemini-2.0-flash', - generationConfig: { temperature: 0.2 }, + contents: [ + { + role: 'user', + parts: [ + { + fileData: { + mimeType: 'video/*', + fileUri: url, + }, + }, + { + text: 'Provide a complete, detailed transcript of this video. ' + + 'Include all spoken content verbatim. ' + + 'Include timestamps where possible in [MM:SS] format. ' + + 'Be thorough and comprehensive — capture every key point, quote, and technical detail.', + }, + ], + }, + ], + config: { + temperature: 0.2, + tools: [{ googleSearch: {} }], + }, }); - - const result = await model.generateContent( - `You are a video content transcription assistant. ` + - `For the following YouTube video URL, provide a detailed transcript or content summary. ` + - `Include all key points, technical details, quotes, and actionable insights. ` + - `Be thorough and comprehensive.\n\nVideo URL: ${url}` - ); - const text = result.response.text(); + const text = result.text ?? ''; if (text.length > 100) { return NextResponse.json({ success: true, transcript: text, - source: 'gemini', + source: 'gemini-video', wordCount: text.split(/\s+/).length, }); } } catch (e) { - console.warn('Gemini transcript fallback failed:', e); + console.warn('Gemini video URL processing failed, trying text fallback:', e); + + // Fallback: text-based Gemini with Google Search grounding + try { + const ai = getGemini(); + const result = await ai.models.generateContent({ + model: 'gemini-2.0-flash', + contents: `You are a video content transcription assistant. ` + + `For the following YouTube video URL, provide a detailed transcript or content summary. ` + + `Include all key points, technical details, quotes, and actionable insights. ` + + `Be thorough and comprehensive.\n\nVideo URL: ${url}`, + config: { + temperature: 0.2, + tools: [{ googleSearch: {} }], + }, + }); + const text = result.text ?? ''; + + if (text.length > 100) { + return NextResponse.json({ + success: true, + transcript: text, + source: 'gemini', + wordCount: text.split(/\s+/).length, + }); + } + } catch (e2) { + console.warn('Gemini text fallback also failed:', e2); + } } } diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1247 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1247 index ca47fff5d..1e42a4ef3 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1247 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1247 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1247_vm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1247_vm index 67d4709d5..32531f8ec 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1247_vm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1247_vm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1249 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1249 index f5f08ea96..9904089c2 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1249 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1249 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1249_fsm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1249_fsm index e0ed4b02f..f80d40392 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1249_fsm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1249_fsm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1249_vm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1249_vm index f7dfdfaaa..830cc949a 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1249_vm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1249_vm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1255 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1255 index 2be2b17b2..c843e718f 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1255 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1255 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1255_fsm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1255_fsm index 07fe6be8e..bcaba4db0 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1255_fsm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1255_fsm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1255_vm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1255_vm index d97f36f56..71b553db2 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1255_vm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1255_vm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1259 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1259 index f0ffdd04b..ab8e21103 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1259 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1259 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1259_vm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1259_vm index b9eb0d086..21b6f61de 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/1259_vm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/1259_vm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2579 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2579 index ee90c8ae1..91087fb0c 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2579 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2579 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2600 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2600 index 244b5034c..f3673129b 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2600 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2600 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2600_fsm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2600_fsm index c542a78b6..618053456 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2600_fsm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2600_fsm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2600_vm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2600_vm index a660da379..7ab3b4dd1 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2600_vm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2600_vm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2601 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2601 index d8001c8cc..d9b3d808b 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2601 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2601 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2601_vm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2601_vm index b9609d4c5..acc0c9ce5 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2601_vm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2601_vm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2602 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2602 index c570ee855..437d55989 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2602 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2602 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2602_fsm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2602_fsm index 23170d858..8b83f3e4d 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2602_fsm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2602_fsm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2602_vm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2602_vm index 19b3a422a..479c3ce64 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2602_vm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2602_vm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2603 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2603 index d511af568..91acb2db7 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2603 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2603 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2603_vm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2603_vm index dcb8e9991..1042fa4bf 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2603_vm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2603_vm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2604 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2604 index 6d17cf9d1..ae1416fa7 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2604 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2604 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2605 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2605 index eeaa7eaaf..4a109aaa9 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2605 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2605 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2605_vm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2605_vm index a574f3f23..2f5e42ce7 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2605_vm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2605_vm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2606 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2606 index f4d0388a0..20aed235c 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2606 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2606 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2606_vm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2606_vm index 3b6b572a8..892fc7e47 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2606_vm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2606_vm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2608 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2608 index b83b1bca3..fbf612590 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2608 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2608 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2608_fsm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2608_fsm index 4b1978519..f0363b0df 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2608_fsm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2608_fsm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2608_vm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2608_vm index 1e909fb32..bb1cb1133 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2608_vm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2608_vm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2609 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2609 index 67690e67e..896761d56 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2609 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2609 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2609_vm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2609_vm index b3a469d48..6fbd8abb3 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2609_vm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2609_vm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2610 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2610 index c5188f365..972729775 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2610 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2610 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2610_fsm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2610_fsm index ecbcb5fa0..cb18a43c4 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2610_fsm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2610_fsm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2610_vm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2610_vm index ddaab3b2f..2850e4ea5 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2610_vm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2610_vm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2616 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2616 index 5f889bb21..ee1599c7a 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2616 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2616 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2616_fsm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2616_fsm index cb924c95e..5cc841642 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2616_fsm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2616_fsm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2616_vm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2616_vm index 06c326325..5318c1df4 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2616_vm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2616_vm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2617 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2617 index d9f1b8811..0fb11d30f 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2617 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2617 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2617_fsm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2617_fsm index 29d606666..1e33bf6ba 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2617_fsm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2617_fsm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2617_vm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2617_vm index b9edea003..a562e135b 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2617_vm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2617_vm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2620 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2620 index 6d17cf9d1..249bf54f7 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2620 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2620 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2650 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2650 index 7ff75e8e0..ab64670a1 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2650 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2650 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2651 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2651 index 7f19250ce..76f496ea8 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2651 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2651 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2652 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2652 index 7cfefcf18..9cdf28407 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2652 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2652 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2653 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2653 index ce88a98c0..f54ef6acb 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2653 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2653 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2654 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2654 index d396a2fe7..120d0643b 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2654 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2654 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2655 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2655 index 7b32d562f..1e7054485 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2655 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2655 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2656 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2656 index 947f01591..b5e2886fc 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2656 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2656 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2657 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2657 index f71870707..3da42cab6 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2657 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2657 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2658 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2658 index 98a10b94d..d24364402 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2658 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2658 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2659 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2659 index a8fb45908..1bf74156b 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2659 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2659 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2660 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2660 index 3a2a60ea7..11ec361dd 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2660 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2660 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2661 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2661 index a13d59d30..468008dee 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2661 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2661 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2662 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2662 index 64c5a6622..6704f9b95 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2662 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2662 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2663 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2663 index c0df73dd8..a3716a764 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2663 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2663 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2664 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2664 index ac81c61e5..3e49e1490 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2664 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2664 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2665 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2665 index 8c3b0f13f..1befe7d3c 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2665 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2665 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2666 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2666 index 0a5922972..504d35d30 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2666 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2666 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2667 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2667 index b40de512a..9ed2f63a3 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2667 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2667 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2673 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2673 index 1ba06e2ee..2602cf629 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2673 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2673 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2674 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2674 index 040d1cf02..29dec49d3 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2674 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2674 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2675 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2675 index b9ae98657..93e49190c 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2675 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2675 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2678 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2678 index 37296460d..12ab23236 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2678 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2678 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2679 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2679 index 9a08d88d6..383970c5c 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2679 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2679 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2686 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2686 index c4946b5c8..9960e8d2d 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2686 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2686 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2687 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2687 index e12ac67dc..ad2ceed85 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2687 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2687 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2688 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2688 index 3ab808f71..115b0ab73 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2688 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2688 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2689 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2689 index 3b8852a93..377209901 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2689 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2689 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2690 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2690 index e5bcc7420..d7ee537d8 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2690 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2690 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2691 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2691 index 6bf3a7e0c..d0ae865ac 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2691 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2691 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2699 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2699 index ba317b088..79a5b6f1f 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2699 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2699 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2701 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2701 index f3e147d9d..bbc479497 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2701 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2701 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2702 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2702 index 20b89945a..b174aa5b7 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2702 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2702 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2703 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2703 index 5d2e949af..c427069e3 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2703 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2703 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2704 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2704 index d2817d4a3..93da9ed58 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2704 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2704 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2753 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2753 index 3341df60d..79ddada62 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2753 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2753 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2753_fsm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2753_fsm index 642bce3b3..8315621b1 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2753_fsm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2753_fsm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2753_vm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2753_vm index 28cca2924..d2b38d1ba 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2753_vm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2753_vm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2754 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2754 index 1ae1d6ba8..0d98a1248 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2754 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2754 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2755 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2755 index 09a103ae7..b908e2739 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2755 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2755 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2756 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2756 index b5e055baf..dc37f549e 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2756 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2756 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2757 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2757 index d8d3b9633..88b5f500e 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/2757 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/2757 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/3079 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/3079 index c4095a037..0517e1bef 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/3079 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/3079 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/3079_vm b/dataconnect/.dataconnect/pgliteData/pg17/base/1/3079_vm index 4975cc58a..f45f32108 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/3079_vm and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/3079_vm differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/3080 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/3080 index b041640a7..89c354b5b 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/3080 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/3080 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/3081 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/3081 index 4293f3f9d..026d75073 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/3081 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/3081 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/base/1/3455 b/dataconnect/.dataconnect/pgliteData/pg17/base/1/3455 index 166a9325e..9dea55ce6 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/base/1/3455 and b/dataconnect/.dataconnect/pgliteData/pg17/base/1/3455 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/global/1262 b/dataconnect/.dataconnect/pgliteData/pg17/global/1262 index b64f30afe..296bb34cf 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/global/1262 and b/dataconnect/.dataconnect/pgliteData/pg17/global/1262 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/global/2396 b/dataconnect/.dataconnect/pgliteData/pg17/global/2396 index 9536eca37..db894f07e 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/global/2396 and b/dataconnect/.dataconnect/pgliteData/pg17/global/2396 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/global/2397 b/dataconnect/.dataconnect/pgliteData/pg17/global/2397 index c702aa5dd..6f1c04d84 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/global/2397 and b/dataconnect/.dataconnect/pgliteData/pg17/global/2397 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/global/pg_control b/dataconnect/.dataconnect/pgliteData/pg17/global/pg_control index 22a3eff4d..29e38812a 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/global/pg_control and b/dataconnect/.dataconnect/pgliteData/pg17/global/pg_control differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/pg_wal/000000010000000000000006 b/dataconnect/.dataconnect/pgliteData/pg17/pg_wal/000000010000000000000006 index 10ea78dfd..1ad2e885c 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/pg_wal/000000010000000000000006 and b/dataconnect/.dataconnect/pgliteData/pg17/pg_wal/000000010000000000000006 differ diff --git a/dataconnect/.dataconnect/pgliteData/pg17/pg_wal/000000010000000000000005 b/dataconnect/.dataconnect/pgliteData/pg17/pg_wal/00000001000000000000000A similarity index 100% rename from dataconnect/.dataconnect/pgliteData/pg17/pg_wal/000000010000000000000005 rename to dataconnect/.dataconnect/pgliteData/pg17/pg_wal/00000001000000000000000A diff --git a/dataconnect/.dataconnect/pgliteData/pg17/pg_xact/0000 b/dataconnect/.dataconnect/pgliteData/pg17/pg_xact/0000 index b23ff82b2..bae0ee37b 100644 Binary files a/dataconnect/.dataconnect/pgliteData/pg17/pg_xact/0000 and b/dataconnect/.dataconnect/pgliteData/pg17/pg_xact/0000 differ diff --git a/dataconnect/.dataconnect/schema/prelude.gql b/dataconnect/.dataconnect/schema/prelude.gql index 8230e86c9..409713b4e 100644 --- a/dataconnect/.dataconnect/schema/prelude.gql +++ b/dataconnect/.dataconnect/schema/prelude.gql @@ -534,6 +534,138 @@ input Any_ListFilter { excludesAll: [Any!] } +"Conditions on a `Date` value." +input Date_Filter { + "Match if the field `IS NULL`." + isNull: Boolean + "Match if the field is exactly equal to the provided value." + eq: Date @fdc_oneOf(group: "eq") + "Match if the field equals the provided CEL expression." + eq_expr: Date_Expr @fdc_oneOf(group: "eq") + "Match if the field equals the provided relative date." + eq_date: Date_Relative @fdc_oneOf(group: "eq") + "Match if the field is not equal to the provided value." + ne: Date @fdc_oneOf(group: "ne") + "Match if the field is not equal to the provided CEL expression." + ne_expr: Date_Expr @fdc_oneOf(group: "ne") + "Match if the field is not equal to the provided relative date." + ne_date: Date_Relative @fdc_oneOf(group: "ne") + "Match if the field value is among the provided list of values." + in: [Date!] + "Match if the field value is not among the provided list of values." + nin: [Date!] + "Match if the field value is greater than the provided value." + gt: Date @fdc_oneOf(group: "gt") + "Match if the field value is greater than the provided CEL expression." + gt_expr: Date_Expr @fdc_oneOf(group: "gt") + "Match if the field value is greater than the provided relative date." + gt_date: Date_Relative @fdc_oneOf(group: "gt") + "Match if the field value is greater than or equal to the provided value." + ge: Date @fdc_oneOf(group: "ge") + "Match if the field value is greater than or equal to the provided CEL expression." + ge_expr: Date_Expr @fdc_oneOf(group: "ge") + "Match if the field value is greater than or equal to the provided relative date." + ge_date: Date_Relative @fdc_oneOf(group: "ge") + "Match if the field value is less than the provided value." + lt: Date @fdc_oneOf(group: "lt") + "Match if the field value is less than the provided CEL expression." + lt_expr: Date_Expr @fdc_oneOf(group: "lt") + "Match if the field value is less than the provided relative date." + lt_date: Date_Relative @fdc_oneOf(group: "lt") + "Match if the field value is less than or equal to the provided value." + le: Date @fdc_oneOf(group: "le") + "Match if the field value is less than or equal to the provided CEL expression." + le_expr: Date_Expr @fdc_oneOf(group: "le") + "Match if the field value is less than or equal to the provided relative date." + le_date: Date_Relative @fdc_oneOf(group: "le") +} + +"Conditions on a`Date` list." +input Date_ListFilter { + "Match if the list contains the provided date." + includes: Date @fdc_oneOf(group: "includes") + "Match if the list contains the provided date CEL expression." + includes_expr: Date_Expr @fdc_oneOf(group: "includes") + "Match if the list contains the provided relative date." + includes_date: Date_Relative @fdc_oneOf(group: "includes") + "Match if the list does not contain the provided date." + excludes: Date @fdc_oneOf(group: "excludes") + "Match if the list does not contain the provided date CEL expression." + excludes_expr: Date_Expr @fdc_oneOf(group: "excludes") + "Match if the list does not contain the provided relative date." + excludes_date: Date_Relative @fdc_oneOf(group: "excludes") + "Match if the list contains all the provided dates." + includesAll: [Date!] + "Match if the list contains none of the provided dates." + excludesAll: [Date!] +} + +"Conditions on a `Timestamp` value." +input Timestamp_Filter { + "Match if the field `IS NULL`." + isNull: Boolean + "Match if the field is exactly equal to the provided value." + eq: Timestamp @fdc_oneOf(group: "eq") + "Match if the field equals the provided CEL expression." + eq_expr: Timestamp_Expr @fdc_oneOf(group: "eq") + "Match if the field equals the provided relative time." + eq_time: Timestamp_Relative @fdc_oneOf(group: "eq") + "Match if the field is not equal to the provided value." + ne: Timestamp @fdc_oneOf(group: "ne") + "Match if the field is not equal to the provided CEL expression." + ne_expr: Timestamp_Expr @fdc_oneOf(group: "ne") + "Match if the field is not equal to the provided relative time." + ne_time: Timestamp_Relative @fdc_oneOf(group: "ne") + "Match if the field value is among the provided list of values." + in: [Timestamp!] + "Match if the field value is not among the provided list of values." + nin: [Timestamp!] + "Match if the field value is greater than the provided value." + gt: Timestamp @fdc_oneOf(group: "gt") + "Match if the field value is greater than the provided CEL expression." + gt_expr: Timestamp_Expr @fdc_oneOf(group: "gt") + "Match if the field value is greater than the provided relative time." + gt_time: Timestamp_Relative @fdc_oneOf(group: "gt") + "Match if the field value is greater than or equal to the provided value." + ge: Timestamp @fdc_oneOf(group: "ge") + "Match if the field value is greater than or equal to the provided CEL expression." + ge_expr: Timestamp_Expr @fdc_oneOf(group: "ge") + "Match if the field value is greater than or equal to the provided relative time." + ge_time: Timestamp_Relative @fdc_oneOf(group: "ge") + "Match if the field value is less than the provided value." + lt: Timestamp @fdc_oneOf(group: "lt") + "Match if the field value is less than the provided CEL expression." + lt_expr: Timestamp_Expr @fdc_oneOf(group: "lt") + "Match if the field value is less than the provided relative time." + lt_time: Timestamp_Relative @fdc_oneOf(group: "lt") + "Match if the field value is less than or equal to the provided value." + le: Timestamp @fdc_oneOf(group: "le") + "Match if the field value is less than or equal to the provided CEL expression." + le_expr: Timestamp_Expr @fdc_oneOf(group: "le") + "Match if the field value is less than or equal to the provided relative time." + le_time: Timestamp_Relative @fdc_oneOf(group: "le") +} + +"Conditions on a `Timestamp` list." +input Timestamp_ListFilter { + "Match if the list contains the provided timestamp." + includes: Timestamp @fdc_oneOf(group: "includes") + "Match if the list contains the provided timestamp CEL expression." + includes_expr: Timestamp_Expr @fdc_oneOf(group: "includes") + "Match if the list contains the provided relative timestamp." + includes_time: Timestamp_Relative @fdc_oneOf(group: "includes") + "Match if the list does not contain the provided timestamp." + excludes: Timestamp @fdc_oneOf(group: "excludes") + "Match if the list does not contain the provided timestamp CEL expression." + excludes_expr: Timestamp_Expr @fdc_oneOf(group: "excludes") + "Match if the list does not contain the provided relative timestamp." + excludes_time: Timestamp_Relative @fdc_oneOf(group: "excludes") + "Match if the list contains all the provided timestamps." + includesAll: [Timestamp!] + "Match if the list contains none of the provided timestamps." + excludesAll: [Timestamp!] +} + """ Put on a `String` field to include it in the full-text search index. @@ -880,6 +1012,44 @@ scalar True @fdc_forbiddenAsVariableType @fdc_example(value: true, description: "The only allowed value.") +""" +Date is a string in the YYYY-MM-DD format representing a local-only date. + +See the description for Timestamp for range and limitations. + +As a FDC-specific extension, inputs that includes time portions (as specified by +the Timestamp scalar) are accepted but only the date portion is used. In other +words, only the part before "T" is used and the rest discarded. This effectively +truncates it to the local date in the specified time-zone. + +Outputs will always be in the canonical YYYY-MM-DD format. + +In the PostgreSQL table, it's stored as [`date`](https://www.postgresql.org/docs/current/datatype-datetime.html). +""" +scalar Date @specifiedBy(url: "https://scalars.graphql.org/andimarek/local-date.html") + +""" +Timestamp is a RFC 3339 string that represents an exact point in time. + +The serialization format follows https://scalars.graphql.org/andimarek/date-time +except the "Non-optional exact milliseconds" Section. As a FDC-specific +extension, inputs and outputs may contain 0, 3, 6, or 9 fractional digits. + +Specifically, output precision varies by server-side factors such as data source +support and clients must not rely on an exact number of digits. Clients may +truncate extra digits as fit, with the caveat that there may be information loss +if the truncated value is subsequently sent back to the server. + +FDC only supports year 1583 to 9999 (inclusive) and uses the ISO-8601 calendar +system for all date-time calculations. Notably, the expanded year representation +(+/-YYYYY) is rejected and Year 1582 and before may either be rejected or cause +undefined behavior. + +In the PostgreSQL table, it's stored as [`timestamptz`](https://www.postgresql.org/docs/current/datatype-datetime.html). +""" +scalar Timestamp @specifiedBy(url: "https://scalars.graphql.org/andimarek/date-time") + + """ A Common Expression Language (CEL) expression that returns a boolean at runtime. @@ -977,6 +1147,32 @@ scalar Any_SQL @fdc_forbiddenAsVariableType @fdc_forbiddenAsFieldType +""" +A Common Expression Language (CEL) expression that returns a Timestamp at runtime. + +Limitation: Right now, only a few expressions are supported. +""" +scalar Timestamp_Expr + @specifiedBy(url: "https://github.com/google/cel-spec") + @fdc_celExpression(returnType: "google.protobuf.Timestamp") + @fdc_forbiddenAsVariableType + @fdc_forbiddenAsFieldType + @fdc_example(value: "request.time", description: "The timestamp when the request is received (with microseconds precision).") + +""" +A Common Expression Language (CEL) expression that returns a Timestamp at runtime, +which is then truncated to UTC date only. The time-of-day parts are discarded. + +Limitation: Right now, only a few expressions are supported. +""" +scalar Date_Expr + @specifiedBy(url: "https://github.com/google/cel-spec") + @fdc_celExpression(returnType: "google.protobuf.Timestamp") + @fdc_forbiddenAsVariableType + @fdc_forbiddenAsFieldType + @fdc_example(value: "request.time", description: "The UTC date on which the request is received.") + + """ Defines a relational database table. @@ -1665,240 +1861,6 @@ directive @unique( fields: [String!] ) repeatable on FIELD_DEFINITION | OBJECT -""" -Date is a string in the YYYY-MM-DD format representing a local-only date. - -See the description for Timestamp for range and limitations. - -As a FDC-specific extension, inputs that includes time portions (as specified by -the Timestamp scalar) are accepted but only the date portion is used. In other -words, only the part before "T" is used and the rest discarded. This effectively -truncates it to the local date in the specified time-zone. - -Outputs will always be in the canonical YYYY-MM-DD format. - -In the PostgreSQL table, it's stored as [`date`](https://www.postgresql.org/docs/current/datatype-datetime.html). -""" -scalar Date @specifiedBy(url: "https://scalars.graphql.org/andimarek/local-date.html") - -""" -Timestamp is a RFC 3339 string that represents an exact point in time. - -The serialization format follows https://scalars.graphql.org/andimarek/date-time -except the "Non-optional exact milliseconds" Section. As a FDC-specific -extension, inputs and outputs may contain 0, 3, 6, or 9 fractional digits. - -Specifically, output precision varies by server-side factors such as data source -support and clients must not rely on an exact number of digits. Clients may -truncate extra digits as fit, with the caveat that there may be information loss -if the truncated value is subsequently sent back to the server. - -FDC only supports year 1583 to 9999 (inclusive) and uses the ISO-8601 calendar -system for all date-time calculations. Notably, the expanded year representation -(+/-YYYYY) is rejected and Year 1582 and before may either be rejected or cause -undefined behavior. - -In the PostgreSQL table, it's stored as [`timestamptz`](https://www.postgresql.org/docs/current/datatype-datetime.html). -""" -scalar Timestamp @specifiedBy(url: "https://scalars.graphql.org/andimarek/date-time") - -""" -A Common Expression Language (CEL) expression that returns a Timestamp at runtime. - -Limitation: Right now, only a few expressions are supported. -""" -scalar Timestamp_Expr - @specifiedBy(url: "https://github.com/google/cel-spec") - @fdc_celExpression(returnType: "google.protobuf.Timestamp") - @fdc_forbiddenAsVariableType - @fdc_forbiddenAsFieldType - @fdc_example(value: "request.time", description: "The timestamp when the request is received (with microseconds precision).") - -""" -A Common Expression Language (CEL) expression that returns a Timestamp at runtime, -which is then truncated to UTC date only. The time-of-day parts are discarded. - -Limitation: Right now, only a few expressions are supported. -""" -scalar Date_Expr - @specifiedBy(url: "https://github.com/google/cel-spec") - @fdc_celExpression(returnType: "google.protobuf.Timestamp") - @fdc_forbiddenAsVariableType - @fdc_forbiddenAsFieldType - @fdc_example(value: "request.time", description: "The UTC date on which the request is received.") - -"Conditions on a `Date` value." -input Date_Filter { - "Match if the field `IS NULL`." - isNull: Boolean - "Match if the field is exactly equal to the provided value." - eq: Date @fdc_oneOf(group: "eq") - "Match if the field equals the provided CEL expression." - eq_expr: Date_Expr @fdc_oneOf(group: "eq") - "Match if the field equals the provided relative date." - eq_date: Date_Relative @fdc_oneOf(group: "eq") - "Match if the field is not equal to the provided value." - ne: Date @fdc_oneOf(group: "ne") - "Match if the field is not equal to the provided CEL expression." - ne_expr: Date_Expr @fdc_oneOf(group: "ne") - "Match if the field is not equal to the provided relative date." - ne_date: Date_Relative @fdc_oneOf(group: "ne") - "Match if the field value is among the provided list of values." - in: [Date!] - "Match if the field value is not among the provided list of values." - nin: [Date!] - "Match if the field value is greater than the provided value." - gt: Date @fdc_oneOf(group: "gt") - "Match if the field value is greater than the provided CEL expression." - gt_expr: Date_Expr @fdc_oneOf(group: "gt") - "Match if the field value is greater than the provided relative date." - gt_date: Date_Relative @fdc_oneOf(group: "gt") - "Match if the field value is greater than or equal to the provided value." - ge: Date @fdc_oneOf(group: "ge") - "Match if the field value is greater than or equal to the provided CEL expression." - ge_expr: Date_Expr @fdc_oneOf(group: "ge") - "Match if the field value is greater than or equal to the provided relative date." - ge_date: Date_Relative @fdc_oneOf(group: "ge") - "Match if the field value is less than the provided value." - lt: Date @fdc_oneOf(group: "lt") - "Match if the field value is less than the provided CEL expression." - lt_expr: Date_Expr @fdc_oneOf(group: "lt") - "Match if the field value is less than the provided relative date." - lt_date: Date_Relative @fdc_oneOf(group: "lt") - "Match if the field value is less than or equal to the provided value." - le: Date @fdc_oneOf(group: "le") - "Match if the field value is less than or equal to the provided CEL expression." - le_expr: Date_Expr @fdc_oneOf(group: "le") - "Match if the field value is less than or equal to the provided relative date." - le_date: Date_Relative @fdc_oneOf(group: "le") -} - -"Conditions on a`Date` list." -input Date_ListFilter { - "Match if the list contains the provided date." - includes: Date @fdc_oneOf(group: "includes") - "Match if the list contains the provided date CEL expression." - includes_expr: Date_Expr @fdc_oneOf(group: "includes") - "Match if the list contains the provided relative date." - includes_date: Date_Relative @fdc_oneOf(group: "includes") - "Match if the list does not contain the provided date." - excludes: Date @fdc_oneOf(group: "excludes") - "Match if the list does not contain the provided date CEL expression." - excludes_expr: Date_Expr @fdc_oneOf(group: "excludes") - "Match if the list does not contain the provided relative date." - excludes_date: Date_Relative @fdc_oneOf(group: "excludes") - "Match if the list contains all the provided dates." - includesAll: [Date!] - "Match if the list contains none of the provided dates." - excludesAll: [Date!] -} - -"Conditions on a `Timestamp` value." -input Timestamp_Filter { - "Match if the field `IS NULL`." - isNull: Boolean - "Match if the field is exactly equal to the provided value." - eq: Timestamp @fdc_oneOf(group: "eq") - "Match if the field equals the provided CEL expression." - eq_expr: Timestamp_Expr @fdc_oneOf(group: "eq") - "Match if the field equals the provided relative time." - eq_time: Timestamp_Relative @fdc_oneOf(group: "eq") - "Match if the field is not equal to the provided value." - ne: Timestamp @fdc_oneOf(group: "ne") - "Match if the field is not equal to the provided CEL expression." - ne_expr: Timestamp_Expr @fdc_oneOf(group: "ne") - "Match if the field is not equal to the provided relative time." - ne_time: Timestamp_Relative @fdc_oneOf(group: "ne") - "Match if the field value is among the provided list of values." - in: [Timestamp!] - "Match if the field value is not among the provided list of values." - nin: [Timestamp!] - "Match if the field value is greater than the provided value." - gt: Timestamp @fdc_oneOf(group: "gt") - "Match if the field value is greater than the provided CEL expression." - gt_expr: Timestamp_Expr @fdc_oneOf(group: "gt") - "Match if the field value is greater than the provided relative time." - gt_time: Timestamp_Relative @fdc_oneOf(group: "gt") - "Match if the field value is greater than or equal to the provided value." - ge: Timestamp @fdc_oneOf(group: "ge") - "Match if the field value is greater than or equal to the provided CEL expression." - ge_expr: Timestamp_Expr @fdc_oneOf(group: "ge") - "Match if the field value is greater than or equal to the provided relative time." - ge_time: Timestamp_Relative @fdc_oneOf(group: "ge") - "Match if the field value is less than the provided value." - lt: Timestamp @fdc_oneOf(group: "lt") - "Match if the field value is less than the provided CEL expression." - lt_expr: Timestamp_Expr @fdc_oneOf(group: "lt") - "Match if the field value is less than the provided relative time." - lt_time: Timestamp_Relative @fdc_oneOf(group: "lt") - "Match if the field value is less than or equal to the provided value." - le: Timestamp @fdc_oneOf(group: "le") - "Match if the field value is less than or equal to the provided CEL expression." - le_expr: Timestamp_Expr @fdc_oneOf(group: "le") - "Match if the field value is less than or equal to the provided relative time." - le_time: Timestamp_Relative @fdc_oneOf(group: "le") -} - -"Conditions on a `Timestamp` list." -input Timestamp_ListFilter { - "Match if the list contains the provided timestamp." - includes: Timestamp @fdc_oneOf(group: "includes") - "Match if the list contains the provided timestamp CEL expression." - includes_expr: Timestamp_Expr @fdc_oneOf(group: "includes") - "Match if the list contains the provided relative timestamp." - includes_time: Timestamp_Relative @fdc_oneOf(group: "includes") - "Match if the list does not contain the provided timestamp." - excludes: Timestamp @fdc_oneOf(group: "excludes") - "Match if the list does not contain the provided timestamp CEL expression." - excludes_expr: Timestamp_Expr @fdc_oneOf(group: "excludes") - "Match if the list does not contain the provided relative timestamp." - excludes_time: Timestamp_Relative @fdc_oneOf(group: "excludes") - "Match if the list contains all the provided timestamps." - includesAll: [Timestamp!] - "Match if the list contains none of the provided timestamps." - excludesAll: [Timestamp!] -} - -"Update input of a `Date` value. Only one of `inc` or `dec` may be specified." -input Date_Update { - "Increment the field by a provided duration." - inc: Date_Duration @fdc_oneOf - "Decrement the field by a provided duration." - dec: Date_Duration @fdc_oneOf -} - -"Update input of a `Date` list value. Only one of `append`, `prepend`, `add`, or `remove` may be specified." -input Date_ListUpdate { - "Append the provided `Date` values to the existing list." - append: [Date!] @fdc_oneOf - "Prepend the provided `Date` values to the existing list." - prepend: [Date!] @fdc_oneOf - "Append any `Date` values that do not already exist to the list." - add: [Date!] @fdc_oneOf - "Remove all occurrences of each `Date` from the list." - remove: [Date!] @fdc_oneOf -} - -"Update input of a `Timestamp` value. Only one of `inc` or `dec` may be specified." -input Timestamp_Update { - "Increment the field by a provided duration." - inc: Timestamp_Duration @fdc_oneOf - "Decrement the field by a provided duration." - dec: Timestamp_Duration @fdc_oneOf -} - -"Update input of an `Timestamp` list value. Only one of `append`, `prepend`, `add`, or `remove` may be specified." -input Timestamp_ListUpdate { - "Append the provided `Timestamp` values to the existing list." - append: [Timestamp!] @fdc_oneOf - "Prepend the provided `Timestamp` values to the existing list." - prepend: [Timestamp!] @fdc_oneOf - "Append any `Timestamp` values that do not already exist to the list." - add: [Timestamp!] @fdc_oneOf - "Remove all occurrences of each `Timestamp` from the list." - remove: [Timestamp!] @fdc_oneOf -} - "A runtime-calculated `Timestamp` value relative to `now` or `at`." input Timestamp_Relative @fdc_forbiddenAsVariableType @fdc_forbiddenAsFieldType { "Match for the current time." @@ -2091,6 +2053,46 @@ input Any_ListUpdate { remove: [Any!] @fdc_oneOf } +"Update input of a `Date` value. Only one of `inc` or `dec` may be specified." +input Date_Update { + "Increment the field by a provided duration." + inc: Date_Duration @fdc_oneOf + "Decrement the field by a provided duration." + dec: Date_Duration @fdc_oneOf +} + +"Update input of a `Date` list value. Only one of `append`, `prepend`, `add`, or `remove` may be specified." +input Date_ListUpdate { + "Append the provided `Date` values to the existing list." + append: [Date!] @fdc_oneOf + "Prepend the provided `Date` values to the existing list." + prepend: [Date!] @fdc_oneOf + "Append any `Date` values that do not already exist to the list." + add: [Date!] @fdc_oneOf + "Remove all occurrences of each `Date` from the list." + remove: [Date!] @fdc_oneOf +} + +"Update input of a `Timestamp` value. Only one of `inc` or `dec` may be specified." +input Timestamp_Update { + "Increment the field by a provided duration." + inc: Timestamp_Duration @fdc_oneOf + "Decrement the field by a provided duration." + dec: Timestamp_Duration @fdc_oneOf +} + +"Update input of an `Timestamp` list value. Only one of `append`, `prepend`, `add`, or `remove` may be specified." +input Timestamp_ListUpdate { + "Append the provided `Timestamp` values to the existing list." + append: [Timestamp!] @fdc_oneOf + "Prepend the provided `Timestamp` values to the existing list." + prepend: [Timestamp!] @fdc_oneOf + "Append any `Timestamp` values that do not already exist to the list." + add: [Timestamp!] @fdc_oneOf + "Remove all occurrences of each `Timestamp` from the list." + remove: [Timestamp!] @fdc_oneOf +} + type Query { """ _service provides customized introspection on Firebase Data Connect Sevice. diff --git a/notebooklm_chrome_profile/CertificateRevocation/10349/LICENSE b/notebooklm_chrome_profile/CertificateRevocation/10349/LICENSE new file mode 100644 index 000000000..33072b59f --- /dev/null +++ b/notebooklm_chrome_profile/CertificateRevocation/10349/LICENSE @@ -0,0 +1,27 @@ +// Copyright 2015 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/notebooklm_chrome_profile/CertificateRevocation/10349/_metadata/verified_contents.json b/notebooklm_chrome_profile/CertificateRevocation/10349/_metadata/verified_contents.json new file mode 100644 index 000000000..740fea299 --- /dev/null +++ b/notebooklm_chrome_profile/CertificateRevocation/10349/_metadata/verified_contents.json @@ -0,0 +1 @@ +[{"description":"treehash per file","signed_content":{"payload":"eyJjb250ZW50X2hhc2hlcyI6W3siYmxvY2tfc2l6ZSI6NDA5NiwiZGlnZXN0Ijoic2hhMjU2IiwiZmlsZXMiOlt7InBhdGgiOiJMSUNFTlNFIiwicm9vdF9oYXNoIjoiUGIwc2tBVUxaUzFqWldTQnctV0hIRkltRlhVcExiZDlUcVkwR2ZHSHBWcyJ9LHsicGF0aCI6ImNybC1zZXQiLCJyb290X2hhc2giOiJCcUtwVVJfX0RpRlh3UGtBTXhUSnBHV2tVMGpNcmhaUldubmQ2ZlFjaWJZIn0seyJwYXRoIjoibWFuaWZlc3QuanNvbiIsInJvb3RfaGFzaCI6IjdxT3FEUFFMTThsaHV3X2s4eVk3bWFYaG9NTmlFU210cmFwVW1vWXJtUm8ifV0sImZvcm1hdCI6InRyZWVoYXNoIiwiaGFzaF9ibG9ja19zaXplIjo0MDk2fV0sIml0ZW1faWQiOiJoZm5rcGltbGhoZ2llYWRkZ2ZlbWpob2ZtZmJsbW5pYiIsIml0ZW1fdmVyc2lvbiI6IjEwMzQ5IiwicHJvdG9jb2xfdmVyc2lvbiI6MX0","signatures":[{"header":{"kid":"publisher"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"rHwshEkvBuJbaSWeeb7rmAcpu_zn9O0rcgYqDXq-HUYdxo0pdvbCcFvmlIM-Vjp9q2LIHCbDil0nK2uB6i3aZpVEtVMEk6NIbGU3mOcKF_sVDynwkfSo2r0oaXeiwIpRIAjB8A868QwKBqg-zVAk1KgjVd35rxxg8QJakiEIjKO1ngFy_S4DmvBtSUJrklZKHQqCzLuQDRVUdAAY_MU8liOuBCIYzyso3peeAbcXgVC_LiCZQa47-JVE3NtTxGgBYTaLxJNqaxs0duBD0rApm7hsl2Og4UIV8lO42-sCdj98KKjsXV0TELQ4R3sq8AsrKY7jmb6IHFsjXErs5zAzAQ"},{"header":{"kid":"webstore"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"fVWdbpwgaC_YXmVx4HfNxroJkdQFUv1sLniOi94wYbKzFNWcuYKOotT-zqG9pkxdXNx1gLedecMm8IOK-ohQYRjWCqParl_qoR-GUkVFySakxnFxTwml9ECQKP45T-kGEHSqTtwPeXCbh8QXFOdQGYftehl5N7RiKxdWxuV3HKFqWO91D4bZ0nISoBXaXniUAjANs40yIiaB2aFrhItmlsRU7x3zJsPiIIE14SGq2dOn9TEqWLu6v409ZSNeH0rGZm9vI7Bg_cyMUgTLR4ItQIpgn8FwuEhyRPRCVbk4LF8NuI5HZcugbJFCsSY3w3iWNJib0nOwL_xAQVZ97w8myQ"}]}}] \ No newline at end of file diff --git a/notebooklm_chrome_profile/CertificateRevocation/10349/crl-set b/notebooklm_chrome_profile/CertificateRevocation/10349/crl-set new file mode 100644 index 000000000..22fa76ad0 Binary files /dev/null and b/notebooklm_chrome_profile/CertificateRevocation/10349/crl-set differ diff --git a/notebooklm_chrome_profile/CertificateRevocation/10349/manifest.json b/notebooklm_chrome_profile/CertificateRevocation/10349/manifest.json new file mode 100644 index 000000000..ef043a1b4 --- /dev/null +++ b/notebooklm_chrome_profile/CertificateRevocation/10349/manifest.json @@ -0,0 +1,5 @@ +{ + "manifest_version": 2, + "name": "crl-set-16950606213867732949.data", + "version": "10349" +} \ No newline at end of file diff --git a/notebooklm_chrome_profile/CertificateRevocation/10351/LICENSE b/notebooklm_chrome_profile/CertificateRevocation/10351/LICENSE new file mode 100644 index 000000000..33072b59f --- /dev/null +++ b/notebooklm_chrome_profile/CertificateRevocation/10351/LICENSE @@ -0,0 +1,27 @@ +// Copyright 2015 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/notebooklm_chrome_profile/CertificateRevocation/10351/_metadata/verified_contents.json b/notebooklm_chrome_profile/CertificateRevocation/10351/_metadata/verified_contents.json new file mode 100644 index 000000000..65abcb565 --- /dev/null +++ b/notebooklm_chrome_profile/CertificateRevocation/10351/_metadata/verified_contents.json @@ -0,0 +1 @@ +[{"description":"treehash per file","signed_content":{"payload":"eyJjb250ZW50X2hhc2hlcyI6W3siYmxvY2tfc2l6ZSI6NDA5NiwiZGlnZXN0Ijoic2hhMjU2IiwiZmlsZXMiOlt7InBhdGgiOiJMSUNFTlNFIiwicm9vdF9oYXNoIjoiUGIwc2tBVUxaUzFqWldTQnctV0hIRkltRlhVcExiZDlUcVkwR2ZHSHBWcyJ9LHsicGF0aCI6ImNybC1zZXQiLCJyb290X2hhc2giOiJoN2FoQUkzeTNUd2dvTnZZeUVaYlZfUWdwT20ybXpOOTl4bmJEQzEtQ1pnIn0seyJwYXRoIjoibWFuaWZlc3QuanNvbiIsInJvb3RfaGFzaCI6InBmaHhMR0NJM0lDNG9UOV85dXlxTnFicGpkS1hwNjRGcVVfUnJxMGpKcjgifV0sImZvcm1hdCI6InRyZWVoYXNoIiwiaGFzaF9ibG9ja19zaXplIjo0MDk2fV0sIml0ZW1faWQiOiJoZm5rcGltbGhoZ2llYWRkZ2ZlbWpob2ZtZmJsbW5pYiIsIml0ZW1fdmVyc2lvbiI6IjEwMzUxIiwicHJvdG9jb2xfdmVyc2lvbiI6MX0","signatures":[{"header":{"kid":"publisher"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"LQynGXCzOOrr5W4cA2z_tRm4fD9CPdMNGdxIqIj80qgcBk1d5Dw4bC33p34rr1mxF3uXqKB12hPO-mh472nqwvZlMnt2T5spRB5xml-ox1P_cKAQevdHCqYjFvCYFAaNjf6GZMFCZT-b3vja8bxeV4A4IMs8TSOm9p2Jm2OCe8ICY8_P9T1NtGIoHjiKvG1WsDDt8BKar3o3YWkXs5f5RLB4TuomBI5e8MF3-P8Bd_E5Gow79njb8NdchOY0IwvZt8DKPvcOV6qpWc-XL4CDQgB5BQVmMCGjvuTwcDvGX6vEoYd_41fgvllRGLs6Fws8SwX7FSUxF9mraR0p6KlWeA"},{"header":{"kid":"webstore"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"drayZoHY2v-087D6TnsVykMKYNjP7OLlwOqi_RP3YO_OjcSTqU5Tj1kHkz5igpTwcALiuxzVTBOaTakUOfAdds6qY1-sL-VmsyenuNx3HxoLUBHL78ys0f3Yg9XHjQz7dEDOeeZ7zTCpTKY_lu6ciS0Ou6BQEwEojxH8ai89KWMJhv8mBorv_1i3Kn5I2R55wRH3laVBRtFSgidN5vbHJTlsPslQfUXuhtiSqd9JD_g5KFJrwVNlPUfzdLvb2gXFm-KIJNuOsMt4MU8qAh0fDnR2pm1A0zlnC0S2MaTD6otdoveLVGxg-wMb8DxGVlyGPcJhCwBpoloRULSKrk_cjg"}]}}] \ No newline at end of file diff --git a/notebooklm_chrome_profile/CertificateRevocation/10351/crl-set b/notebooklm_chrome_profile/CertificateRevocation/10351/crl-set new file mode 100644 index 000000000..27daee2cc Binary files /dev/null and b/notebooklm_chrome_profile/CertificateRevocation/10351/crl-set differ diff --git a/notebooklm_chrome_profile/CertificateRevocation/10351/manifest.json b/notebooklm_chrome_profile/CertificateRevocation/10351/manifest.json new file mode 100644 index 000000000..ac6df0fb6 --- /dev/null +++ b/notebooklm_chrome_profile/CertificateRevocation/10351/manifest.json @@ -0,0 +1,5 @@ +{ + "manifest_version": 2, + "name": "crl-set-15738149126434212667.data", + "version": "10351" +} \ No newline at end of file diff --git a/notebooklm_chrome_profile/CertificateRevocation/10352/LICENSE b/notebooklm_chrome_profile/CertificateRevocation/10352/LICENSE new file mode 100644 index 000000000..33072b59f --- /dev/null +++ b/notebooklm_chrome_profile/CertificateRevocation/10352/LICENSE @@ -0,0 +1,27 @@ +// Copyright 2015 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/notebooklm_chrome_profile/CertificateRevocation/10352/_metadata/verified_contents.json b/notebooklm_chrome_profile/CertificateRevocation/10352/_metadata/verified_contents.json new file mode 100644 index 000000000..cbafe7177 --- /dev/null +++ b/notebooklm_chrome_profile/CertificateRevocation/10352/_metadata/verified_contents.json @@ -0,0 +1 @@ +[{"description":"treehash per file","signed_content":{"payload":"eyJjb250ZW50X2hhc2hlcyI6W3siYmxvY2tfc2l6ZSI6NDA5NiwiZGlnZXN0Ijoic2hhMjU2IiwiZmlsZXMiOlt7InBhdGgiOiJMSUNFTlNFIiwicm9vdF9oYXNoIjoiUGIwc2tBVUxaUzFqWldTQnctV0hIRkltRlhVcExiZDlUcVkwR2ZHSHBWcyJ9LHsicGF0aCI6ImNybC1zZXQiLCJyb290X2hhc2giOiJLeHVSTm82OVZ4QVlGcElMWjVpT2NDVEdVa3F5UmxoWGxSOGo4QjJQUEpZIn0seyJwYXRoIjoibWFuaWZlc3QuanNvbiIsInJvb3RfaGFzaCI6Ik5nRFFPUmg0MF9IMmZDZGJPNDdTQzVyN0h0bU9xYkREZDVmQURvU3NDYmsifV0sImZvcm1hdCI6InRyZWVoYXNoIiwiaGFzaF9ibG9ja19zaXplIjo0MDk2fV0sIml0ZW1faWQiOiJoZm5rcGltbGhoZ2llYWRkZ2ZlbWpob2ZtZmJsbW5pYiIsIml0ZW1fdmVyc2lvbiI6IjEwMzUyIiwicHJvdG9jb2xfdmVyc2lvbiI6MX0","signatures":[{"header":{"kid":"publisher"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"Dh0AuuGH1JOO55xos5b8ycq2euiycTKPwGS4qHJmoMYw_mbjZ3MYkDdat8QDrFdiBJj-H_cKjo1DkaiqglM8FFfVWcOeugq3z6ZJuAuyKlO92g-fN_oDTS6MmTigbJL3s8W8v78Bkn7sKDFyPCO5x-EVsw_c7YsnmCE4hVbj7gzPj1S1zGrirFff010FOWuCW7u3WqtuyZ2e3bf56i8rR59hLgvGJoFROB5rqeUOe675XOswtje1WEJqaGAnP2MAtxkIv8jgKjfGAuxPIf78t4tvhFLtMC1LQrOIxNBbz1iwqQ_sJi3HuVJfWwlTom1BYlX6m3z4ZjFpt-NPyhJ0sA"},{"header":{"kid":"webstore"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"bsq4H2lCevzUqkYel1gqsvPtb6WMB3P8bF7_OQjCOa3fw-G-_H8m6bOjK0_j8s7R0f5muWz6WX2y_q1G989ti2ITJjVXuWlwV7NPp0Q47_Gg9dESR77O9z7EcOQVyJf54hS8hn81jXloqEy5Ge9ZL6HCGhme8-dBDrm6Ua2J3BMKr7XskFmFsO6G9jY7sCMN9gpaZC7yAuj2IkJ2ie25ykfvxSPpoOd-14FZlW8-m7WABhw_R_cZwHcRAJm_8BEvR4dmlpnAsWNmpcC7Nwsns2g-b-2EAStHXLBu0u2XmE1m1LCdKvVSbbiYOxjLz3XpSUOV6LbHbo3fktlWvQXXaw"}]}}] \ No newline at end of file diff --git a/notebooklm_chrome_profile/CertificateRevocation/10352/crl-set b/notebooklm_chrome_profile/CertificateRevocation/10352/crl-set new file mode 100644 index 000000000..7a3bb15d8 Binary files /dev/null and b/notebooklm_chrome_profile/CertificateRevocation/10352/crl-set differ diff --git a/notebooklm_chrome_profile/CertificateRevocation/10352/manifest.json b/notebooklm_chrome_profile/CertificateRevocation/10352/manifest.json new file mode 100644 index 000000000..35fe36df1 --- /dev/null +++ b/notebooklm_chrome_profile/CertificateRevocation/10352/manifest.json @@ -0,0 +1,5 @@ +{ + "manifest_version": 2, + "name": "crl-set-10928096480639340554.data", + "version": "10352" +} \ No newline at end of file diff --git a/notebooklm_chrome_profile/CertificateRevocation/10353/LICENSE b/notebooklm_chrome_profile/CertificateRevocation/10353/LICENSE new file mode 100644 index 000000000..33072b59f --- /dev/null +++ b/notebooklm_chrome_profile/CertificateRevocation/10353/LICENSE @@ -0,0 +1,27 @@ +// Copyright 2015 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/notebooklm_chrome_profile/CertificateRevocation/10353/_metadata/verified_contents.json b/notebooklm_chrome_profile/CertificateRevocation/10353/_metadata/verified_contents.json new file mode 100644 index 000000000..ab69e145c --- /dev/null +++ b/notebooklm_chrome_profile/CertificateRevocation/10353/_metadata/verified_contents.json @@ -0,0 +1 @@ +[{"description":"treehash per file","signed_content":{"payload":"eyJjb250ZW50X2hhc2hlcyI6W3siYmxvY2tfc2l6ZSI6NDA5NiwiZGlnZXN0Ijoic2hhMjU2IiwiZmlsZXMiOlt7InBhdGgiOiJMSUNFTlNFIiwicm9vdF9oYXNoIjoiUGIwc2tBVUxaUzFqWldTQnctV0hIRkltRlhVcExiZDlUcVkwR2ZHSHBWcyJ9LHsicGF0aCI6ImNybC1zZXQiLCJyb290X2hhc2giOiI2dUVvVGY1V0pralhDUllqMl9zcldkUVdNLUFUY3FaUjg4YmxJbDgwNGdjIn0seyJwYXRoIjoibWFuaWZlc3QuanNvbiIsInJvb3RfaGFzaCI6InQ4aGRHbDFuRlN3QXBwT2F6MFhSelBGZlZUTVBnMGJrMlBPdWtDeE5GcXMifV0sImZvcm1hdCI6InRyZWVoYXNoIiwiaGFzaF9ibG9ja19zaXplIjo0MDk2fV0sIml0ZW1faWQiOiJoZm5rcGltbGhoZ2llYWRkZ2ZlbWpob2ZtZmJsbW5pYiIsIml0ZW1fdmVyc2lvbiI6IjEwMzUzIiwicHJvdG9jb2xfdmVyc2lvbiI6MX0","signatures":[{"header":{"kid":"publisher"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"mSioSUp5tzQySU5X31ENk5frXxKnHXeQRkGCWxmSy0rQDr8pPM3trKjMH2xVbMcYgUCntLVxPMV0mgh177AKbj6GOBFPIIr5GBrnM74v1a5j59HCx_5OYkOWfARC4tnycAGlyR4IKJxBKTFkNSHEr7BtIS9DKiw-tbMCPxYzCstrUVYnLuLGhVxOQyH7sSLGbiBX0jDEUr6W0JYV0m-REZdzbv5j4d7sqWRQVifO_CNWp_g5PZ70cLtUw6iC9113lZSaJ0S1GjxPs2Md1mEXdZ_3VFMs8dCMwMqukf9q-u832vaTsFdoBoXY7sJ4cZa7NYsZGT0pGO6j2m4wz3g31w"},{"header":{"kid":"webstore"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"DedSTO_-wfgsYdIpCi2Q1b6JT338hoACID-BccWAbDZ7B-RdUQ3-KVa6h_g9z_Avzj-QKDDheA7wlQi7e7K8PebgwMxUkQqwNCFvL6jjcrNKuG4MamvrCeLzUmciZYZ06DKzewnYocoalVIfN-lMMvyq2iQXmUMqauspx2vuNhSW-eM6bOS88NATtnBMRsDpX7TbMJI5zj5DodmIPgO8M_i6xzRE_TqF7zPruuuYjJ-NiNkp9Qi0erWVt760njG6eHGbqIruxjjAm_cK9RG9daA704_Bov7c8bXWTuPe6l5RCfPCDwVvOc8GDwAMoB6-603BhjNfeEoNluiZPSDxoQ"}]}}] \ No newline at end of file diff --git a/notebooklm_chrome_profile/CertificateRevocation/10353/crl-set b/notebooklm_chrome_profile/CertificateRevocation/10353/crl-set new file mode 100644 index 000000000..719ac90ae Binary files /dev/null and b/notebooklm_chrome_profile/CertificateRevocation/10353/crl-set differ diff --git a/notebooklm_chrome_profile/CertificateRevocation/10353/manifest.json b/notebooklm_chrome_profile/CertificateRevocation/10353/manifest.json new file mode 100644 index 000000000..74e451fd5 --- /dev/null +++ b/notebooklm_chrome_profile/CertificateRevocation/10353/manifest.json @@ -0,0 +1,5 @@ +{ + "manifest_version": 2, + "name": "crl-set-5975231039864569162.data", + "version": "10353" +} \ No newline at end of file diff --git a/notebooklm_chrome_profile/CertificateRevocation/10354/LICENSE b/notebooklm_chrome_profile/CertificateRevocation/10354/LICENSE new file mode 100644 index 000000000..33072b59f --- /dev/null +++ b/notebooklm_chrome_profile/CertificateRevocation/10354/LICENSE @@ -0,0 +1,27 @@ +// Copyright 2015 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/notebooklm_chrome_profile/CertificateRevocation/10354/_metadata/verified_contents.json b/notebooklm_chrome_profile/CertificateRevocation/10354/_metadata/verified_contents.json new file mode 100644 index 000000000..ec14e7f30 --- /dev/null +++ b/notebooklm_chrome_profile/CertificateRevocation/10354/_metadata/verified_contents.json @@ -0,0 +1 @@ +[{"description":"treehash per file","signed_content":{"payload":"eyJjb250ZW50X2hhc2hlcyI6W3siYmxvY2tfc2l6ZSI6NDA5NiwiZGlnZXN0Ijoic2hhMjU2IiwiZmlsZXMiOlt7InBhdGgiOiJMSUNFTlNFIiwicm9vdF9oYXNoIjoiUGIwc2tBVUxaUzFqWldTQnctV0hIRkltRlhVcExiZDlUcVkwR2ZHSHBWcyJ9LHsicGF0aCI6ImNybC1zZXQiLCJyb290X2hhc2giOiI3LW52aThTcGRaSGdjYjlzYjZPazU5MEdrTUlaeko0NGFsMUM5OHFiZF9jIn0seyJwYXRoIjoibWFuaWZlc3QuanNvbiIsInJvb3RfaGFzaCI6IlNZOVkyaElnYTU4UzRJYk1OMnBXU25GbXIyS0d1TlBSMS1yak0wZE41TGMifV0sImZvcm1hdCI6InRyZWVoYXNoIiwiaGFzaF9ibG9ja19zaXplIjo0MDk2fV0sIml0ZW1faWQiOiJoZm5rcGltbGhoZ2llYWRkZ2ZlbWpob2ZtZmJsbW5pYiIsIml0ZW1fdmVyc2lvbiI6IjEwMzU0IiwicHJvdG9jb2xfdmVyc2lvbiI6MX0","signatures":[{"header":{"kid":"publisher"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"RmdTyw3aBuuR6yUid-gePAN2v5waeqb2nIgQRp5_KxoFx3zD-3-eTD7gs97SIe8qJErNylzI-CJqfWF2_ZeqVCCVeyNOcjbS034qyscw_aC9Lt-yVCZraWIN6SQRix-GmiaRb-vyzkD_kS3G_94ugW2y3goKdskDcJB_5Gton9BeraEjaMDC0Na2XtLVYWxhg1EwVuFdKW5oM-j4HmDuPVRP5I6R541QbVui4CpJv_NulbfCRm71raw22ijUAgpuOBbqGyHga517GBlbBRtLLoWuBT3FhF9RBgoWqnAxREGuWydo9lWlhepcwz-GkOLFR0tCVYY1THrmiSEV5eOdRA"},{"header":{"kid":"webstore"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"BfBrERP11B4ume4lUWr162MgA7OuMhSWMbb_QYybMkvWCHUKlvzuHUpclMh3p8oxHAoR0SqnyyHsXLYns9v2eIwfuVe1cvJKxaRVVp4Yk9nURokgiaz4JtAly9dSKJaUAo1IOkSWnshf0qeBPBUIFhiC5jfA0H6dlX9eYWWWbZHsVKv31dXBO1IZetpk4BGMFKiLuozIhla2KSiJQmTVuoD0dqFNCjHi6D70GZuVG2_fCbwbD8J4xgw4sHBU-eZBNmA1p8G33VFSadtg1G7LaDa_NFJW88dhTN5kqs2M9g4ApneHK_GB7O4DOWPYjZiGt0apYN7sNBmyq3OSea7bWA"}]}}] \ No newline at end of file diff --git a/notebooklm_chrome_profile/CertificateRevocation/10354/crl-set b/notebooklm_chrome_profile/CertificateRevocation/10354/crl-set new file mode 100644 index 000000000..80dafb0c9 Binary files /dev/null and b/notebooklm_chrome_profile/CertificateRevocation/10354/crl-set differ diff --git a/notebooklm_chrome_profile/CertificateRevocation/10354/manifest.json b/notebooklm_chrome_profile/CertificateRevocation/10354/manifest.json new file mode 100644 index 000000000..031e2aef1 --- /dev/null +++ b/notebooklm_chrome_profile/CertificateRevocation/10354/manifest.json @@ -0,0 +1,5 @@ +{ + "manifest_version": 2, + "name": "crl-set-5480680609495912541.data", + "version": "10354" +} \ No newline at end of file diff --git a/notebooklm_chrome_profile/CertificateRevocation/10355/LICENSE b/notebooklm_chrome_profile/CertificateRevocation/10355/LICENSE new file mode 100644 index 000000000..33072b59f --- /dev/null +++ b/notebooklm_chrome_profile/CertificateRevocation/10355/LICENSE @@ -0,0 +1,27 @@ +// Copyright 2015 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/notebooklm_chrome_profile/CertificateRevocation/10355/_metadata/verified_contents.json b/notebooklm_chrome_profile/CertificateRevocation/10355/_metadata/verified_contents.json new file mode 100644 index 000000000..5a9346bb1 --- /dev/null +++ b/notebooklm_chrome_profile/CertificateRevocation/10355/_metadata/verified_contents.json @@ -0,0 +1 @@ +[{"description":"treehash per file","signed_content":{"payload":"eyJjb250ZW50X2hhc2hlcyI6W3siYmxvY2tfc2l6ZSI6NDA5NiwiZGlnZXN0Ijoic2hhMjU2IiwiZmlsZXMiOlt7InBhdGgiOiJMSUNFTlNFIiwicm9vdF9oYXNoIjoiUGIwc2tBVUxaUzFqWldTQnctV0hIRkltRlhVcExiZDlUcVkwR2ZHSHBWcyJ9LHsicGF0aCI6ImNybC1zZXQiLCJyb290X2hhc2giOiJIeFA2NTZ2MTJFbjgtRDFGRHhWdmwxRkdFRTdCdVlBa2ZtTFNuNGRmUTZjIn0seyJwYXRoIjoibWFuaWZlc3QuanNvbiIsInJvb3RfaGFzaCI6IkU0elYwazhpenZLUEN1YXI5OWNKSlhjZ1pvaGllY09JaE1jRi1tYkFMWG8ifV0sImZvcm1hdCI6InRyZWVoYXNoIiwiaGFzaF9ibG9ja19zaXplIjo0MDk2fV0sIml0ZW1faWQiOiJoZm5rcGltbGhoZ2llYWRkZ2ZlbWpob2ZtZmJsbW5pYiIsIml0ZW1fdmVyc2lvbiI6IjEwMzU1IiwicHJvdG9jb2xfdmVyc2lvbiI6MX0","signatures":[{"header":{"kid":"publisher"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"bDTXGKjIoyFu5Z0ugf14XFXeF-YtvmqtkSU2fb4BOSkpUToajLT2naNH5JSGGBYlIsHC3p8qivjWmuT4Evr2Mk4_rB3tJtkIFKcgeBSh_qeqCiuqwFXGI_5kzcJKELKaHjzcivIHk9hCp4-xGCIg5T3YBLvIh33Ktl_QFXZPnlT26jfIe9e3Bw04oxGLcXW3Y0uZgVyF0FocgSO_AWI4KHeBqNVJNhWpCJCgtmGOZ6pB1te4MDUkKAh97VFVkKlBCn81E32_UrG7sJIWayBmePP-aLNVsA_F7Ao2y7ff5wzbFW-j8x4fP3iHmEZeX0P97h1LVuJepGL36ZhutyKbyA"},{"header":{"kid":"webstore"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"RWdkWd6jksTGEXvkhs5l-3tYonAHrOvGPTLyWxwn-1vk4jMsGb__8GayL2zYkmJTSmelwGkaRrZb4vRUyz-6jAyWq1yxsFR09dgX3GKkCY8vn_aNGSdCLvgA98F48L_VF2levLncpbcbkGcqIRA6H5m7LEjTZmUT_HaDucBscBnkpueOILWp9ef7LhspAjvzks6-l-HlYyKIgQbLzLA7vlQNLZuXKIEdR2xGjPj2Tdj8l4k2TzRbqC9WU9HBWS1YoFgsmfravG-nBb9-KE_HXmJiDt0EuCR_TPujfg04TapImPK3OP-pWl8qe5oW9kfAEtyXky-zZk2NOYlHLiYUZQ"}]}}] \ No newline at end of file diff --git a/notebooklm_chrome_profile/CertificateRevocation/10355/crl-set b/notebooklm_chrome_profile/CertificateRevocation/10355/crl-set new file mode 100644 index 000000000..3a21b1f22 Binary files /dev/null and b/notebooklm_chrome_profile/CertificateRevocation/10355/crl-set differ diff --git a/notebooklm_chrome_profile/CertificateRevocation/10355/manifest.json b/notebooklm_chrome_profile/CertificateRevocation/10355/manifest.json new file mode 100644 index 000000000..cfb6ee6fd --- /dev/null +++ b/notebooklm_chrome_profile/CertificateRevocation/10355/manifest.json @@ -0,0 +1,5 @@ +{ + "manifest_version": 2, + "name": "crl-set-8220003283612578859.data", + "version": "10355" +} \ No newline at end of file diff --git a/notebooklm_chrome_profile/Crowd Deny/2026.2.16.121/Preload Data b/notebooklm_chrome_profile/Crowd Deny/2026.2.16.121/Preload Data new file mode 100644 index 000000000..56cb03e26 --- /dev/null +++ b/notebooklm_chrome_profile/Crowd Deny/2026.2.16.121/Preload Data @@ -0,0 +1,3961 @@ + + +24.hu + + +777.ua + +allo.ua + + altema.jp + +americansongwriter.com + + animeanime.jp + +animesdigital.org + + +anizle.org + + anroll.tv + + answear.com + +athlonsports.com + + aylink.co + + behmelody.in + +betking.com.ua + +bigpara.hurriyet.com.tr + +biznes.interia.pl + + blavity.com + + +br.ign.com + +bringmethenews.com + +businessinsider.com.pl + + buzzday.info +* +&cheerful-vista-dreamscape-basecamp.xyz + +clck.idealmedia.io + + comicbook.com + +dailygalaxy.com + + decider.com + +desenefaine.com + + dorzeczy.pl + +eobuwie.com.pl + +eu.pefokuer.click + +eurosport.tvn24.pl + + +ew.com + + f1.keporn.vip + +fandomwire.com + + fastpic.org + +filmora.wondershare.de + + +fishki.net + + flemmix.info + + flemmix.irish + + gameswaka.com + + gamewave.fr + +geekweek.interia.pl + +gg.indoneviler.xyz + + goniec.pl + +goracetematy.pl + +haber.mynet.com + + hdzog.com + + +hdzog.tube + + +hobby.porn + + +hotline.ua + + hotmovs.tube + + igg-games.com + +indiandefencereview.com + + +inporn.com + +instantbuzz.net + +instantnewsupdate.net + +interestingengineering.com + +kadry.infor.pl + +kobieta.interia.pl + +kobieta.onet.pl + + kompoz2.com + +laptopsvilla.com + +lb4.lookmovie2.to + +life.ru + +lifehacker.com + + lifehacker.ru + + +ll-lab.com + + loudwire.com + +lubimyczytac.pl + +madame.lefigaro.fr +! +maharashtraboardsolutions.com + + manysex.tube + + mashable.com + + meduza.io + +megapolitan.kompas.com + + metro.co.uk + + militaria.pl + +minimalistbaker.com + +motoryzacja.interia.pl + +muzyka.interia.pl + +myshoppingblog.com + + +net.hr + +newrepublic.com + +news.ohmymag.com + +news.swiatgwiazd.pl + +nlab.itmedia.co.jp + + +nypost.com + +odelices.ouest-france.fr + + +offnews.bg + + okdiario.com + +okmagazine.com + + pagesix.com + + +parade.com + + pemplay.com + + +people.com + + +plejada.pl + +podocarpgag.autos + +pogoda.interia.pl + +port.hu + +powergam.online +" +preload-spammy.permission.site + +privatehomeclips.com + +przegladsportowy.onet.pl + +radaronline.com + + +ramber.com + +regional.kompas.com + +religionnews.com + +rg.ru + + +ria.ru + +ricette.giallozafferano.it + +rivestream.org + +russian.rt.com + +shawarmaday.com + +smart-flash.jp + +sorularlaislamiyet.com + +spammy.permission.site + + spidersweb.pl + +sport.interia.pl + +starsaremade.com + +suburbanfinance.com + +sundayguardianlive.com + +swimsuit.si.com + +sxp.huyamba.mobi + + thehill.com + + theprint.in + + thespun.com + +toutelatele.ouest-france.fr + +trending.thespun.com + +txxx.com + +txxx.me + +ultimateclassicrock.com + + +unherd.com + + upornia.tube + +us.safecomputercheck.com + +vip.pornobolt.in + + voyeurhit.com + +vz.ru + + +wanchan.jp + +wearmedicine.com + +wiadomosci.onet.pl + + wowroms.com + +ww.solarmovie2.com + +ww1.lookmovie.pn + +ww16.myasiantv.es + +ww24.0123movie.net + +ww25.0123movie.net + +ww25.soap2day.day + +www.20minutes.fr + + www.24sata.hr + +www.3djuegos.com + +www.actualno.com + +www.adnkronos.com + +www.agroinform.hu + +www.analdin.com + +www.androidcentral.com + +www.anitube.news + + www.apart.pl + +www.apartmenttherapy.com + +www.askchefdennis.com + +www.aufeminin.com + +www.auto-swiat.pl + +www.autoblog.com + +www.autoplus.fr + +www.autozeitung.de + + www.b92.net + +www.beliani.pl + +www.biznesinfo.pl + +www.bkmkitap.com + +www.bobvila.com + +www.bollywoodshaadis.com + +www.boredpanda.com + +www.breakflip.com + +www.brigitte.de + +www.brocardi.it + + +www.brw.pl + + www.bryk.pl + +www.buzfilmizle3.com + +www.capitolivm.it + +www.casualself.com + +www.championat.com + +www.christianpost.com + + www.chron.com + +www.cinemablend.com + +www.closermag.fr + + www.cnet.com + +www.coolinarco.com + +www.cosmopolitan.com + +www.creativebloq.com + +www.cucchiaio.it + +www.dailykos.com + +www.dailymail.co.uk + +www.destructoid.com + +www.diariodesevilla.es + +www.dicocitations.com + +www.digitalcameraworld.com + +www.dlink7.com + + www.earth.com + +www.eghtesadonline.com + + www.elle.com + +www.ensonhaber.com + +www.espinof.com + +www.esquire.com + +www.euro.com.pl + +www.evvelcevap.com + + www.fakt.pl + +www.fantacalcio.it + +www.filmweb.pl + +www.finanznachrichten.de + +www.firstpost.com + + www.focus.it + +www.fontanka.ru + +www.fotomac.com.tr + +www.gaiaflix.xyz + +www.gamesradar.com + + www.gazeta.pl + +www.gobankingrates.com + +www.guitarworld.com + + www.gzt.com + +www.happyinshape.com + +www.hazipatika.com + +www.heavy-r.com + +www.hellomagazine.com + +www.hentai.name + + www.hisse.net + +www.huffingtonpost.es + +www.huffingtonpost.fr + +www.iflscience.com + + www.ign.com + +www.ilgiornale.it + +www.ilyricshub.com + +www.independent.co.uk + + www.infor.pl + +www.instyle.com + +www.interia.pl + +www.jeuxvideo.com + +www.journaldugeek.com + +www.justjared.com + +www.khabarfoori.com + +www.komputerswiat.pl + + www.kurir.rs + +www.lalanguefrancaise.com + +www.laprovence.com + +www.larazon.es + +www.latribune.fr + + www.lecker.de + +www.leparisien.fr + +www.lexpress.fr + +www.liberation.fr + +www.libertaddigital.com + +www.livescience.com + +www.lookmovie2.to + +www.loudersound.com + +www.marieclaire.com + +www.mariefrance.fr + +www.maximonline.ru + +www.meczyki.pl + +www.mediaexpert.pl + +www.mediaite.com + +www.medonet.pl + + www.melty.fr + +www.memurlar.net + +www.mensjournal.com + +www.mentalfloss.com + +www.mercurynews.com + +www.morele.net + + www.moyo.ua + +www.mprnews.org + +www.mumsnet.com + +www.musicradar.com + +www.my-personaltrainer.it + + www.mynet.com + + www.ndtv.com + +www.newindianexpress.com + +www.newsweek.pl + + www.nme.com + +www.novelodge.com + +www.ntv.com.tr + +www.ntvspor.net + +www.ofeminin.pl + + www.onet.pl + +www.outkick.com + +www.pccomponentes.it + +www.pcgamer.com + + www.pcmag.com + +www.pcworld.com + +www.phonearena.com + +www.pobreflix.forex + +www.polsatnews.pl + +www.polsatsport.pl + +www.polybuzz.ai + +www.popsci.com + +www.porndig.com + +www.pornohirsch.net + + +www.ppe.pl + +www.prevention.com + +www.primetimer.com + + www.public.fr + +www.purepeople.com + +www.quattroruote.it + + +www.rd.com + +www.realsimple.com + +www.recordchina.co.jp + + www.rmf24.pl + +www.robotistan.com + + www.rp.pl + +www.sabah.com.tr + +www.schulferien.org + +www.seriouseats.com + +www.sfgate.com + +www.skapiec.pl + +www.skuola.net + +www.sozcu.com.tr + +www.spartoo.it + +www.sport-express.ru + + www.sport.pl + + www.sport1.de + + www.sports.fr + +www.sportskeeda.com + +www.starhit.ru + +www.statesman.com + +www.studenti.it + +www.sueddeutsche.de + +www.supplementler.com + +www.tagesspiegel.de + +www.tarafdari.com + +www.techbloat.com + +www.techradar.com + +www.telegraphindia.com + +www.the-independent.com + +www.the-sun.com + +www.thecelebpost.com + +www.thedailybeast.com + +www.thenews.com.pk + +www.thespruce.com + +www.thespruceeats.com + +www.thestreet.com + +www.thesun.co.uk + + www.thesun.ie + +www.timesnownews.com + + www.tmz.com + +www.tnaflix.com + +www.tomsguide.com + +www.tomshardware.com + +www.townandcountrymag.com + +www.tportal.hr + +www.transfermarkt.com.tr + +www.turkiyegazetesi.com.tr + +www.tvmovie.de + + www.twz.com + +www.usatoday.com + +www.vecernji.hr + + www.vesti.ru + + www.vezess.hu + + www.vice.com + +www.wallstreet-online.de + +www.washingtontimes.com + +www.wcostream.tv + +www.whathifi.com + +www.windowscentral.com + +www.wionews.com + + www.woman.ru + +www.xozilla.com + +www.yenisafak.com + +www.zakzak.co.jp + +www.zipfilmizle.com + + www.zoomg.ir + + wyborcza.pl + +wydarzenia.interia.pl + + xcadr.online + +xn--90aivcdt6dxbc.xn--p1ai + +xx.rusvideos.art + +yorozoonews.jp + +young-machine.com + + yts-subs.com + + +zrzutka.pl + +025-52225999.name + +0lin.com + + 10xlive.com + +12monthloanstoday.com + + 134138.bond + +141991324.bond + +1pokerroomcasino.com + +247trafficpro.com + +3dwhistler.com + + 4g365.com + +5280relocation.com + +60thcelebrations.com + + +686683.com + + 701236.bond + + 721229.bond + +7memoriesfashion.com + + +827277.com + + 895yy.com + +8zajfyrcc0xd.today + + abccprmi.com + + abiceyo.sbs + + ablewomp.com + + +abmilf.com + +absolute-secrecy.com + + abxxx.com + +acatalyst4change.com + + +aceluk.sbs + + acizapil.sbs + +addurl-addsite.com + +adetautmed.com + + +ads4pc.com + +adsforcomputercity.com + +adsforcomputertech.com + +adsforcomputerweb.com + +adslivetraining.com + + adstopc.com + + adultmeet.fun + +adultporngaming.com + + advtgroup.com + + advtpro.com + +aerodyne-int.com + +afterhours-fun.com + +aftermathbarbershop.com + + agadumoj.sbs + + ahimoma.sbs + +aialigneddates.com + + +aicyly.com + +aigaithojo.com + +alagypersed.com + + alecezag.sbs + + alesseus.com + +algolove.monster + +allterpeneextracts.com + +alternative-gals.com + +amateurkinkycouple.com + +amazing-discoveries.com + +amigaslindas.com + + amorx.org + +andbestest.bond + +anetchitic.com + + anexe.sbs + +angelsfate.com + +anonopinion.com + + aroundin.sbs + + arruggio.bond + + artbella.org + + artbytoby.com + +arteamanopanama.com + + +artos.name + + +arumuf.sbs + + asebihewo.sbs + + asexgay.lat + +asexybabes.com + +asigntoalign.com + +assetforfeiture.org + +assistance-guides.com + +atkgalleryhairy.com + +audiofirst.xyz + +auroraflowersandgifts.com + + autolog.autos + +autorespons.bond + +averagesapper.com + + avukulak.sbs + +awaken2wonder.com + + ayokudu.sbs + +azdjevents.com + + azinabsor.com + + b-d30.org + +backroomdigital.com + +backuptwitter.com + + baimpubs.com + +baldopalagro.com + +bangcraver.com + + basevenol.sbs + + baveyos.sbs + +beautywomen.xyz + + bepup.sbs + +bestdayeversweeps.com + +bestlessons.bond + +bestlessonslabs.bond + +bestrongernews.com + + bfxzh.com + +bicnezomcalized.com + +bigbeaksbirdtoys.com + +bigideasphl.com + + bikedata.org + +bima101sok.com + +biomedicinskanalytiker.org + + +biqund.com + +blackporn.tube + +blissfuldaily.com + +blistevarad.com + + boilers.bond + + bojof.sbs + +boldjourneyromance.com + +boldmediahq.bond + + bond-dash.com + +bond-place.com + + bond-time.com + +bondiqpartner.com + +bountysexlady.click + + boustahe.com + +brasspolishing.net + +brat-chatting.com + +bread-cheese-kefir.art + +breatnesses.sbs + +britageens.com + + +brivox.lol + + bsqparty.com + + +btxpgs.com + +bucremonan.com + +budselectricmotor.com + +burayagidin.com + +burroughsheatandair.com + + byomo.com + +bytebond.click + + caf21.org + + callcall.bond + +callcallapp.bond + +callcentres.bond + + callmeapp.sbs + + cancouss.com + +captchaless.top + + cartoil.com + +casual-matches.com + +casuallylinked.com + +cbdoilboard.com + + +cdsyjt.com +( +"cell-symposia-aging-metabolism.com + +centralcoastpianos.com + + centranow.com + +chageantle.com + +chapethill.com + +chat-corner.com + +chatlinedating.lat + +cheapuggsusonline.com + +chemcopter.com + + chjtljd.com + + chob88888.com + +chousyokufes.com + +churchvendors.com + +circuitcupid.click + +cirquedunoc.com + +classiccarpetcleaners.com + +classroomchampion.com + +clean-bond.com + +clean-chatties.com + +clean-encounters.com + +clexperigratine.com + +click-circle.com + +click-space.com + +click-vibes.com + +click2win4life.com + +coc-servers.com + +codynglostic.com + +coffeeandchat.xyz + +cogingiactocal.com + +cognityfoundation.org + +combomeets.org + +commitmentcupid.com + +companieshq.bond + +compressorsco2.com + +connect-vibes.com + +connectflow.click + +consultingandinvesting.com + +contactosrapidos.com + + conther.sbs + + copetring.com + + corganing.com + +corporationshq.bond + +corporationslabs.bond + +counterate.bond + +cowboytheory.com + + coxezar.sbs + + cozybond.xyz + +cripobuild.com + + crithetes.com + +crownouveau.com + +crush-circle.com + +crush-corner.com + +crush-dash.com + +crush-lane.com + +crush-link.com + +crush-place.com + +crush-portal.com + +crush-space.com + + crushheat.fun + +crypticoins.com + + +cugoja.sbs + + cummer.bond + + cuniliq.sbs + + cupid.lat + + cupidabo.com + +cupidcompass.click + + cusnenon.com + +cyctisolvewed.com + + +czhuik.com + +dach-liga-homocystein.org + +dailyrumour.co.za + + dashuncw.com + +date-circle.com + +date-corner.com + + date-flow.com + +date-inyourarea.com + + date-lane.com + +date-patrol.com + +date-place.com + + dateable.lat + + datearo.com + +datecircle.xyz + +dateinlove.xyz + + daterapp.bond + + daterly.bond + +datesphere.monster + + datiklaw.com + +dating-sweeties.com + +datingdateable.lat + +datingihun5.xyz + +datingrush.fun + +datlngplace.com + + +ddrdns.com +! +dedicatedhostingreviews.com + +deginbuteness.com + +dehormendistion.com + +demomaxly.bond + +demomediumapp.bond + + desain.click + +desbordespain.com + +dessacheysa.com + + +devmt5.com + + dibareco.com + +digitalmediaera.com + + digitason.com + +diodechnes.com + +dionizederizaty.com + +dipingqijiage.com + +discountcablesusa.com + +diysolartucson.com + +domaindhaba.com +# +domainedefondsaintjacques.com + +dowtaloisis.com + +dr-anika-ezhqbjx.work + +dr-bailee-zglaacg.work + +dr-catharine-ypfcluc.work + +dr-chaya-esyhwan.work + +dr-dovie-wqdraci.work + +dr-effie-xrajblw.work + +dr-elda-vdyrmxt.work + +dr-elnora-whxmldi.work + +dr-estrella-fowxvzr.work + +dr-evalyn-vakjlfr.work + +dr-flossie-wltpjmo.work + +dr-freida-pkzimnj.work + +dr-jazmyn-gixlhma.work + +dr-lauryn-daaetxy.work + +dr-loren-poamavu.work + +dr-mabelle-bydssxi.work + +dr-maddison-hqxihof.work + +dr-maida-fqvyyfk.work + +dr-maymie-jtshllu.work + +dr-myrtie-yeoimmi.work + +dr-neva-oareott.work + +dr-ollie-jwmouro.work + +dr-patricia-oijduqn.work + +dr-providenci-hqfumdk.work + +dr-thelma-ubngsjl.work + +dr-xiu-mei-ffnybmj.work + +draguedirecte.com + +dreamaffection.com + + dreambos.bond + +dreamweaveconnect.click + +dsvmvcj5j8wz.today + + +dxs168.com + +easybreezymatch.com + + ecobond.bond + +ecodealapp.sbs + + ecodealhq.sbs + +ecodeallabs.sbs +* +$ecommercesoftwaresolutionsonline.com + +effeminie.bond + + egogijag.sbs + + eguwi.sbs + +ehlkelawoffices.com + + ekuhuguy.sbs + + elahiyuf.sbs + +electionhelper.com + +electricbikesco.com + +elegant-question.com + + elinizefo.sbs + +elitedatingpulse.com + +elitematchmates.com + +elitematesolutions.com + +elkhaouarizmi.com + + elorhood.lat + + eloritiho.sbs + +elrenosacredheart.com + +email-cible.com + + emolinuba.sbs + +enduringlovespot.com + +enduringromancehub.com + +enduringunionseekers.com + +enseignement-prive.com + + +erelda.xyz + + erolium.com + +ess-alarms.com + +essenselab.com + +eternalclick.xyz + +etherealmatch.xyz + +eurekamatchmaking.com + +everbloom.click + + evijumin.sbs + +exceptionaldates.net + +exitthewho.com + + exobscals.com + +expertjobmatch.com + +explorenewhearts.com + +expression-freedom.com + + exthe.lat + + eyibugoto.sbs + + eyoro.sbs + +eysieclaect.com + + ezoqomu.sbs + +fairytellers.sbs + + fancyapp.bond + + fancyhq.bond + + fancyhub.bond + +fancylovehq.bond + +fancylovelabs.bond + +fancylovely.bond + + fancyly.bond + +fanhaodang.com + +fashionnailswi.com + + fasionist.lat + + fastflirt.fun + + fayechai.com + + feedtofap.com + + +feman.bond + +fetishlivecamsforce.com + +fewer-jumps.com + +fgautobroker.com + + figawatu.sbs + +filmizlepop.com + + find-flow.com + + find-line.com + +find-singles-online.com + +finder-guru.com + +findrealconnections.com + +findresourcesusa.com + +findshortsmall.com + +fitnesalasinia.com + +flameofromance.com + + flaredate.xyz + +flingaroundme.com + +flirt-avenue.com + +flirt-circle.com + +flirt-club.com + +flirt-hive.xyz + +flirt-line.com + +flirtandlucky.com + +flirtatiouslane.com + +flirtdreamworld.com + +flirtfiesta.com + +flirtflow.click + +flirtpointy.com + +flirtspace.monster + +flirtstorm.fun + +flirtychat.online + +flirtypussies.com + +flyshoescentre.com + +foreverloveconnect.com + +forexsignals22.org + +free-the-midi.com + +freeinsurestimates.com + +freespiritmate.com + +friendlysocialspace.com + + frillier.bond + +fromtelehub.bond + +frontline-selling.com + +fuckthisgirls.xyz + + fulatilly.com + +funflingshub.com + +funnyshow.bond + + fuxxx.com + + +fynweb.com + +g-whiteroom.com + +gadgetreviewblog.com + +gallymatomine.com + + galoquin.com + + geguruyuv.sbs + +gercei-vadasz-vizslas.com + + german0.xyz + +getcorporations.bond + +getcreditscoreww.com + +getecodeal.sbs + +getfabulous.bond + + getflash.bond + +getgoextreme.bond + +getgsmmaps.cfd + +getgsmvoice.bond + + gethorny.bond + +getinterconnection.bond + +getkisstoday.bond + +getlovely.bond + +getlovemethods.bond + +getmanykisses.bond + +getmaxmedia.bond + +getmediafruit.cfd + +getmediaguru.bond + +getmediatops.bond + +getmegacall.sbs + +getmilfs.online + +getmobilenetworks.bond + +getpleasure.bond + + getspace.bond + +gettechmedia.bond + +getteleriddle.bond + +gettelework.bond + + gettranny.com + + getwow.bond + +getyournights.bond + + gfort.xyz + + gides.sbs + + girlie.bond + + girlish.bond + +girlstoyour.click + +girlynessy.bond + +girlzsearch.com + + giyab.sbs + +glimpse-vibe.com + +globalconnectionly.sbs + +globalists.icu + +goextremeapp.bond + +goextremehub.bond + +goextremelabs.bond + +goldengoddessbath-body.com + + gomusic.info + +gontertatic.com + +goodgal-mansion.com + +goodtimesapp.bond + +goodtimeshq.bond + + gracenthe.com + +greenbeanmanufacturing.com + +gruposerhumano.com + + gsmglob.bond + + gsmmapsly.cfd + + gsmtele.bond + +gsmtelelabs.bond + +gsmtowersapp.bond + +gsmtowershub.bond + +gsmtowersly.bond + +gsmvoicehq.bond + +gsmvoicely.bond + + gsmwifi.bond + +gsmwifiapp.bond + +gsmwifilabs.bond + +gsmwifily.bond + +gsmworldslabs.bond + + gukij.sbs + + gumeyadak.sbs + + guniwebi.sbs + + guseusly.com + +hairbyricardo.com + +hamburgermarys-orlando.com + +happy-bonding.com + +happydayscertification.com +& + happynewyear2016quoteswishes.com + + haqamutaf.sbs + + haqar.sbs + +harmonydate.xyz + + +hclips.com + +healthmarkclinic.com + +heartflare.pro + +heartstrings.cam + +hecaltahantly.com + + herducal.com + + herecandy.com + +hericaoters.com + +heterbation.lat + + hexaprim.lol + +hipetimmelindic.com + + +hnjssw.com + +hocermendierap.com + + hojagawek.sbs + +homosexwith.lat + +honeymooneymoon.lat + + hookupers.com + + hornyhub.bond + + hostezr.com + +hotconnectionzone.com + + hotcrush.fun + +hotencounter.fun + + hotfusion.fun + + hotlove.bond + +hotloveapp.bond + + hotmovs.com + +hottouchaffair.com + +hotwomegle.bond + + hpjy789.com + + hunkies.bond + + huntagift.com + + hurshilly.com + +hypermousus.com + +hysieduccer.com + + +iampua.com + +ibusukikankohotel.com + + +idolin.sbs + + ignispc.com + + ignitezsg.com + +ihaveaconfessiontomake.com + + +ihugit.sbs + +ii41.com + + +ijoxiq.sbs + + ikimeciz.sbs + + +ilagum.sbs + + ilawe.sbs + +imilroshoors.com + +impactboxing.org + +impromote.bond + +indiebyline.com + +inflationrelief.net + +informationvine.com + + ingenthid.com + + inimema.sbs + +instant-bond.com + +instant-chatting.com + +intelligentpairup.com + +intellimatchmakers.com + +interconnectionhq.bond + +interconnectionly.bond + +intimateunionlink.com + + +ipewux.sbs + + iqitevey.sbs + + iquviguva.sbs + + ireoutch.com + +irishaboard.com + +islamiskaskolan.com + +it-geniuses.com + +iuk-ism-kg.com + +iuradionetwork.com + +jacobsonbrosdeli.com + +jamekabire.com + +jamesbradshawgoldsmith.com + +javidolmovies.com + +jazzy-matches.com + +jbautomotive722.com + +jdatingles.lat + +jeannefashnbeauty.com + +jiggly-hearts.com + +jobcenter.bond + +jobdiagnosis.com + + jobinfm.com + + jobmatcher.io + +johypubvitalar.com + + +jopoge.sbs + +joyful-linkup.com + +joyful-ride.com + + jptecnet.com + + jubsaugn.com + + judynjeri.com + +kaleidoscopenight.com + +kapicoodharal.com + +katehaywood.com + + khaculoxy.com + +kiirajuniorprep.com + +kindledhearts.xyz + +kintantiessed.com + +kiss-circle.com + + kiss-hub.com + + kiss-link.com + + kiss-spot.com + +kiss-vibes.com + + kixun.sbs + +kobroysimmist.com + +kojodertattoo.com + +komunakallmet.com + +la-lanterne.com + + laceract.com + + lacutria.com + +ladybrionna-iwvgccl.work + +ladycheyanne-zjyrsge.work + +ladyelse-mcckfhl.work + +ladyettie-gdvleyv.work + +ladyharmony-jtsjpln.work + +ladyhookup.com + +ladyjany-uioalhf.work + +ladykaelyn-sawkdrs.work + +ladylavina-bsgnmge.work + +ladylisette-jfttiff.work + +ladymargret-svodptk.work + +ladymary-tasyziu.work + +ladymaud-kltnnsd.work + +ladynorma-ruspfvh.work + +ladyrebeka-anvcybt.work + +ladyreina-bmpapxy.work + +ladyrosetta-dvkrarw.work + +ladysylvia-xmuvcbq.work + +ladytressa-mtfhygc.work + + +laloci.sbs + +landingjazz.com + +laparosis.bond + +lastingbondseeker.com + +latina-match.com + + latisgal.com + +lbl-holding.com + + lbxcy.com + + lchpw.com + +leadingteamapp.bond + +leadingteamly.bond + + lehagenom.sbs + + leilig.bond + +leipprandi.bond + + lennaral.com + + leonprous.com + + letstryus.xyz + + lex-press.com + +licktaughigme.com + +lightheartedlovelink.com + + +limano.xyz + +link-corner.com + +livewithjoy.click + +llenamadchenn.com + +logaldaerved.com + + lohik.com + +londonsbars.com + +looking4boobs.com + +looking4girl.com + + looncup.com + + lorilly.xyz + +loteriadecolombia.com + +love-circle.com + +love-corner.com + +lovealigning.com + + loveaura.xyz + +lovebridgeway.com + +lovedayapp.bond + +lovedayly.bond + +lovejoining.com + +lovelinesshub.sbs + +lovelinesslabs.sbs + +lovelinkspace.com + +lovelyapp.bond + + lovelyhq.bond + +lovelyhub.bond + +lovemeapp.bond + +lovemelabs.bond + +lovemethodshub.bond + +lovemethodslabs.bond + +lovepathnetwork.com + +lovesitehq.bond + +lovesitehub.bond + + lovestir.fun + + lovestorm.fun + +lovesyncally.com + + loviroa.com + +lucky-findings.com + + luckyapp.sbs + + luckylabs.sbs + + luckyly.sbs + + lumalove.xyz + + lungninja.com + +lustandwhisper.com + + lustspot.fun + + lustyzone.fun + + mahikeg.sbs + +mailhazard.com + + manine.bond + +manykisseshub.bond + +manykissesly.bond + +marketingshowhq.bond + + markting.sbs + +mascronatomal.com + +match-dash.com + +match-spot.com + +matchgeniusai.com + +matchgeniuspro.com + +matchmakers.lat + +matchmakersmark.click + +matchplanet.xyz + + matrarybe.com + + maxmedia.bond + +mckennasanderson.com + + mealsvege.lat + +media-proapp.sbs + +mediafruithq.cfd + +mediafruitlabs.cfd + +mediagurulabs.bond + +mediamodehq.bond + +mediaonlinehq.bond + +mediaonlinelabs.bond + +mediaonlinely.bond + +mediarecordhub.sbs + +mediarecordly.sbs + +mediascape.bond + +mediatopshq.bond + +mediatopshub.bond + +meditrainical.bond + + meet-dash.com + +meet-place.com + +meet-spark.com + +meet-vibes.com + + meet-zone.com + +meetaffair.com + +meetanswerme.bond + +meetcirclehub.com + +meetcircleonline.com + +meetfriendlypeople.com + +meetfriendlyy.com + +meetgsmtowers.bond + +meetgsmvoice.bond + +meetgsmworlds.bond + +meethorny.bond + +meetjoyful.com + +meetmediapro.sbs + +meetmobilehope.sbs + +meetmobilekbl.sbs + +meetmobilenetworks.bond + +meetmustdo.bond + + meetnaked.com + +meetnewconnections.com + + meetorya.com + +meetpeoplehub.com + +meetperfect.sbs + +meetpleasure.bond + +meetsinglemates.com + +meetsuccess.xyz + +meetsuper.bond + +meetsuppliers.bond + +meettechnology.xyz + +meetteleguru.bond + +meettelespec.bond + +meettelework.bond + +meettemptation.com + +meetup-gateway.com + +meety-moments.com + +megacallly.sbs + +mentorlawfirm.com + +metalduplicator.com + +meteoritients.bond + +mettleheart.xyz + +microeconomy.bond + +midshorerecyclers.net + +milflover.monster + + millins.sbs + +mingle-club.com + +mingle-jingle.com + +mingle-line.com + +mingle-portal.com + +minisgolfmotid.bond + +missalaina-phdbecs.work + +missalisha-buvjhka.work + +missalverta-axoholv.work + +missashleigh-zminwld.work + +missbianka-tkctmln.work + +missclaire-ctdabkn.work + +misscordia-tkhjomr.work + +missdemetris-bcbmhyv.work + +misselinor-vdeuvrk.work +! +missfrederique-caobjds.work + +missfrieda-pnisdaj.work + +missizabella-xhqjmyy.work + +missjosie-kbacnwy.work + +misskali-jweqaus.work + +misskathlyn-cmjniwn.work + +misslue-lvesqdu.work + +missmafalda-xfwkiqo.work + +missmaggie-rfmvaik.work + +missmaybelle-gzsievl.work + +missmelody-njpprmi.work + +missmercedes-gfmvxtj.work + +missmichele-gsxlmnl.work + +missnina-opsdpds.work + +misspetra-yknfyic.work + +missshana-yvnbfas.work + +misssummer-fflpuiq.work + +misstelly-fqhhnvg.work + +missvelda-hduypnq.work + +missvivian-sommlgd.work + +misswilla-uuhnruq.work + +mitopamosal.com + +mmtoolsindia.com + +mobilehopehq.sbs + +mocivilengineering.com + +moneyhub-aiinsight.click + +moneyhub-aiintel.sbs + +moneyhub-aimind.sbs + +moneyhub-aiwealthhubx.sbs + +moneyhub-assist.click + +moneyhub-bank.click + +moneyhub-boost.click +! +moneyhub-capitaladvisor.sbs +! +moneyhub-capitalflowx.click + +moneyhub-capitalflowx.sbs +" +moneyhub-capitalmentor.click + +moneyhub-capitalmentor.sbs + +moneyhub-capitalwealth.sbs + +moneyhub-cashbrief.click + +moneyhub-cashdesk.click + +moneyhub-cashdesk.sbs + +moneyhub-cashgrowth.click + +moneyhub-cashmap.click + +moneyhub-cashpilot.click + +moneyhub-cashpulse.click + +moneyhub-cashreview.click + +moneyhub-cashtrack.sbs + +moneyhub-cashwise.click + +moneyhub-databridge.click + +moneyhub-databridgex.click + +moneyhub-databridgex.sbs + +moneyhub-datainsight.sbs +! +moneyhub-digitaladvisor.sbs +" +moneyhub-digitalmentor.click + +moneyhub-digitalmentor.sbs + +moneyhub-digitalmind.sbs +" +moneyhub-digitalvision.click + +moneyhub-finadvisor.sbs +! +moneyhub-finbridgehub.click + +moneyhub-finbridgehub.sbs + +moneyhub-finflowhub.click + +moneyhub-finflowhub.sbs + +moneyhub-finfuture.click + +moneyhub-finfuture.sbs + +moneyhub-fininsight.click + +moneyhub-fininsightx.sbs + +moneyhub-finintel.sbs + +moneyhub-finmentor.click + +moneyhub-finmentor.sbs + +moneyhub-finmentorx.sbs + +moneyhub-finvision.click + +moneyhub-finwealth.sbs + +moneyhub-focus.click + +moneyhub-forge.click + +moneyhub-forge.sbs + +moneyhub-globaladvisor.sbs +$ +moneyhub-globalbridgehub.click +" +moneyhub-globalbridgehub.sbs + +moneyhub-globalfuturex.sbs +" +moneyhub-globalinsight.click + +moneyhub-globalintel.sbs +! +moneyhub-globalmentor.click + +moneyhub-globalmentor.sbs +! +moneyhub-globalvision.click + +moneyhub-globalwealth.sbs +! +moneyhub-growthmentor.click + +moneyhub-growthmentor.sbs + +moneyhub-intel.click + +moneyhub-investfuturex.sbs + +moneyhub-investintel.sbs +! +moneyhub-investmentor.click + +moneyhub-investmentor.sbs +! +moneyhub-investvision.click + +moneyhub-investwealth.sbs + +moneyhub-loan.click + +moneyhub-map.click + +moneyhub-mentor.click + +moneyhub-mentor.sbs + +moneyhub-moneyadvisor.sbs +! +moneyhub-moneyflowhub.click + +moneyhub-moneyflowhub.sbs + +moneyhub-path.click + +moneyhub-pilot.click + +moneyhub-pilot.sbs + +moneyhub-proadvisor.sbs + +moneyhub-promentor.click + +moneyhub-promentor.sbs + +moneyhub-quantmind.sbs + +moneyhub-riskadvisor.click + +moneyhub-riskadvisor.sbs + +moneyhub-route.click + +moneyhub-route.sbs + +moneyhub-scope.click + +moneyhub-scope.sbs + +moneyhub-smartadvisor.sbs + +moneyhub-smartbridge.click + +moneyhub-smartflow.sbs +! +moneyhub-smartinsight.click + +moneyhub-smartmentor.click + +moneyhub-smartmentor.sbs + +moneyhub-smartmind.sbs + +moneyhub-smartwealth.sbs + +moneyhub-stream.click + +moneyhub-stream.sbs + +moneyhub-techbridgex.click + +moneyhub-techbridgex.sbs + +moneyhub-vision.click + +moneyhub-vision.sbs + +moneyhub-watch.click +" +moneyhub-wealthadvisor.click +! +moneyhub-wealthbridge.click +" +moneyhub-wealthbridgehub.sbs + +moneyhub-wealthflowx.sbs + +moneyhub-wealthfuture.sbs + +moneyhub-wealthintel.sbs +! +moneyhub-wealthmentor.click + +moneyhub-wealthmentor.sbs +! +moneyhub-wealthvision.click + + monlashe.com + +montlakemadness.com + + mopimog.sbs + + moressis.bond + + mornaces.com + + motikuxis.sbs + +mountain-chalets.com + + mrcater.com + + +mrgay.tube + +mrs-alba-axrgrqm.work + +mrs-angie-nwhsyrg.work + +mrs-antonetta-oxgdpii.work + +mrs-bernadine-ggpbxnx.work + +mrs-beth-wmymktx.work + +mrs-clarissa-frbfyyr.work +! +mrs-concepcion-cpcwvah.work + +mrs-della-honxxas.work + +mrs-evalyn-txurnak.work + +mrs-gina-chbifab.work + +mrs-hattie-lxmugwb.work + +mrs-helene-utejypd.work + +mrs-icie-rhgzfri.work + +mrs-karine-tobanjo.work + +mrs-kristy-dunupve.work + +mrs-lorena-edcxxqb.work + +mrs-lurline-wacejhm.work + +mrs-maci-olqsgns.work + +mrs-retta-kezcwer.work + +mrs-rubye-qmrnvtv.work + +mrs-sabina-rkxmcpo.work + +mrs-samara-wdctdet.work + +mrs-simone-czfnxxc.work + +mrs-tabitha-rqfnbhb.work + +mrs-zelda-ydfjyrz.work + +ms-ally-xhqkqlg.work + +ms-alyce-vwnkknv.work + +ms-astrid-oayfoqy.work + +ms-elouise-juoabyi.work + +ms-emmalee-sbhujum.work + +ms-gudrun-pnrpqxl.work + +ms-ivah-sirlrbr.work + +ms-kailee-xiffhkm.work + +ms-karlie-hqavuqj.work + +ms-lillian-gkxlrcg.work + +ms-mallie-isumfxb.work + +ms-marcia-ubzwwgo.work + +ms-marlee-tbajnsu.work + +ms-meta-wbqitno.work + +ms-rae-jovuwrc.work + +ms-tess-lijvppo.work + +ms-tiana-iyyuxcf.work + +ms-trudie-njdcsyb.work + +ms-yesenia-cudater.work + +ms-zetta-kwcleck.work + + +mudire.com + +myfreecam2cam.bond + + napesod.sbs + +nathanaeldan.pro +' +!nationalfireescapeassociation.com + +nature-et-vertus.com + +naughty-buddies.com + +naughtydate.xyz + + naxulagu.sbs + +nemagreske.com + + netoidism.com + + netteles.bond + +newcumslut.bond + + newlywed.lat + +newsmediaa.bond + +newtinder.dating + +newtoki115.com + +newyorksbars.com + +nextlevelus.xyz + + +nifari.lol + +nightlane-vibes.com + +nightneighbors.org + +nightromancecity.com + +nighttalk-link.com + + +nixode.com + + nlinebest.sbs + + nocatint.com + +nogalcarpet.com + +noneouarate.com + +nonfliestortic.com + +nonminerals.bond + + nonymous.sbs + + normalhq.sbs + +nosehabladebruno.com + +notadslife.com + + notiffit.com + +notifinfoback.com + + notifstar.com + +notiftravel.com + + nude2babe.com + + +nycppe.org + +nydiamondsyndicate.com + + nylon24.com + + obolazu.sbs + +oboodebreae.com + +ofertastrabajo.com + +offerdayapp.xyz + + ofoto.sbs + + ofwikija.org + + ojasituso.sbs + + ojuboye.sbs + + okigidop.sbs + + okoucho.com + + olomuxab.sbs + + omaroxujo.sbs + +omgsweeps.info + + +oninir.sbs + + oniri.sbs + + onlytik.com + + ooxxx.com + +opencorporations.bond + + openeco.sbs + +openerobox.sbs + +openflash.bond + +opengsm-tele.bond + +opengsmglob.bond + +opengsmtele.bond + +openheartchat.xyz + +openhorizonsdate.com + +openhorny.bond + +openinterconnection.bond + +openleadingteam.bond + +openlovely.bond + +openlovemethods.bond + +openmanykisses.bond + +openmarketingshow.bond + +openmatch.bond + +openmediumwifi.bond + +opennormal.sbs + +openspecialthings.bond + +opensweetgirls.bond + +opentelemode.bond + +opentelenautics.bond + +openviatele.bond + +openyournights.bond + +optionsther.bond + + oreamper.com + +oregonselfdefense.com + + ovato.sbs + + owben.com + + ozafewa.sbs + +ozidumplingsbk.com + + pacalned.com + +pair-circle.com + +pair-corner.com + + pair-dash.com + + pair-hub.com + + pair-lane.com + +pair-space.com + +pair-vibes.com + + pairaro.com + +pallairrate.com + + +parsel.tel + +peopleconnectionspace.com + +peoplemeetplace.com + +perdignerly.com + +perempollysm.com + +perfectlabs.sbs + + perfectly.sbs + + pesteenis.com + +petsforacause.com + + philip25.xyz + +phillipshomeinspection.com + + pillsen.info + + pillsen.pro + +pitibilided.com + +pixelapals.click + + +pixole.lol + +playingtolearn.org + +pleasurehq.bond + +pleasurely.bond + +pn12.biz + + pocamish.com + +pomytilliasts.com + + pornhits.com + + pornl.com + + porntop.com + +pp04.biz + + ppemaster.com + + +ppgopp.com + +pragoiliss.com + +preweddding.lat + + pricines.com + +princealbertfoundation.org + +princessaliza-kmgscbf.work + +princessamiya-aotnakx.work + +princessanna-nfiouab.work + +princessbella-gncmbqb.work +" +princessbrielle-psdsqaw.work +" +princesscandida-eonjced.work +" +princessdaniela-qyoytrt.work + +princessdixie-oiajdaw.work + +princessenola-clswiio.work +# +princessestrella-bmononf.work +# +princessfelicity-iduoptx.work + +princessjanis-ofdxqab.work + +princesskayli-ftiahlu.work +" +princesskirstin-kfyanvj.work + +princesslyda-hdhgpqr.work + +princessnoemi-kimfyss.work +! +princessphoebe-bwypsix.work + +princessretta-sfkzthf.work + +princessreyna-aiygmnf.work + +princessrose-hdscdpq.work + +princessviva-atlrwpi.work +! +princessvivian-qudpgbr.work + +princesszelma-ogtypmf.work + +prizestash.com + +proditiourvic.com + +productreviewjobs.com + +prof-adela-vbvifqo.work + +prof-briana-gsoawuu.work + +prof-celia-mzgtprw.work +! +prof-guadalupe-khsrgaj.work + +prof-hailie-rfdafdb.work + +prof-jana-isujqbf.work + +prof-ludie-oudntff.work + +prof-luella-tudzkgd.work + +prof-marie-vdoxqyy.work + +prof-maybelle-ewokarf.work + +prof-nella-tufcqhj.work + +prof-neoma-mnfyqgw.work + +prof-rylee-xovdvex.work + +prof-vergie-slmngde.work + +prof-verona-gqeycmt.work + +professionalheartslink.com + +project-vu.com + +promatchmingle.com + +proomagistaters.com + +prorelationshipconnect.com + +ptaimpeerte.com + +ptifirelaria.com + +purehearts.xyz + +pytoxipreess.com + + qijunimik.sbs + + qtrlo.com + +quantumridgepro.xyz + +queenalice-buogybc.work + +queenaudra-jigqwlq.work + +queencamilla-pyurmix.work + +queencarolyne-ciniqgz.work + +queenchristy-xrxfyja.work + +queenconnie-sywwtbi.work + +queenemilie-ojifyxb.work + +queeneryn-ruccksf.work + +queenestell-afgdwly.work + +queenfannie-icaqsvg.work + +queenjaunita-zlogdkr.work + +queenjustine-oqiekdg.work + +queenkaylee-bsaqbdv.work + +queenlaila-garrjxm.work + +queenleanna-xlfaxuq.work + +queenlora-cohxler.work + +queenmarie-uqjotpl.work + +queenmaureen-uixhfxv.work + +queennicole-cknmqvw.work + +queenophelia-kglyxno.work + +queenreina-tdasgei.work + +queenromaine-vyyurjp.work + +queenserena-dxhfqjy.work + +queenshea-rnvyunt.work + +quesearocanrol.com + +quickest-matches.com + +quickytalks.com + + +qukoju.sbs + + quyihobiq.sbs + + r-cdn.com + +rabagoweame.com + + radioyur.com + +raftgame-play.com + +random-strangers.com + +rankupwards.com + +ready-for-fun.com + +readyforflirts.com + +recoardespar.com + +recogidosparabodas.com + +redsevenlinux.com + +redwhitedate.xyz + +reignificence.bond + +relationcraftai.com +" +relationshipblissfinders.com + +relationshipgenieai.com + +relationshipmeetup.com + + releluri.com + +relsestemain.bond + +reltiondly.com + + remhainam.com + +remywordtsterk.com + + reprides.com + + rericex.sbs + + retellers.sbs + + retupery.com + +revistadoc.org + +revistamuchomas.com + + rexameles.com + +rharcometa.com + +rhondamoorefieldlaw.com +" +riad-marrakech-choumissa.com + +robocaller.bond +! +rocketracingproductions.com + +romance-dash.com + +romance-line.com + +romance-match.com + +romance-spot.com + +romance-wave.com + +romanceflux.xyz + + rstxs.com + + s3xuality.lat + + salta.xyz + + samihacoj.sbs + +samplesflash.com + +sampleshunterusa.com + +samwell-landscaping.com + +samyellativer.com + +sangiorgiosnc.com + +sartoriented.lat + + savefrom.net + +savesaintjamesthegreat.org + +secondchapter.xyz + +secret-discoveries.com + +secretromancespot.com + +selfdefensecorp.com + +sententias.org + + senzuri.tube + +sereinmate.xyz + +serendipityflings.com + +serenesoulmate.click + +serenitysoulmate.com + +serioussoulmatch.com + +sex-friend-finder.com + +sexdateable.lat + +sexdattess.com + +sexoaovivo.org + + sextop1x.com + + sexxdates.com + +sexywomens.monster + + shedivine.com + +shekinahgospelmissions.org + +shenaniganbooks.com + +sincerematchsss.com + +sitiestivist.com + + skysound7.com + +slessingly.com + +slutymilfs.com + +smartlifestyletrends.com + +smartmedialy.sbs + +smartpartnersync.com + +smilingdates.xyz + +smilinghearts.xyz + + smokinbbs.com + +snagyoursamples.com + + snapheart.xyz + +socialbondcommunity.com + +sogionowlid.com + + solimpla.com + +solityimpar.bond + +soulclick-lane.com + +soundsofthenight.com + +southbayautoservice.net + +spark-place.com + +sparkline-dates.com + +sparksandconnections.com + +specialthings.bond + +specialthingslabs.bond + +specialthingsly.bond + +spectrtriee.cc + + spicybond.fun + + spicymeet.fun + + steamply.com + + stertable.com + +stettebrondoon.com + +stimprograms.com + +stjohnonbethalgreen.org + +storytellerscontracts.com + +streetfashions.lat + +studiodolmaine.com + + successhq.xyz + + succses.sbs + +sugarchecker.com + + superhq.bond + +superlabs.bond + + superly.bond + +supersweepstotherescue.com + +suppliersly.bond + +suptainkylloge.com + +surgicalent.com + +suriattionation.com + + suriumes.com + +susasiaafrical.bond + +swagtracker.xyz + +sweepscentreusa.com + +sweetaffinity.click + +sweetgirlshq.bond + +sweetgirlsly.bond + +swiftgear.autos + +swillysedip.com + + sycepasta.com + + sylaixin.com + +synthomateai.com + +synylodynce.com + + systemshq.sbs + + +szfywl.com + +takaramonroe.com + + takemynow.com + + talk-line.com + +talk-match.com + +talkative-others.com + +talkdoor-club.com + + talkwcs.com + +taryn-southern.com + + tavikaboz.sbs + + tcheturbo.com + +techmediahq.bond + +techmedialabs.bond + +techniqes.bond + +technologyly.xyz + +tecnoclasta.com + + teleangel.sbs + +teleangelapp.sbs + +teleangelly.sbs + +telecarousellabs.bond + +teleconsole.cfd + +teleconsoleapp.cfd + +telefonly.bond + + teleguru.bond + +teleguruapp.bond + +telemodelabs.bond + +telenauticsly.bond + +teleriddleapp.bond + +teleriddlehub.bond + +teleriddlely.bond + +telesmarthub.sbs + +televolume.bond + +televolumehq.bond + +teleworkapp.bond + +teleworkhq.bond + +terkepesingatlan.com + +terrific-meets.com + +thaiwebpromote.com + +theamericancareerguide.com + +thecityoflouisburg.com + +thecomedyreview.com + +theearththe.bond + +theelitelovehub.com + +thefreesamplesguide.com + +thefreesampleshelper.com + + +thegay.com + +theglobalconnection.sbs + +thegoextreme.bond + + thegood.sbs + +thehoneygirls.bond +! +theikarialeanbellyjuice.com + +thelovecode.xyz + +thelovely.bond + + thelucky.sbs + +themattress4u.com + +themediafruit.cfd + +themediaguru.bond + +themediaonline.bond + +themediapro.sbs + +themediatops.bond + +themediumwifi.bond + +themoneyminutes.com + + thenormal.sbs + +theofferday.xyz + +theoptionstrading.com + +theotiosinnal.com + +theporndude.blog + + thesuper.bond + +thetechpark.xyz + +thetelefon.bond + +theteleriddle.bond + +thetripover.com +& + theunemploymentbenefitsguide.com + +theyournights.bond + +thinkanddone.com + +thinkloveconnect.com + +thrill-date.com + +thrillseekermatch.com + + throbs.bond + + tianrunsj.com + +timesbestseller.sbs + +tjjinchanyi.com + +tomas-moviez.com + +topfabulous.bond + + topmatch.bond + + topspace.bond + + topwow.bond + +tornillosmarina.com + +torridcard.org + + trablenic.com + +tracheteriolor.com + + travelall.lat + +travelgola.com + +travelluxembourg.org + + treetwear.lat + +trendndailyamerica.com + +trendndailyinsider.com + +trendndailyofficial.com + +trendndailyus.com + +trumatchengine.com + +tryanswerme.bond + + +trychk.com + + trydater.bond + +tryenjoyourday.bond + + tryflash.bond + +tryfromtele.bond + +trygsmtowers.bond + +trygsmwifi.bond + +trygsmworlds.bond + + tryhorny.bond + +trylovely.bond + + tryluck.bond + +trymediabuy.xyz + +trymediamode.bond + +trymediarecord.sbs + + tryspace.bond + +trytechmedia.bond + +trytelemaxa.bond + +trytelemix.sbs + +trytelenautics.bond + +tryyournights.bond + +tubepornclassic.com + +tubiegaming.com + + turekok.sbs + + tvtime.bond + +twobittowsandiego.com + + tyde-cn.com + + ujisikide.sbs + +ultrafemmy.bond + +unatchemoinads.com + +unbowistes.com + +uncerigravoting.com + + undatable.lat + +underwraps-fun.com + + undinist.com + +unedoleceblecea.com + + unheased.com + + unitylove.xyz + +unreal-chatties.com + +unrecaccess.com + + unythai.com + + upornia.com + +uptidysted.com + + upupo.sbs + +urisconeremid.com + +useboldmedia.bond + +usecorporations.bond + +usecybermonday.sbs + + usedater.bond + + useerobox.sbs + + usefancy.bond + +usegsmglob.bond + +usegsmtele.bond + +uselovely.bond + +useloveme.bond + +uselovesite.bond + +usemarketingshow.bond + +usemediafruit.cfd + +usemediaguru.bond + +usemediumwifi.bond + +usemobilenetworks.bond + +usepleasure.bond + +usespecialthings.bond + +usesuccess.xyz + +usetechnology.xyz + +usetelefon.bond + +usetelenetwork.sbs + +usetelevolume.bond + +usewifiarena.bond + +usewificolor.sbs + +usewifilead.cfd + +usmlepearls.com + + utoka.sbs + + vactioned.lat + + valkodra.lol + +valuemailpush.com + +valuesalign.xyz + + vdajyi.space + +venletaxiania.com + +venturemetro.com + + vibe-dash.com + +vibeforfuck.xyz + +vibepark-space.com + +videofunder.com + +videospornotrans.com + + vineline.xyz + +virtualaffection.monster + + viwuxedeb.sbs + +vjav.com + + +volexi.lol + + voqejiwe.sbs + +voweephyrepory.com + +vxxx.com + + +w-news.biz + +w62xdvaf9124.today + +weddingmoons.lat + +weddingswhite.com + + wejip.sbs + +wellbeingrules.com + + weltchor.com + +whisperedvows.click + +wifileadhq.cfd + +wifitechs.bond + +wildandffun.com + +wildmatchup.pro + + winalert.net + +windsorriversideinn.com + +winky-chats.com + +wireblockchain.com + +wishaffair.com + + wistchish.com + +witty-question.com + + wmtmbfun.com + +worldofmatches.top + + worthyrid.com + +wristicalit.com + + wwwiheart.com + +xemloigiai.com + + xmilf.com + +xn----ztbcbceder.net + +xrproptech.com + + +xsl808.com + + xunigang.com + + xuzilefuv.sbs + + xxxi.porn + + xxxpush.com + +xyjingxing.com + + +ycgmyq.com + + ycjqyey.com + +yegepeixun.com + +yessingles.com + + yhjc168.com + +yoper-linux.org + +youbesmart.com + +yourdirtymatches.com + +yourhalloweencountdown.com + +yourlovehorizon.click + +yournaughtyneighbor.com + +yournights.bond + +yournightshq.bond + +yournightsly.bond + +youthcarebeauty.com + +youzhushuwu.com + + +zarlop.com + + zaviagsae.com + +zaviharea.click + +zenithhearts.click + + +zoguna.lol \ No newline at end of file diff --git a/notebooklm_chrome_profile/Crowd Deny/2026.2.16.121/_metadata/verified_contents.json b/notebooklm_chrome_profile/Crowd Deny/2026.2.16.121/_metadata/verified_contents.json new file mode 100644 index 000000000..938c87a2d --- /dev/null +++ b/notebooklm_chrome_profile/Crowd Deny/2026.2.16.121/_metadata/verified_contents.json @@ -0,0 +1 @@ +[{"description":"treehash per file","signed_content":{"payload":"eyJjb250ZW50X2hhc2hlcyI6W3siYmxvY2tfc2l6ZSI6NDA5NiwiZGlnZXN0Ijoic2hhMjU2IiwiZmlsZXMiOlt7InBhdGgiOiJQcmVsb2FkIERhdGEiLCJyb290X2hhc2giOiIzcXluRUlNd2pEZ0pGcGRXUGljT2FTZ3BqR3hBZ3V4R3BaNk9KU2E5dkpzIn0seyJwYXRoIjoibWFuaWZlc3QuanNvbiIsInJvb3RfaGFzaCI6IjNzQlRYR1lXeHpqeV9UVDR2ZU9WSi1CaVB6SnFOZDV6QWlBSHRtSW03LXMifV0sImZvcm1hdCI6InRyZWVoYXNoIiwiaGFzaF9ibG9ja19zaXplIjo0MDk2fV0sIml0ZW1faWQiOiJnZ2trZWhnYm5manBlZ2dmcGxlZWFrcGlkYmtpYmJtbiIsIml0ZW1fdmVyc2lvbiI6IjIwMjYuMi4xNi4xMjEiLCJwcm90b2NvbF92ZXJzaW9uIjoxfQ","signatures":[{"header":{"kid":"publisher"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"tKH4RgbbTwsstGSzgEz-NghTmyeAQpLTCFEuTq-OdT-N3yiG6b-nT4HAn_1D7ilI1TlBD01MDMF6iHWsOyEAZf83mdIUE06U9DX7v4JJ2zGVOY8_EMQtoBu7sxJClGuC4n3ACmfIHYQbPXs0iUX3MOhZCkIvwQEGEKVVYRZi-9XJ14K30FJqDyqbgdUai9IR6za5tb49o89PA8bSh8l9Jrw79ynBu8F30oSDSMBabp7lJsOAVl0FBlsWofL2hm9LcV1Z8ikCEU1r9-bJ0AxEqdqC7B_F6mNeTKdpmldvI-jxU5qwhbpgtxuxM2jKvbvlcsFThxHPhQzPIRIzThqRqF6F-jUEHzeOIubhrW-TbA8qL0Dhaf8P-_fFp1emoe_q6vy_MKBHOkAIxwjRgbB7oZZbMDIPpp0yoi5Z-jGQHBMftAVXzpiWu4XBdPDV_7aY2MsO0GOsrYXzFCueuf4L_nkWONf2xcPJTJpozPVLqwnxgmpufpjeAmI7PqgJeLzRxChCQxpChZ8dG9Or97BUFxl_ugjmEi9DTGXDiLCdtED6Ot3QKrBNm7uIDjcs25y_lwxrmU08GCAWXbB2B74s3jRc1APkdWo4RcneSrr6s9oV3a4TJ9lbBQLUhcn6HNZtQNWCdOvRmUwqQppuAM8VvUNMUBL9Uma9_0VGnGDvz3Y"},{"header":{"kid":"webstore"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"KErNwbIGfrDdciicdoag5Z3puTRX8pPTJrANYLqBLMwJqTp5MBK8MMbrkfyCq8dGM1OuhbvBWr6HfPpMkVqMqsM_lQJL4HrMvJMezrUH7n2N3kGnjx4vYQONHyRDSgGYCanTUiQO_a1ZkrkfRmT7ezVaD2gbYOTl1WJJknO0RTtDqfKJnqHw7AcsZcFcA-FHVRbzn471rzW6PiVTh3h1QTTJyTT4rVP38UiSDsfqusEqiD8JNPHFB0GU54XYZpmxHRSyojztICGjCo9p4pwJZvaduHaw06k2F9qxqCGEiQEaWvQL2bFxxhF7DwLMDBpxkd_LIebHsO660LjrdEH9cw"}]}}] \ No newline at end of file diff --git a/notebooklm_chrome_profile/Crowd Deny/2026.2.16.121/manifest.json b/notebooklm_chrome_profile/Crowd Deny/2026.2.16.121/manifest.json new file mode 100644 index 000000000..9a7226951 --- /dev/null +++ b/notebooklm_chrome_profile/Crowd Deny/2026.2.16.121/manifest.json @@ -0,0 +1,6 @@ +{ + "manifest_version": 2, + "name": "Crowd Deny", + "preload_data_format": 1, + "version": "2026.2.16.121" +} \ No newline at end of file diff --git a/notebooklm_chrome_profile/Default/Account Web Data b/notebooklm_chrome_profile/Default/Account Web Data index 3ed3474a6..51bc6ec2b 100644 Binary files a/notebooklm_chrome_profile/Default/Account Web Data and b/notebooklm_chrome_profile/Default/Account Web Data differ diff --git a/notebooklm_chrome_profile/Default/Affiliation Database b/notebooklm_chrome_profile/Default/Affiliation Database index 44b14aebf..0857786ca 100644 Binary files a/notebooklm_chrome_profile/Default/Affiliation Database and b/notebooklm_chrome_profile/Default/Affiliation Database differ diff --git a/notebooklm_chrome_profile/Default/BrowsingTopicsState b/notebooklm_chrome_profile/Default/BrowsingTopicsState index 2a44264b2..2e39d81fd 100644 --- a/notebooklm_chrome_profile/Default/BrowsingTopicsState +++ b/notebooklm_chrome_profile/Default/BrowsingTopicsState @@ -8,5 +8,5 @@ "top_topics_and_observing_domains": [ ] } ], "hex_encoded_hmac_key": "6ABF3C72986C5C95FBE331DBC9CEAD56E996E24BED569157E1D716133B2C6B43", - "next_scheduled_calculation_time": "13416262242153763" + "next_scheduled_calculation_time": "13416262242153774" } diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/00135b85287c8081_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00135b85287c8081_0 new file mode 100644 index 000000000..0a4b1650d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00135b85287c8081_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/001556e050c5ffdc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/001556e050c5ffdc_0 new file mode 100644 index 000000000..3b7c0db48 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/001556e050c5ffdc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/00431abe53b5e9d0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00431abe53b5e9d0_0 new file mode 100644 index 000000000..89e83e4b8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00431abe53b5e9d0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0043245707eb0967_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0043245707eb0967_0 new file mode 100644 index 000000000..4c70d5cfa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0043245707eb0967_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0045276509dac2c8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0045276509dac2c8_0 new file mode 100644 index 000000000..62a41f445 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0045276509dac2c8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0055a7a9f21b6bf8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0055a7a9f21b6bf8_0 index dbec710df..9edf7f8f6 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0055a7a9f21b6bf8_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0055a7a9f21b6bf8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0063e9cbef08ab42_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0063e9cbef08ab42_0 new file mode 100644 index 000000000..113a08244 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0063e9cbef08ab42_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0066f1d3b6095335_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0066f1d3b6095335_0 new file mode 100644 index 000000000..ae4dae2e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0066f1d3b6095335_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/00814163c69d327e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00814163c69d327e_0 new file mode 100644 index 000000000..5f0e8e96e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00814163c69d327e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0081aa9040145aa3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0081aa9040145aa3_0 new file mode 100644 index 000000000..71a6d9958 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0081aa9040145aa3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0091b7be699d9c61_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0091b7be699d9c61_0 new file mode 100644 index 000000000..cf452bdd8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0091b7be699d9c61_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/009b1123afa7cb49_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/009b1123afa7cb49_0 new file mode 100644 index 000000000..5dee78645 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/009b1123afa7cb49_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/00a67f6ddf1aeb84_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00a67f6ddf1aeb84_0 new file mode 100644 index 000000000..a01897a3c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00a67f6ddf1aeb84_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/00ad6989508360d9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00ad6989508360d9_0 new file mode 100644 index 000000000..05ef3bc4c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00ad6989508360d9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/00c32b226ca019cd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00c32b226ca019cd_0 new file mode 100644 index 000000000..4f892eaf7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00c32b226ca019cd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/00c98917c4f6e35f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00c98917c4f6e35f_0 new file mode 100644 index 000000000..755cc0e8c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00c98917c4f6e35f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/00ee47e0b0c875cc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00ee47e0b0c875cc_0 new file mode 100644 index 000000000..e17cb3c92 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00ee47e0b0c875cc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/00f23f12aa86168b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00f23f12aa86168b_0 new file mode 100644 index 000000000..1131930e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00f23f12aa86168b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/00f6ebaf0388dbb7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00f6ebaf0388dbb7_0 new file mode 100644 index 000000000..1be2f5a0e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00f6ebaf0388dbb7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/00fe2bc8bab686ec_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00fe2bc8bab686ec_0 new file mode 100644 index 000000000..da26dd3df Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/00fe2bc8bab686ec_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0104221072feb1e0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0104221072feb1e0_0 new file mode 100644 index 000000000..5152979fa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0104221072feb1e0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/011aa17ca561c819_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/011aa17ca561c819_0 new file mode 100644 index 000000000..7428d5b69 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/011aa17ca561c819_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/011e9071d0d58b14_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/011e9071d0d58b14_0 index 56addacec..8dd53fd50 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/011e9071d0d58b14_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/011e9071d0d58b14_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/012ff28da9f42a1b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/012ff28da9f42a1b_0 new file mode 100644 index 000000000..92c3e6f7e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/012ff28da9f42a1b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/013056e2c9fb026c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/013056e2c9fb026c_0 new file mode 100644 index 000000000..d4f627790 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/013056e2c9fb026c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/013295b900f42bb4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/013295b900f42bb4_0 new file mode 100644 index 000000000..34420a12e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/013295b900f42bb4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/015e532e826ffdb8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/015e532e826ffdb8_0 new file mode 100644 index 000000000..89b761b9a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/015e532e826ffdb8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/016e8fc45fb80220_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/016e8fc45fb80220_0 new file mode 100644 index 000000000..62897f6ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/016e8fc45fb80220_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/017fd04f60f03d0b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/017fd04f60f03d0b_0 new file mode 100644 index 000000000..dbfa4625c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/017fd04f60f03d0b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0186b05654e09eb9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0186b05654e09eb9_0 new file mode 100644 index 000000000..fcc7278e2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0186b05654e09eb9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0186d0ed8f0dd63e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0186d0ed8f0dd63e_0 new file mode 100644 index 000000000..e23cc32f5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0186d0ed8f0dd63e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/018ce8828c22be26_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/018ce8828c22be26_0 new file mode 100644 index 000000000..9249c44c0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/018ce8828c22be26_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0190fc574729d527_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0190fc574729d527_0 new file mode 100644 index 000000000..74cb51419 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0190fc574729d527_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/019a497712739fa5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/019a497712739fa5_0 new file mode 100644 index 000000000..e0286b14d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/019a497712739fa5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/01aced1b308c6111_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/01aced1b308c6111_0 new file mode 100644 index 000000000..948ea9e83 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/01aced1b308c6111_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/01efdc76acb479dd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/01efdc76acb479dd_0 new file mode 100644 index 000000000..9f59c512f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/01efdc76acb479dd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/02037c6f46255b18_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/02037c6f46255b18_0 new file mode 100644 index 000000000..781f8f4d6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/02037c6f46255b18_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0203b67935fce0ab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0203b67935fce0ab_0 new file mode 100644 index 000000000..530683e24 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0203b67935fce0ab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/020435875adb1417_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/020435875adb1417_0 new file mode 100644 index 000000000..574fe35a0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/020435875adb1417_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0208403b9b7d41cb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0208403b9b7d41cb_0 new file mode 100644 index 000000000..c167dcc68 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0208403b9b7d41cb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0210629f439b2fb0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0210629f439b2fb0_0 new file mode 100644 index 000000000..7b50a130c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0210629f439b2fb0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0217f7ce0f7fbb48_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0217f7ce0f7fbb48_0 new file mode 100644 index 000000000..e4fe56a3c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0217f7ce0f7fbb48_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0226b92478af0780_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0226b92478af0780_0 new file mode 100644 index 000000000..37e0b1f63 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0226b92478af0780_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0227d4e8c61edd15_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0227d4e8c61edd15_0 new file mode 100644 index 000000000..10fe3f6b5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0227d4e8c61edd15_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/022c33ca1ab38090_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/022c33ca1ab38090_0 new file mode 100644 index 000000000..9ef9562ff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/022c33ca1ab38090_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/02369d0efd50b48e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/02369d0efd50b48e_0 new file mode 100644 index 000000000..8b4dc2075 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/02369d0efd50b48e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/023a9a9b291ee2df_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/023a9a9b291ee2df_0 new file mode 100644 index 000000000..03736cced Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/023a9a9b291ee2df_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/024bd46746974eaa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/024bd46746974eaa_0 new file mode 100644 index 000000000..2456ef704 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/024bd46746974eaa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/02666b52f0befd1a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/02666b52f0befd1a_0 new file mode 100644 index 000000000..0fabff7c8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/02666b52f0befd1a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/026d40f741916e72_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/026d40f741916e72_0 new file mode 100644 index 000000000..8048c8ddd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/026d40f741916e72_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/027a725661d48298_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/027a725661d48298_0 new file mode 100644 index 000000000..d60c69c54 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/027a725661d48298_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/028a19fd6fb7b7bd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/028a19fd6fb7b7bd_0 new file mode 100644 index 000000000..a6df93ab2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/028a19fd6fb7b7bd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/02918ad1dce86979_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/02918ad1dce86979_0 new file mode 100644 index 000000000..f758d9550 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/02918ad1dce86979_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/02a80d4e9fa6a461_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/02a80d4e9fa6a461_0 new file mode 100644 index 000000000..8c862145b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/02a80d4e9fa6a461_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/02cafcf1de24a8b2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/02cafcf1de24a8b2_0 new file mode 100644 index 000000000..c29e1bdd6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/02cafcf1de24a8b2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/02f7524602f40c15_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/02f7524602f40c15_0 new file mode 100644 index 000000000..595a207fb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/02f7524602f40c15_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/02fd6949245faa6f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/02fd6949245faa6f_0 new file mode 100644 index 000000000..433c90a8b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/02fd6949245faa6f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/03221ce6a41ebe60_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/03221ce6a41ebe60_0 new file mode 100644 index 000000000..f1c61c79d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/03221ce6a41ebe60_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/032254c4ac3cb6ea_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/032254c4ac3cb6ea_0 new file mode 100644 index 000000000..67a746e8a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/032254c4ac3cb6ea_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/032d96f4638b3f47_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/032d96f4638b3f47_0 new file mode 100644 index 000000000..f665396fb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/032d96f4638b3f47_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/03372432ddbfca72_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/03372432ddbfca72_0 index 3544840ae..aaa1c2c66 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/03372432ddbfca72_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/03372432ddbfca72_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/033b833aebf127f8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/033b833aebf127f8_0 new file mode 100644 index 000000000..9d68e7428 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/033b833aebf127f8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/033f4627f155e089_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/033f4627f155e089_0 new file mode 100644 index 000000000..076827b64 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/033f4627f155e089_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0340d94bb12a503e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0340d94bb12a503e_0 new file mode 100644 index 000000000..a92088d34 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0340d94bb12a503e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0364484888840618_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0364484888840618_0 new file mode 100644 index 000000000..c300126fc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0364484888840618_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/037bec683c4b7fa8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/037bec683c4b7fa8_0 new file mode 100644 index 000000000..8a10d9f1c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/037bec683c4b7fa8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0396c794357b4c70_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0396c794357b4c70_0 new file mode 100644 index 000000000..5f693bd14 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0396c794357b4c70_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/03c250bc7832620f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/03c250bc7832620f_0 new file mode 100644 index 000000000..55b0fd2bf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/03c250bc7832620f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/03e09502154e0b10_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/03e09502154e0b10_0 new file mode 100644 index 000000000..6967826b7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/03e09502154e0b10_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/03eec5ed6cba50e3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/03eec5ed6cba50e3_0 new file mode 100644 index 000000000..6bd6bfe2f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/03eec5ed6cba50e3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/03ffeb41c8456c6f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/03ffeb41c8456c6f_0 new file mode 100644 index 000000000..924212e98 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/03ffeb41c8456c6f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/040a96402ff3baa3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/040a96402ff3baa3_0 new file mode 100644 index 000000000..f91a5811f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/040a96402ff3baa3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/04173ec809859fa2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/04173ec809859fa2_0 new file mode 100644 index 000000000..4c32bc5d3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/04173ec809859fa2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0424e853aac2b449_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0424e853aac2b449_0 new file mode 100644 index 000000000..07f28a76a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0424e853aac2b449_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/043af8d63ba99835_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/043af8d63ba99835_0 new file mode 100644 index 000000000..ac6e51df6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/043af8d63ba99835_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/044f4a649757887c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/044f4a649757887c_0 new file mode 100644 index 000000000..a88b7b3a5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/044f4a649757887c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/045ca324bab3d0d1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/045ca324bab3d0d1_0 new file mode 100644 index 000000000..659c0fd7d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/045ca324bab3d0d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/049d744fe59c0551_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/049d744fe59c0551_0 new file mode 100644 index 000000000..a8fad7258 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/049d744fe59c0551_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/04ab572a0faf44c5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/04ab572a0faf44c5_0 new file mode 100644 index 000000000..edcf3f088 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/04ab572a0faf44c5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/04b2d3c94bbd1e40_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/04b2d3c94bbd1e40_0 new file mode 100644 index 000000000..a51468c07 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/04b2d3c94bbd1e40_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/04b8770eb37a65d8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/04b8770eb37a65d8_0 new file mode 100644 index 000000000..5884e9c62 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/04b8770eb37a65d8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/04bf646078a35749_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/04bf646078a35749_0 new file mode 100644 index 000000000..0de509299 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/04bf646078a35749_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/04c3c891d8a491c5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/04c3c891d8a491c5_0 new file mode 100644 index 000000000..2f6b198a6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/04c3c891d8a491c5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/04d9d1fec38b5bb8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/04d9d1fec38b5bb8_0 new file mode 100644 index 000000000..e5d6b2012 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/04d9d1fec38b5bb8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/04dbfc040b438954_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/04dbfc040b438954_0 new file mode 100644 index 000000000..51029f714 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/04dbfc040b438954_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/04fee524c077187d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/04fee524c077187d_0 new file mode 100644 index 000000000..022e89f03 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/04fee524c077187d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/05177acdbf9258b6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/05177acdbf9258b6_0 new file mode 100644 index 000000000..ebe9fca16 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/05177acdbf9258b6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0525598cef7883ac_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0525598cef7883ac_0 new file mode 100644 index 000000000..29a43e25a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0525598cef7883ac_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/054f3f8d9cc17daf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/054f3f8d9cc17daf_0 new file mode 100644 index 000000000..9677d7ccb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/054f3f8d9cc17daf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/055e2fda8949edd7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/055e2fda8949edd7_0 new file mode 100644 index 000000000..15b775812 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/055e2fda8949edd7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/05932b7e68afe754_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/05932b7e68afe754_0 new file mode 100644 index 000000000..0d6506384 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/05932b7e68afe754_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/059dd514a183b0a0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/059dd514a183b0a0_0 new file mode 100644 index 000000000..94dcf9045 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/059dd514a183b0a0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/05b43ec45a114936_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/05b43ec45a114936_0 new file mode 100644 index 000000000..467a85b5e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/05b43ec45a114936_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/05bbfa7e876ef0df_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/05bbfa7e876ef0df_0 new file mode 100644 index 000000000..583cf4180 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/05bbfa7e876ef0df_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/05c8e97ff14618e5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/05c8e97ff14618e5_0 new file mode 100644 index 000000000..f29abf8dc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/05c8e97ff14618e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/05d447778396aae4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/05d447778396aae4_0 new file mode 100644 index 000000000..73930ecce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/05d447778396aae4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/05d601fde7236c5d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/05d601fde7236c5d_0 new file mode 100644 index 000000000..34f52b80f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/05d601fde7236c5d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/05dd910b54e3b53d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/05dd910b54e3b53d_0 new file mode 100644 index 000000000..ea667688f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/05dd910b54e3b53d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/05f45b436f90551c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/05f45b436f90551c_0 new file mode 100644 index 000000000..9305ea215 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/05f45b436f90551c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/060400583c2b8bbd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/060400583c2b8bbd_0 new file mode 100644 index 000000000..78e8da7a0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/060400583c2b8bbd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/061e7d4044a7cf73_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/061e7d4044a7cf73_0 new file mode 100644 index 000000000..4e952298a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/061e7d4044a7cf73_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/062c3462b01779c9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/062c3462b01779c9_0 index 845e61dcb..40ac1f072 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/062c3462b01779c9_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/062c3462b01779c9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/063d34436e8b38ab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/063d34436e8b38ab_0 new file mode 100644 index 000000000..994a76cac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/063d34436e8b38ab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/063eacd82a03109b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/063eacd82a03109b_0 new file mode 100644 index 000000000..356557ec5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/063eacd82a03109b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/065a2594fa478e34_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/065a2594fa478e34_0 new file mode 100644 index 000000000..ff27847e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/065a2594fa478e34_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/065a451ba02bca8a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/065a451ba02bca8a_0 new file mode 100644 index 000000000..68cd36ed3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/065a451ba02bca8a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/068af3b536057c2b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/068af3b536057c2b_0 new file mode 100644 index 000000000..22fc2b8f4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/068af3b536057c2b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/069b4effeee93e2f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/069b4effeee93e2f_0 new file mode 100644 index 000000000..fffef11de Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/069b4effeee93e2f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/06aeeeba171ba905_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06aeeeba171ba905_0 new file mode 100644 index 000000000..f95459147 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06aeeeba171ba905_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/06b0849ad75e5d3e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06b0849ad75e5d3e_0 new file mode 100644 index 000000000..4b6e3d6f2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06b0849ad75e5d3e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/06b8c6ce716e43d9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06b8c6ce716e43d9_0 new file mode 100644 index 000000000..ef92f3793 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06b8c6ce716e43d9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/06c479d8c54be4bb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06c479d8c54be4bb_0 new file mode 100644 index 000000000..7328f9037 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06c479d8c54be4bb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/06c4dc85fa12f6dc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06c4dc85fa12f6dc_0 new file mode 100644 index 000000000..28383b5b7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06c4dc85fa12f6dc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/06cc523eaf1eeb9f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06cc523eaf1eeb9f_0 new file mode 100644 index 000000000..23d0b7e44 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06cc523eaf1eeb9f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/06d2982cadb683f7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06d2982cadb683f7_0 new file mode 100644 index 000000000..a83a15f96 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06d2982cadb683f7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/06d83b5e51ddc39e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06d83b5e51ddc39e_0 new file mode 100644 index 000000000..0d45519f6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06d83b5e51ddc39e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/06f87b301f2302e9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06f87b301f2302e9_0 new file mode 100644 index 000000000..d3f8851a3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06f87b301f2302e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/06f9d06bbc3558fe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06f9d06bbc3558fe_0 new file mode 100644 index 000000000..5c73a2d12 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/06f9d06bbc3558fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/07003832517302d6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/07003832517302d6_0 new file mode 100644 index 000000000..ba1012cb0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/07003832517302d6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/070db1c27e9e084b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/070db1c27e9e084b_0 new file mode 100644 index 000000000..cba1a4708 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/070db1c27e9e084b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/07112045da18e9a6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/07112045da18e9a6_0 new file mode 100644 index 000000000..4c5a27984 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/07112045da18e9a6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/071890c7aea1f678_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/071890c7aea1f678_0 new file mode 100644 index 000000000..dcdc3931b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/071890c7aea1f678_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0741244493f26dd6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0741244493f26dd6_0 new file mode 100644 index 000000000..2a2c14aec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0741244493f26dd6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0753881bc6665e1f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0753881bc6665e1f_0 new file mode 100644 index 000000000..1532bd03a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0753881bc6665e1f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/075aaad3afafdc59_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/075aaad3afafdc59_0 new file mode 100644 index 000000000..20c5a246c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/075aaad3afafdc59_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/075cf029e2ecc638_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/075cf029e2ecc638_0 new file mode 100644 index 000000000..e82f54b5b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/075cf029e2ecc638_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0760c6cd7ed38a10_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0760c6cd7ed38a10_0 new file mode 100644 index 000000000..06f570649 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0760c6cd7ed38a10_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/07850fb5766b5f5e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/07850fb5766b5f5e_0 new file mode 100644 index 000000000..43c002e21 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/07850fb5766b5f5e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0790bb6adca60ae5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0790bb6adca60ae5_0 new file mode 100644 index 000000000..a21cb3f31 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0790bb6adca60ae5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/079672766b3a9195_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/079672766b3a9195_0 new file mode 100644 index 000000000..d205c1d52 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/079672766b3a9195_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0799897dfc2c325f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0799897dfc2c325f_0 new file mode 100644 index 000000000..d7cf2a05c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0799897dfc2c325f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/079c05186fb0686d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/079c05186fb0686d_0 new file mode 100644 index 000000000..85f088787 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/079c05186fb0686d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/07ab9c7ff455076d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/07ab9c7ff455076d_0 new file mode 100644 index 000000000..87e421a61 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/07ab9c7ff455076d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/07c042a8db94ab26_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/07c042a8db94ab26_0 new file mode 100644 index 000000000..f1c82cfb2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/07c042a8db94ab26_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/07cc8be7e30f4dc2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/07cc8be7e30f4dc2_0 new file mode 100644 index 000000000..5466e77b7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/07cc8be7e30f4dc2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/07e3d8790a665f0c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/07e3d8790a665f0c_0 new file mode 100644 index 000000000..8552c7078 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/07e3d8790a665f0c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/07ec7127a80495aa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/07ec7127a80495aa_0 new file mode 100644 index 000000000..5c424bc75 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/07ec7127a80495aa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/07ef92843ee762d4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/07ef92843ee762d4_0 new file mode 100644 index 000000000..ca892ca1d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/07ef92843ee762d4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/080353b12eaaf769_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/080353b12eaaf769_0 new file mode 100644 index 000000000..d9c136eb0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/080353b12eaaf769_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/081b36fe0634314b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/081b36fe0634314b_0 new file mode 100644 index 000000000..860326e8a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/081b36fe0634314b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/082ca35860dc7288_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/082ca35860dc7288_0 new file mode 100644 index 000000000..9bfa4fab5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/082ca35860dc7288_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/083888d57589dfbe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/083888d57589dfbe_0 new file mode 100644 index 000000000..d9a6af47a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/083888d57589dfbe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/085604d1bfb7d067_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/085604d1bfb7d067_0 index 6d9eab5de..e98decbdc 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/085604d1bfb7d067_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/085604d1bfb7d067_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0875187c2cf12332_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0875187c2cf12332_0 new file mode 100644 index 000000000..29b0567b1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0875187c2cf12332_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/087df176c0d5b8c8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/087df176c0d5b8c8_0 new file mode 100644 index 000000000..03a1aa79d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/087df176c0d5b8c8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/08995ec780a55628_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/08995ec780a55628_0 new file mode 100644 index 000000000..01a12a885 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/08995ec780a55628_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/08a636b0e9ccfb73_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/08a636b0e9ccfb73_0 new file mode 100644 index 000000000..41071cb9a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/08a636b0e9ccfb73_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/08b0a0278d3006a5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/08b0a0278d3006a5_0 new file mode 100644 index 000000000..011e073ce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/08b0a0278d3006a5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/08ee965b70a76ace_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/08ee965b70a76ace_0 new file mode 100644 index 000000000..51c41a01b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/08ee965b70a76ace_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/08f70b386b07807b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/08f70b386b07807b_0 new file mode 100644 index 000000000..0e0f5e3a4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/08f70b386b07807b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/09056625844b50e4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/09056625844b50e4_0 new file mode 100644 index 000000000..eec81ea54 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/09056625844b50e4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0933a132e3bf6a28_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0933a132e3bf6a28_0 new file mode 100644 index 000000000..220f05912 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0933a132e3bf6a28_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/09348560f0ffabe3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/09348560f0ffabe3_0 new file mode 100644 index 000000000..b71383c01 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/09348560f0ffabe3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/09442a94267e5d1b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/09442a94267e5d1b_0 index ec7cfabbb..a5a29f469 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/09442a94267e5d1b_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/09442a94267e5d1b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0949d311c81c012f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0949d311c81c012f_0 new file mode 100644 index 000000000..d793d55f2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0949d311c81c012f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0965c7daf996c7a2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0965c7daf996c7a2_0 new file mode 100644 index 000000000..0b03c3b2d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0965c7daf996c7a2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/098091cb49118fb1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/098091cb49118fb1_0 new file mode 100644 index 000000000..869df430b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/098091cb49118fb1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0994216ded3c5f6d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0994216ded3c5f6d_0 new file mode 100644 index 000000000..543e482c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0994216ded3c5f6d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/09a750884ab16de2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/09a750884ab16de2_0 new file mode 100644 index 000000000..945bffecc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/09a750884ab16de2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/09a9beecee0cd487_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/09a9beecee0cd487_0 new file mode 100644 index 000000000..52779db82 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/09a9beecee0cd487_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/09ae7e8b93559bef_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/09ae7e8b93559bef_0 new file mode 100644 index 000000000..19803ab0c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/09ae7e8b93559bef_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/09aec34277eb61c0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/09aec34277eb61c0_0 new file mode 100644 index 000000000..431f2bcd1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/09aec34277eb61c0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/09af6dc1d08555a2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/09af6dc1d08555a2_0 new file mode 100644 index 000000000..5224d4e07 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/09af6dc1d08555a2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/09c77ed1a9a9637c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/09c77ed1a9a9637c_0 new file mode 100644 index 000000000..62a330105 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/09c77ed1a9a9637c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0a162bf85d8d299c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0a162bf85d8d299c_0 new file mode 100644 index 000000000..9eb73e455 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0a162bf85d8d299c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0a227c57b8c10397_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0a227c57b8c10397_0 new file mode 100644 index 000000000..a6f797d2f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0a227c57b8c10397_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0a3a082056a247fd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0a3a082056a247fd_0 new file mode 100644 index 000000000..dc7ce9980 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0a3a082056a247fd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0a42b73d354bcfbc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0a42b73d354bcfbc_0 new file mode 100644 index 000000000..e63932598 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0a42b73d354bcfbc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0a627ed95fe05a4c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0a627ed95fe05a4c_0 new file mode 100644 index 000000000..c7890c892 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0a627ed95fe05a4c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0a698180d7f33110_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0a698180d7f33110_0 new file mode 100644 index 000000000..58ddaa5e9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0a698180d7f33110_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0aa84d3279dd6a97_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0aa84d3279dd6a97_0 new file mode 100644 index 000000000..9897f0976 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0aa84d3279dd6a97_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ab000bbb2ea5f31_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ab000bbb2ea5f31_0 new file mode 100644 index 000000000..4545aa2fa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ab000bbb2ea5f31_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ab17a16678a2100_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ab17a16678a2100_0 new file mode 100644 index 000000000..5745bda6d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ab17a16678a2100_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0abbe6f95b569062_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0abbe6f95b569062_0 index bdd3b2311..427a70876 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0abbe6f95b569062_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0abbe6f95b569062_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0acc08c43aefe8fa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0acc08c43aefe8fa_0 index 7821f7e4d..76698f066 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0acc08c43aefe8fa_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0acc08c43aefe8fa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b067ea6c8f44ca2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b067ea6c8f44ca2_0 new file mode 100644 index 000000000..3cbb456a1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b067ea6c8f44ca2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b0e6e13528ed32e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b0e6e13528ed32e_0 new file mode 100644 index 000000000..a5d552d77 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b0e6e13528ed32e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b2b8e31e50e5eb0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b2b8e31e50e5eb0_0 new file mode 100644 index 000000000..847792d20 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b2b8e31e50e5eb0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b3248c25c02fc45_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b3248c25c02fc45_0 new file mode 100644 index 000000000..65cd9f949 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b3248c25c02fc45_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b4390359a24c2c5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b4390359a24c2c5_0 new file mode 100644 index 000000000..20c3a5ea1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b4390359a24c2c5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b5805b2b2a35d43_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b5805b2b2a35d43_0 new file mode 100644 index 000000000..13b9df58f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b5805b2b2a35d43_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b71f685e5a569cf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b71f685e5a569cf_0 new file mode 100644 index 000000000..11835a589 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b71f685e5a569cf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b840cbc5a366e36_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b840cbc5a366e36_0 new file mode 100644 index 000000000..574f91325 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0b840cbc5a366e36_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0bb1226912b5efdf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0bb1226912b5efdf_0 new file mode 100644 index 000000000..8cdf8f333 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0bb1226912b5efdf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0bbfc88e70f6b4e9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0bbfc88e70f6b4e9_0 new file mode 100644 index 000000000..d5c595402 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0bbfc88e70f6b4e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0bc72c62db080ae2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0bc72c62db080ae2_0 new file mode 100644 index 000000000..fc031a59a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0bc72c62db080ae2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0bf074cb4ee3fb55_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0bf074cb4ee3fb55_0 new file mode 100644 index 000000000..cb9cd15d8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0bf074cb4ee3fb55_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0bf28aadf3441bf5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0bf28aadf3441bf5_0 new file mode 100644 index 000000000..b405df23b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0bf28aadf3441bf5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0bf727d52969476c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0bf727d52969476c_0 new file mode 100644 index 000000000..79a2fc01d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0bf727d52969476c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0c06806bca912313_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0c06806bca912313_0 new file mode 100644 index 000000000..038329768 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0c06806bca912313_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0c2414b9515c15f9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0c2414b9515c15f9_0 new file mode 100644 index 000000000..4afe3badc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0c2414b9515c15f9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0c2b1b6e03ae9c39_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0c2b1b6e03ae9c39_0 new file mode 100644 index 000000000..4e4e9c09e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0c2b1b6e03ae9c39_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0c444676fff34225_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0c444676fff34225_0 new file mode 100644 index 000000000..42f5d29bc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0c444676fff34225_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0c46ba30606da202_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0c46ba30606da202_0 new file mode 100644 index 000000000..485e37670 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0c46ba30606da202_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0c930e85de855c3a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0c930e85de855c3a_0 new file mode 100644 index 000000000..a2c3cc47c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0c930e85de855c3a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0cb98ef5c91019d1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0cb98ef5c91019d1_0 new file mode 100644 index 000000000..2b0804a54 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0cb98ef5c91019d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0cc5719c09e7427f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0cc5719c09e7427f_0 new file mode 100644 index 000000000..3f49ab547 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0cc5719c09e7427f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0cd09f8ef16d8cde_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0cd09f8ef16d8cde_0 new file mode 100644 index 000000000..362f94f4e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0cd09f8ef16d8cde_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0cd0c680eef1fb4b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0cd0c680eef1fb4b_0 new file mode 100644 index 000000000..c98fbe428 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0cd0c680eef1fb4b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0cf0bf2412f40cd9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0cf0bf2412f40cd9_0 new file mode 100644 index 000000000..77005fec8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0cf0bf2412f40cd9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0cfcb544d1bf473f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0cfcb544d1bf473f_0 new file mode 100644 index 000000000..0f584fa6a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0cfcb544d1bf473f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d09ee9e83bf9b9f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d09ee9e83bf9b9f_0 new file mode 100644 index 000000000..e3cc6cefb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d09ee9e83bf9b9f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d1abc4e29bcd038_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d1abc4e29bcd038_0 new file mode 100644 index 000000000..0b1d7a913 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d1abc4e29bcd038_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d2b7c1058220f17_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d2b7c1058220f17_0 index a1cf2a966..a1a6e9077 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d2b7c1058220f17_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d2b7c1058220f17_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d30c9b5f3a6be49_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d30c9b5f3a6be49_0 new file mode 100644 index 000000000..90e253e5b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d30c9b5f3a6be49_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d315138d5347720_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d315138d5347720_0 new file mode 100644 index 000000000..49bf850a4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d315138d5347720_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d3deca8fd4c1cad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d3deca8fd4c1cad_0 new file mode 100644 index 000000000..ce54f0bda Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d3deca8fd4c1cad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d84b252cc3c3a4e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d84b252cc3c3a4e_0 new file mode 100644 index 000000000..2f5830942 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d84b252cc3c3a4e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d8b6c541c8816ea_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d8b6c541c8816ea_0 new file mode 100644 index 000000000..2829732f6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0d8b6c541c8816ea_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0dabe3ff2eac3a2f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0dabe3ff2eac3a2f_0 new file mode 100644 index 000000000..431203ebb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0dabe3ff2eac3a2f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0dacfeec7c9788da_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0dacfeec7c9788da_0 new file mode 100644 index 000000000..796fae75f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0dacfeec7c9788da_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0df7f51218ec49c1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0df7f51218ec49c1_0 new file mode 100644 index 000000000..525f57f0d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0df7f51218ec49c1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0df9c63eb9ab4329_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0df9c63eb9ab4329_0 new file mode 100644 index 000000000..63d39e7f3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0df9c63eb9ab4329_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0dfc0495a6db0e89_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0dfc0495a6db0e89_0 new file mode 100644 index 000000000..349c081b7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0dfc0495a6db0e89_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e0a09b7c82cbf84_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e0a09b7c82cbf84_0 new file mode 100644 index 000000000..4e9027ab3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e0a09b7c82cbf84_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e0d8941b2331103_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e0d8941b2331103_0 new file mode 100644 index 000000000..74ae42668 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e0d8941b2331103_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e2c38a6580dc244_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e2c38a6580dc244_0 new file mode 100644 index 000000000..5134ce0f1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e2c38a6580dc244_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e2c6353fecb59cc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e2c6353fecb59cc_0 new file mode 100644 index 000000000..7eb37543f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e2c6353fecb59cc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e2cb16434dbdb49_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e2cb16434dbdb49_0 new file mode 100644 index 000000000..073bb33e3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e2cb16434dbdb49_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e2ed4496df8e2d7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e2ed4496df8e2d7_0 new file mode 100644 index 000000000..3b55944b8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e2ed4496df8e2d7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e316b56549c1855_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e316b56549c1855_0 new file mode 100644 index 000000000..02edcb54d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e316b56549c1855_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e3592b895f04c86_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e3592b895f04c86_0 new file mode 100644 index 000000000..d27ddb03e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e3592b895f04c86_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e3638d285c7b5ab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e3638d285c7b5ab_0 new file mode 100644 index 000000000..5c39d1538 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e3638d285c7b5ab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e395c629d699be2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e395c629d699be2_0 new file mode 100644 index 000000000..21c1e6db5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e395c629d699be2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e461f0b7e2fa429_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e461f0b7e2fa429_0 new file mode 100644 index 000000000..7fcc24206 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e461f0b7e2fa429_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e4acbb85c02f479_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e4acbb85c02f479_0 new file mode 100644 index 000000000..8fd41f4c4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e4acbb85c02f479_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e693fd45296d97c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e693fd45296d97c_0 new file mode 100644 index 000000000..82418859f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e693fd45296d97c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e6cd09424a79606_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e6cd09424a79606_0 new file mode 100644 index 000000000..42d3f9ebb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e6cd09424a79606_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e836ef1858858f0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e836ef1858858f0_0 new file mode 100644 index 000000000..d4e70e581 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e836ef1858858f0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e8693398702f7f3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e8693398702f7f3_0 new file mode 100644 index 000000000..2e382297e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0e8693398702f7f3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ea25fb0ef18a2b3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ea25fb0ef18a2b3_0 new file mode 100644 index 000000000..8d2890942 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ea25fb0ef18a2b3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ea2c2186ce80539_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ea2c2186ce80539_0 new file mode 100644 index 000000000..2c8a62b23 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ea2c2186ce80539_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ea3b44d9aa20a1b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ea3b44d9aa20a1b_0 new file mode 100644 index 000000000..c581f51fb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ea3b44d9aa20a1b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ebd80853dee5d2a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ebd80853dee5d2a_0 new file mode 100644 index 000000000..3738fb11b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ebd80853dee5d2a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ec299c25be052dd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ec299c25be052dd_0 new file mode 100644 index 000000000..20f4f8e53 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ec299c25be052dd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ec9db3438ae64de_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ec9db3438ae64de_0 new file mode 100644 index 000000000..f9274ba33 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ec9db3438ae64de_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ecd5642557f0aeb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ecd5642557f0aeb_0 new file mode 100644 index 000000000..19f4b2a3e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ecd5642557f0aeb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ed5932d10cc749d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ed5932d10cc749d_0 new file mode 100644 index 000000000..4456ef4d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ed5932d10cc749d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ee8950fc4303170_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ee8950fc4303170_0 new file mode 100644 index 000000000..b0d74dac8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ee8950fc4303170_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f2208adc73e5573_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f2208adc73e5573_0 new file mode 100644 index 000000000..9ff97699d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f2208adc73e5573_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f2b242cd37a2481_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f2b242cd37a2481_0 new file mode 100644 index 000000000..262f93ade Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f2b242cd37a2481_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f306126856d5f15_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f306126856d5f15_0 new file mode 100644 index 000000000..8f4838a9c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f306126856d5f15_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f37dfed54120129_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f37dfed54120129_0 new file mode 100644 index 000000000..6adb2fda5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f37dfed54120129_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f58922e107cf29a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f58922e107cf29a_0 new file mode 100644 index 000000000..defd99bb3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f58922e107cf29a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f5d1373c4d4a13f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f5d1373c4d4a13f_0 new file mode 100644 index 000000000..5213a3218 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f5d1373c4d4a13f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f70f7c89ae58b76_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f70f7c89ae58b76_0 new file mode 100644 index 000000000..dc81794a7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f70f7c89ae58b76_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f76441438463664_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f76441438463664_0 new file mode 100644 index 000000000..2209800ec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0f76441438463664_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fa93e1bfd344932_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fa93e1bfd344932_0 new file mode 100644 index 000000000..c6443c76f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fa93e1bfd344932_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fb1bb5cc748adda_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fb1bb5cc748adda_0 new file mode 100644 index 000000000..95826a714 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fb1bb5cc748adda_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fc205db47128bf7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fc205db47128bf7_0 new file mode 100644 index 000000000..c2b8ab4e8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fc205db47128bf7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fd566864e725204_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fd566864e725204_0 new file mode 100644 index 000000000..e48f01006 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fd566864e725204_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fe59d4691d42dbc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fe59d4691d42dbc_0 new file mode 100644 index 000000000..5c576960e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fe59d4691d42dbc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fe8db9aaa073406_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fe8db9aaa073406_0 new file mode 100644 index 000000000..36956b51b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fe8db9aaa073406_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fe9d57b8df73da0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fe9d57b8df73da0_0 new file mode 100644 index 000000000..09d0aa6ce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fe9d57b8df73da0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fe9eb0b218acfc4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fe9eb0b218acfc4_0 new file mode 100644 index 000000000..bc773c74d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0fe9eb0b218acfc4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ff5cbbdbf0b9d9a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ff5cbbdbf0b9d9a_0 new file mode 100644 index 000000000..8f42af47d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ff5cbbdbf0b9d9a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ff9db55d0e2e0f4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ff9db55d0e2e0f4_0 new file mode 100644 index 000000000..88cecfa19 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ff9db55d0e2e0f4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ffb88c09f1ae43e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ffb88c09f1ae43e_0 new file mode 100644 index 000000000..68bbe9d25 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/0ffb88c09f1ae43e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/100be7e1b76bf38a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/100be7e1b76bf38a_0 new file mode 100644 index 000000000..68a6d4a6f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/100be7e1b76bf38a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1031fa92e99e9844_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1031fa92e99e9844_0 new file mode 100644 index 000000000..52ec47251 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1031fa92e99e9844_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1050dca3de61d63f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1050dca3de61d63f_0 new file mode 100644 index 000000000..221d219bc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1050dca3de61d63f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/105f5b88f0c65b8a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/105f5b88f0c65b8a_0 index 69fe5975f..d77dafeaf 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/105f5b88f0c65b8a_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/105f5b88f0c65b8a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/107ab6b23417de64_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/107ab6b23417de64_0 new file mode 100644 index 000000000..7795d1804 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/107ab6b23417de64_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/107baa64d7e84a07_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/107baa64d7e84a07_0 new file mode 100644 index 000000000..a0a62bf39 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/107baa64d7e84a07_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/107c5824db1f88f2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/107c5824db1f88f2_0 new file mode 100644 index 000000000..95be3862e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/107c5824db1f88f2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1080a6eaba7df50e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1080a6eaba7df50e_0 new file mode 100644 index 000000000..7a102a4b7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1080a6eaba7df50e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1081490623666bb2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1081490623666bb2_0 new file mode 100644 index 000000000..d5a726403 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1081490623666bb2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/108dc8c9de5919f4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/108dc8c9de5919f4_0 new file mode 100644 index 000000000..315a716fa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/108dc8c9de5919f4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/10aa6879f6517a10_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/10aa6879f6517a10_0 new file mode 100644 index 000000000..e1645c006 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/10aa6879f6517a10_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/10b16cb2b4c9fce3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/10b16cb2b4c9fce3_0 new file mode 100644 index 000000000..aac2def01 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/10b16cb2b4c9fce3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/10bad6753c98f3a6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/10bad6753c98f3a6_0 new file mode 100644 index 000000000..31eb97bf4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/10bad6753c98f3a6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/10d060e5179fc236_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/10d060e5179fc236_0 new file mode 100644 index 000000000..1ef275c10 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/10d060e5179fc236_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/10d29aec0ccb297f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/10d29aec0ccb297f_0 new file mode 100644 index 000000000..11989e2eb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/10d29aec0ccb297f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/10d50f0e5eb3d987_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/10d50f0e5eb3d987_0 new file mode 100644 index 000000000..485fb12f9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/10d50f0e5eb3d987_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/10f4a490bba706d6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/10f4a490bba706d6_0 new file mode 100644 index 000000000..77bf3c4db Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/10f4a490bba706d6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/11003d68efd2c2eb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11003d68efd2c2eb_0 new file mode 100644 index 000000000..b27290961 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11003d68efd2c2eb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/110a6f475b053c4b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/110a6f475b053c4b_0 new file mode 100644 index 000000000..cc2d3cbbe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/110a6f475b053c4b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/110a7aea74ae72a7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/110a7aea74ae72a7_0 new file mode 100644 index 000000000..a2e85576b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/110a7aea74ae72a7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/11156be9093359cb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11156be9093359cb_0 new file mode 100644 index 000000000..ab514f03d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11156be9093359cb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1120fa13c09eef9e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1120fa13c09eef9e_0 new file mode 100644 index 000000000..ee6d51b32 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1120fa13c09eef9e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1129b1e6322e6c44_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1129b1e6322e6c44_0 new file mode 100644 index 000000000..7a19e707d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1129b1e6322e6c44_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1139f56976d7f558_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1139f56976d7f558_0 new file mode 100644 index 000000000..2bc70df59 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1139f56976d7f558_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1149d15bdda1ebf7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1149d15bdda1ebf7_0 new file mode 100644 index 000000000..64bff61f2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1149d15bdda1ebf7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/11624264fc06f0cb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11624264fc06f0cb_0 new file mode 100644 index 000000000..38f906feb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11624264fc06f0cb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/117efa715a0e3a43_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/117efa715a0e3a43_0 new file mode 100644 index 000000000..b27b420c5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/117efa715a0e3a43_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/11845a61d1768ebc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11845a61d1768ebc_0 new file mode 100644 index 000000000..b70f3ad66 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11845a61d1768ebc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/11977dd29e62eb95_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11977dd29e62eb95_0 new file mode 100644 index 000000000..15df70c5e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11977dd29e62eb95_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/119e06a483a8e699_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/119e06a483a8e699_0 new file mode 100644 index 000000000..bb8d3e988 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/119e06a483a8e699_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/11abd3f53cebab7b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11abd3f53cebab7b_0 new file mode 100644 index 000000000..3ba0d486e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11abd3f53cebab7b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/11ad6d1d80c9cf54_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11ad6d1d80c9cf54_0 new file mode 100644 index 000000000..1113a049a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11ad6d1d80c9cf54_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/11addd0649f649d0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11addd0649f649d0_0 new file mode 100644 index 000000000..09940dd11 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11addd0649f649d0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/11d02f972ee35e59_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11d02f972ee35e59_0 new file mode 100644 index 000000000..4687f863d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11d02f972ee35e59_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/11d5db541c58bfeb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11d5db541c58bfeb_0 new file mode 100644 index 000000000..4a3e605c4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11d5db541c58bfeb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/11f7d4e0f10388f8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11f7d4e0f10388f8_0 new file mode 100644 index 000000000..9c044d1fa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11f7d4e0f10388f8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/11fa573ca539fe2d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11fa573ca539fe2d_0 new file mode 100644 index 000000000..2ce24c5d0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/11fa573ca539fe2d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1200112159fc5e86_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1200112159fc5e86_0 new file mode 100644 index 000000000..3da8fd006 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1200112159fc5e86_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/12066d75408b9e9a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12066d75408b9e9a_0 new file mode 100644 index 000000000..ab1e8e6bc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12066d75408b9e9a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1217779b5a173f5f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1217779b5a173f5f_0 new file mode 100644 index 000000000..4250e07b5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1217779b5a173f5f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1246b326883ebe02_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1246b326883ebe02_0 new file mode 100644 index 000000000..ad8c0f5d2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1246b326883ebe02_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/125b9a159b3769db_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/125b9a159b3769db_0 index 6f1492575..484d10c7c 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/125b9a159b3769db_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/125b9a159b3769db_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/125d2103e617dfb7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/125d2103e617dfb7_0 new file mode 100644 index 000000000..eb5fb1391 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/125d2103e617dfb7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/12738a00b9ae4eba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12738a00b9ae4eba_0 new file mode 100644 index 000000000..17b3a608c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12738a00b9ae4eba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/127919a02acd21a8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/127919a02acd21a8_0 new file mode 100644 index 000000000..fff4bd3e2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/127919a02acd21a8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/127cd07857fb80e3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/127cd07857fb80e3_0 new file mode 100644 index 000000000..4aecc2bc6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/127cd07857fb80e3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/12850430ea9bad4d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12850430ea9bad4d_0 new file mode 100644 index 000000000..33bf276b0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12850430ea9bad4d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1293f6effcca0a94_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1293f6effcca0a94_0 new file mode 100644 index 000000000..b617ab126 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1293f6effcca0a94_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/12a47478415bbe47_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12a47478415bbe47_0 new file mode 100644 index 000000000..7427c2ed4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12a47478415bbe47_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/12ba8527af509195_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12ba8527af509195_0 new file mode 100644 index 000000000..723757420 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12ba8527af509195_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/12e847d4327207b7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12e847d4327207b7_0 new file mode 100644 index 000000000..bfa95d6ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12e847d4327207b7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/12ecbf8dd7531e43_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12ecbf8dd7531e43_0 new file mode 100644 index 000000000..b6ae92ce2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12ecbf8dd7531e43_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/12ed6afb1cd8dd86_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12ed6afb1cd8dd86_0 new file mode 100644 index 000000000..06b8a00c8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12ed6afb1cd8dd86_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/12ed6e0c7d56a241_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12ed6e0c7d56a241_0 index d0cef8eb3..31bcb3650 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/12ed6e0c7d56a241_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12ed6e0c7d56a241_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/12fef6790ec241f8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12fef6790ec241f8_0 new file mode 100644 index 000000000..f79470ea9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/12fef6790ec241f8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/132992a273a77507_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/132992a273a77507_0 new file mode 100644 index 000000000..e0d0f4a5c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/132992a273a77507_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/133b6dfd5aa0eca8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/133b6dfd5aa0eca8_0 new file mode 100644 index 000000000..d7204bb12 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/133b6dfd5aa0eca8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1353655658fc3e40_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1353655658fc3e40_0 new file mode 100644 index 000000000..cd3b2caa3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1353655658fc3e40_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/13538da5cd7d2ac2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/13538da5cd7d2ac2_0 new file mode 100644 index 000000000..e54eea8c4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/13538da5cd7d2ac2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1364ac157ddf7796_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1364ac157ddf7796_0 new file mode 100644 index 000000000..48ccc6a0a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1364ac157ddf7796_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1365ccac9efa849f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1365ccac9efa849f_0 new file mode 100644 index 000000000..742e47ac8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1365ccac9efa849f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/136b6515b757e8c6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/136b6515b757e8c6_0 new file mode 100644 index 000000000..242c2152a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/136b6515b757e8c6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1386ec41f85dadf8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1386ec41f85dadf8_0 new file mode 100644 index 000000000..2879887d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1386ec41f85dadf8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/139427f4c0dab825_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/139427f4c0dab825_0 new file mode 100644 index 000000000..cc5e42841 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/139427f4c0dab825_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/139b3d5421f38fc3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/139b3d5421f38fc3_0 new file mode 100644 index 000000000..33401ec64 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/139b3d5421f38fc3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/13a247ca51f59ca0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/13a247ca51f59ca0_0 new file mode 100644 index 000000000..b60407bfd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/13a247ca51f59ca0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/13aeee951297b727_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/13aeee951297b727_0 new file mode 100644 index 000000000..6638cfd4e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/13aeee951297b727_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/13b19329e306c6e1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/13b19329e306c6e1_0 new file mode 100644 index 000000000..9a1858127 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/13b19329e306c6e1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/13bc0b703b4fa8e0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/13bc0b703b4fa8e0_0 new file mode 100644 index 000000000..d1532097d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/13bc0b703b4fa8e0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/13dc8efed1acaeef_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/13dc8efed1acaeef_0 new file mode 100644 index 000000000..0aefbb4cf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/13dc8efed1acaeef_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/13e4247a4f3f9697_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/13e4247a4f3f9697_0 new file mode 100644 index 000000000..a1fb2ea26 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/13e4247a4f3f9697_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/13feb4c54f18cff2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/13feb4c54f18cff2_0 new file mode 100644 index 000000000..a14c3663f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/13feb4c54f18cff2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/14170a4f45a427dd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14170a4f45a427dd_0 new file mode 100644 index 000000000..851cba467 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14170a4f45a427dd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1417c9306ebfbc84_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1417c9306ebfbc84_0 new file mode 100644 index 000000000..e2e9e2f46 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1417c9306ebfbc84_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/141acadffe7bc188_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/141acadffe7bc188_0 new file mode 100644 index 000000000..4eda9dc93 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/141acadffe7bc188_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1425804b8b5aea9f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1425804b8b5aea9f_0 new file mode 100644 index 000000000..cf692b3a2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1425804b8b5aea9f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/143054e7659f03f9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/143054e7659f03f9_0 new file mode 100644 index 000000000..d36fe3101 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/143054e7659f03f9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/144f50bf602c33bc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/144f50bf602c33bc_0 new file mode 100644 index 000000000..844d6f09a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/144f50bf602c33bc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/146af5c1aae63e32_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/146af5c1aae63e32_0 new file mode 100644 index 000000000..1a420830e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/146af5c1aae63e32_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/14705696079915bd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14705696079915bd_0 new file mode 100644 index 000000000..0780533cf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14705696079915bd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1480c07f456e572b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1480c07f456e572b_0 new file mode 100644 index 000000000..7f460fc50 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1480c07f456e572b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1486bf69e4deccd6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1486bf69e4deccd6_0 new file mode 100644 index 000000000..61ca7ba5d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1486bf69e4deccd6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/148a770e6f1ca105_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/148a770e6f1ca105_0 new file mode 100644 index 000000000..0fc6c6e69 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/148a770e6f1ca105_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1493d30db9e01eb6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1493d30db9e01eb6_0 new file mode 100644 index 000000000..103d40ec3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1493d30db9e01eb6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1494395ab90780b7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1494395ab90780b7_0 new file mode 100644 index 000000000..456555af3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1494395ab90780b7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/14a72cc1abf7d373_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14a72cc1abf7d373_0 new file mode 100644 index 000000000..3e46fa28c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14a72cc1abf7d373_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/14ac531247e73ae5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14ac531247e73ae5_0 new file mode 100644 index 000000000..2844f6826 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14ac531247e73ae5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/14af3f55a4a8681e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14af3f55a4a8681e_0 index 9066eb2bc..7c3781864 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/14af3f55a4a8681e_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14af3f55a4a8681e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/14b6b66948f52665_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14b6b66948f52665_0 new file mode 100644 index 000000000..683c897b1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14b6b66948f52665_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/14b951df9187a93a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14b951df9187a93a_0 new file mode 100644 index 000000000..4908ad738 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14b951df9187a93a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/14c7619ffb957938_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14c7619ffb957938_0 new file mode 100644 index 000000000..1c8ddbc60 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14c7619ffb957938_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/14d45c991355aa6d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14d45c991355aa6d_0 new file mode 100644 index 000000000..164c08d9b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14d45c991355aa6d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/14d5287ae8efcb9e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14d5287ae8efcb9e_0 new file mode 100644 index 000000000..b093510b2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14d5287ae8efcb9e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/14d6f9d76977e356_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14d6f9d76977e356_0 new file mode 100644 index 000000000..53a72827f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14d6f9d76977e356_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/14f311dc0e4855d0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14f311dc0e4855d0_0 new file mode 100644 index 000000000..5cad933a8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14f311dc0e4855d0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/14fad0c167fc669a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14fad0c167fc669a_0 new file mode 100644 index 000000000..23d2157cf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14fad0c167fc669a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/14fe48c0199ce8e8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14fe48c0199ce8e8_0 new file mode 100644 index 000000000..1d9592531 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/14fe48c0199ce8e8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1507eac37f9d59a9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1507eac37f9d59a9_0 new file mode 100644 index 000000000..84ef57481 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1507eac37f9d59a9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/150a018f9f6ad5d2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/150a018f9f6ad5d2_0 new file mode 100644 index 000000000..6188b8552 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/150a018f9f6ad5d2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/15145040f7f12f31_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15145040f7f12f31_0 index 6d50f0591..5211b6a07 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/15145040f7f12f31_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15145040f7f12f31_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/153e82a8ddaa5081_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/153e82a8ddaa5081_0 new file mode 100644 index 000000000..1f2cad81d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/153e82a8ddaa5081_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/15440d6ffa66c67b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15440d6ffa66c67b_0 new file mode 100644 index 000000000..3e48fac83 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15440d6ffa66c67b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/154cbe89e7c694d3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/154cbe89e7c694d3_0 new file mode 100644 index 000000000..60e723f05 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/154cbe89e7c694d3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/15573745e0d62d19_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15573745e0d62d19_0 new file mode 100644 index 000000000..af227e17b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15573745e0d62d19_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/155ab855c52790f3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/155ab855c52790f3_0 new file mode 100644 index 000000000..a6f78a87c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/155ab855c52790f3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/15618393354f30dc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15618393354f30dc_0 new file mode 100644 index 000000000..bfe69a35a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15618393354f30dc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/156b799bccb32cb0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/156b799bccb32cb0_0 new file mode 100644 index 000000000..0d491308a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/156b799bccb32cb0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/15778feb042f495b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15778feb042f495b_0 new file mode 100644 index 000000000..4d099efe5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15778feb042f495b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/158e3fc27718ff34_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/158e3fc27718ff34_0 new file mode 100644 index 000000000..f1cf6c7ea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/158e3fc27718ff34_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/159ec64338a10efa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/159ec64338a10efa_0 new file mode 100644 index 000000000..23919b0e2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/159ec64338a10efa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/15af6fcd84bd1513_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15af6fcd84bd1513_0 new file mode 100644 index 000000000..c6f1dc259 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15af6fcd84bd1513_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/15b0a72e771fba2b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15b0a72e771fba2b_0 new file mode 100644 index 000000000..18d151e14 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15b0a72e771fba2b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/15b2c1a9bf3f59e5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15b2c1a9bf3f59e5_0 new file mode 100644 index 000000000..1397e1814 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15b2c1a9bf3f59e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/15b2fc99bcc8ea55_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15b2fc99bcc8ea55_0 index 3dd5b460a..1ca746aad 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/15b2fc99bcc8ea55_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15b2fc99bcc8ea55_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/15c61b8db32ef588_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15c61b8db32ef588_0 new file mode 100644 index 000000000..093ac6dd1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15c61b8db32ef588_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/15f71642baf04f9a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15f71642baf04f9a_0 new file mode 100644 index 000000000..86c11741f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/15f71642baf04f9a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/16090023a1032de0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/16090023a1032de0_0 new file mode 100644 index 000000000..7ad5b39fc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/16090023a1032de0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1616717b06887576_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1616717b06887576_0 new file mode 100644 index 000000000..d6cf59f67 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1616717b06887576_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/161a5fe9f45c1667_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/161a5fe9f45c1667_0 new file mode 100644 index 000000000..521a8622d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/161a5fe9f45c1667_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/162c2d752c5f53bb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/162c2d752c5f53bb_0 new file mode 100644 index 000000000..e74c00717 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/162c2d752c5f53bb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1636ba3bec93b94d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1636ba3bec93b94d_0 new file mode 100644 index 000000000..5a47f7b3c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1636ba3bec93b94d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/16597726dae94cad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/16597726dae94cad_0 new file mode 100644 index 000000000..2622e9634 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/16597726dae94cad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1662f3940bf7025b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1662f3940bf7025b_0 index 0e7783d67..2f124cbef 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1662f3940bf7025b_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1662f3940bf7025b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1663a9f344c52c6c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1663a9f344c52c6c_0 new file mode 100644 index 000000000..b37f25897 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1663a9f344c52c6c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/166cbe6abfe4b1ca_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/166cbe6abfe4b1ca_0 new file mode 100644 index 000000000..0964eb589 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/166cbe6abfe4b1ca_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/167adbcbf936c3a7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/167adbcbf936c3a7_0 new file mode 100644 index 000000000..a5ffba70f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/167adbcbf936c3a7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1693d59fbf97323c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1693d59fbf97323c_0 new file mode 100644 index 000000000..a4551236c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1693d59fbf97323c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/16964745fd9c8946_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/16964745fd9c8946_0 new file mode 100644 index 000000000..d8f2d00f6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/16964745fd9c8946_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/16995e0a66389447_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/16995e0a66389447_0 new file mode 100644 index 000000000..699368bd8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/16995e0a66389447_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/16a6f66be1d9dde8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/16a6f66be1d9dde8_0 new file mode 100644 index 000000000..e71e10226 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/16a6f66be1d9dde8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/16c5177b3499ffc5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/16c5177b3499ffc5_0 new file mode 100644 index 000000000..b35095045 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/16c5177b3499ffc5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/16cc85b1cd708791_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/16cc85b1cd708791_0 new file mode 100644 index 000000000..e498dfb5b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/16cc85b1cd708791_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/16cd261a10296a9c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/16cd261a10296a9c_0 new file mode 100644 index 000000000..2fa63ec94 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/16cd261a10296a9c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/171774650818b263_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/171774650818b263_0 new file mode 100644 index 000000000..85f007c5b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/171774650818b263_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/172653e84b53f213_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/172653e84b53f213_0 new file mode 100644 index 000000000..2f36a158a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/172653e84b53f213_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/17463c9cef25eb81_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/17463c9cef25eb81_0 new file mode 100644 index 000000000..46a0c98d2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/17463c9cef25eb81_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1748872e024c8e62_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1748872e024c8e62_0 new file mode 100644 index 000000000..220365f1d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1748872e024c8e62_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/174e0411c1ad4d5a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/174e0411c1ad4d5a_0 new file mode 100644 index 000000000..dff340835 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/174e0411c1ad4d5a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/175f14b4840f9c66_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/175f14b4840f9c66_0 new file mode 100644 index 000000000..0edfdf6b7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/175f14b4840f9c66_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1775e2f69771b325_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1775e2f69771b325_0 new file mode 100644 index 000000000..6c7b35204 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1775e2f69771b325_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/17910cb917a87411_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/17910cb917a87411_0 new file mode 100644 index 000000000..844458617 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/17910cb917a87411_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/17bc5ba693e2a1de_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/17bc5ba693e2a1de_0 new file mode 100644 index 000000000..c518507c9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/17bc5ba693e2a1de_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/17e545d07098210e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/17e545d07098210e_0 new file mode 100644 index 000000000..c3236b2ec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/17e545d07098210e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/17f0d76ca7e84cab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/17f0d76ca7e84cab_0 new file mode 100644 index 000000000..ffc82945f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/17f0d76ca7e84cab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1808b6b27ed6704d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1808b6b27ed6704d_0 new file mode 100644 index 000000000..87a4e523a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1808b6b27ed6704d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/18200b7a03838558_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/18200b7a03838558_0 new file mode 100644 index 000000000..93400dc35 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/18200b7a03838558_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/184716703a9ebcc0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/184716703a9ebcc0_0 index 828dc19e6..f0f63a15e 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/184716703a9ebcc0_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/184716703a9ebcc0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/185358b4be1fdd41_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/185358b4be1fdd41_0 index 3cc700580..895325d67 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/185358b4be1fdd41_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/185358b4be1fdd41_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1853e3754d83f839_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1853e3754d83f839_0 new file mode 100644 index 000000000..caaf3185f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1853e3754d83f839_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1876fd5f3dd0d004_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1876fd5f3dd0d004_0 new file mode 100644 index 000000000..8665e03e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1876fd5f3dd0d004_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1882d3d1219ae066_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1882d3d1219ae066_0 new file mode 100644 index 000000000..a763809cf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1882d3d1219ae066_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/18a3cdf5afcaf682_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/18a3cdf5afcaf682_0 new file mode 100644 index 000000000..5d7534a13 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/18a3cdf5afcaf682_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/18bd635fd9a15851_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/18bd635fd9a15851_0 new file mode 100644 index 000000000..16bbb7dc9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/18bd635fd9a15851_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/18d578851ce92ffc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/18d578851ce92ffc_0 new file mode 100644 index 000000000..4379c25ae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/18d578851ce92ffc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/18ec6d09e6fd9f7e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/18ec6d09e6fd9f7e_0 new file mode 100644 index 000000000..1b1c30e59 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/18ec6d09e6fd9f7e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/18f79a80522413f8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/18f79a80522413f8_0 new file mode 100644 index 000000000..582407926 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/18f79a80522413f8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/18fcad1113246145_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/18fcad1113246145_0 new file mode 100644 index 000000000..5f4774448 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/18fcad1113246145_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/18fd152380652d57_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/18fd152380652d57_0 new file mode 100644 index 000000000..bd97efcea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/18fd152380652d57_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1912fee9a99da644_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1912fee9a99da644_0 new file mode 100644 index 000000000..bd71d4bda Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1912fee9a99da644_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/19176b3121ee72ea_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/19176b3121ee72ea_0 new file mode 100644 index 000000000..85e421b69 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/19176b3121ee72ea_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/192547b07ea7bbc7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/192547b07ea7bbc7_0 new file mode 100644 index 000000000..942ac274c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/192547b07ea7bbc7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/194b08a88fcfdb2a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/194b08a88fcfdb2a_0 new file mode 100644 index 000000000..49a3e27cd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/194b08a88fcfdb2a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1957357d7c51c5e7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1957357d7c51c5e7_0 new file mode 100644 index 000000000..4788acfc2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1957357d7c51c5e7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/196244a642525dff_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/196244a642525dff_0 new file mode 100644 index 000000000..297726562 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/196244a642525dff_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/196abba5b9bf1357_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/196abba5b9bf1357_0 new file mode 100644 index 000000000..0b49b4465 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/196abba5b9bf1357_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/196e4ad818381e28_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/196e4ad818381e28_0 new file mode 100644 index 000000000..c862fa13a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/196e4ad818381e28_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1976de327d50ac7c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1976de327d50ac7c_0 new file mode 100644 index 000000000..a1448ef9b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1976de327d50ac7c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/197c5360ffd67714_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/197c5360ffd67714_0 new file mode 100644 index 000000000..cf9424bbe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/197c5360ffd67714_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1997fda1b31ba257_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1997fda1b31ba257_0 new file mode 100644 index 000000000..7e8fcc7c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1997fda1b31ba257_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/19a27539a6a4bbe7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/19a27539a6a4bbe7_0 new file mode 100644 index 000000000..d5c549278 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/19a27539a6a4bbe7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/19b8b0f9a52de765_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/19b8b0f9a52de765_0 new file mode 100644 index 000000000..ac0979b13 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/19b8b0f9a52de765_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/19e60b46e81cb47f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/19e60b46e81cb47f_0 new file mode 100644 index 000000000..c6fa1eb1f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/19e60b46e81cb47f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/19eb696bd5a79ef2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/19eb696bd5a79ef2_0 new file mode 100644 index 000000000..0ba442247 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/19eb696bd5a79ef2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/19f6de1db8a34f01_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/19f6de1db8a34f01_0 new file mode 100644 index 000000000..d120229b1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/19f6de1db8a34f01_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a1e30f04ebfed69_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a1e30f04ebfed69_0 new file mode 100644 index 000000000..7c67bbb9e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a1e30f04ebfed69_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a4153ff5250d24b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a4153ff5250d24b_0 new file mode 100644 index 000000000..974b96665 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a4153ff5250d24b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a4432520e67f431_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a4432520e67f431_0 new file mode 100644 index 000000000..83f4cdee0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a4432520e67f431_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a44e985f6b59a38_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a44e985f6b59a38_0 index d01bac3a6..f2e60cf47 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a44e985f6b59a38_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a44e985f6b59a38_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a4a5bcf2b3ce08b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a4a5bcf2b3ce08b_0 index 511fa121c..5cd155251 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a4a5bcf2b3ce08b_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a4a5bcf2b3ce08b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a4ea73047ce7092_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a4ea73047ce7092_0 new file mode 100644 index 000000000..40056b4f1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a4ea73047ce7092_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a56e99c594fc35c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a56e99c594fc35c_0 new file mode 100644 index 000000000..1655c7d56 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a56e99c594fc35c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a6e2d625e633d01_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a6e2d625e633d01_0 new file mode 100644 index 000000000..4d1ce891c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a6e2d625e633d01_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a6f5bda4b5636e3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a6f5bda4b5636e3_0 new file mode 100644 index 000000000..f51d7bab1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a6f5bda4b5636e3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a9ca9e79d99883c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a9ca9e79d99883c_0 new file mode 100644 index 000000000..993def732 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a9ca9e79d99883c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a9e1cc73371b492_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a9e1cc73371b492_0 new file mode 100644 index 000000000..4333ea4c9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1a9e1cc73371b492_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1aa77c9ae301e713_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1aa77c9ae301e713_0 new file mode 100644 index 000000000..39b0055e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1aa77c9ae301e713_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1aae360dd5c44b21_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1aae360dd5c44b21_0 new file mode 100644 index 000000000..4b59fff32 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1aae360dd5c44b21_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ab0ed6ab310318c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ab0ed6ab310318c_0 new file mode 100644 index 000000000..da84e181a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ab0ed6ab310318c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ace7b89a2042bde_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ace7b89a2042bde_0 index 189b9f603..55b613a5b 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ace7b89a2042bde_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ace7b89a2042bde_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ae4cb328142754d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ae4cb328142754d_0 new file mode 100644 index 000000000..efb531bc0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ae4cb328142754d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b00b120879f922a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b00b120879f922a_0 new file mode 100644 index 000000000..3dcffba7a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b00b120879f922a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b01c2e99643f64a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b01c2e99643f64a_0 new file mode 100644 index 000000000..05420a9c7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b01c2e99643f64a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b0c5328b2886b27_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b0c5328b2886b27_0 new file mode 100644 index 000000000..67c029473 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b0c5328b2886b27_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b11b5c92ce6db3d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b11b5c92ce6db3d_0 new file mode 100644 index 000000000..cdd14c837 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b11b5c92ce6db3d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b1e62dc3dec55c5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b1e62dc3dec55c5_0 new file mode 100644 index 000000000..00cb70c0e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b1e62dc3dec55c5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b1f81642fb93c30_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b1f81642fb93c30_0 new file mode 100644 index 000000000..5012014f9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b1f81642fb93c30_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b21053c9c32f611_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b21053c9c32f611_0 new file mode 100644 index 000000000..68bdc6c6a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b21053c9c32f611_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b2f1374d1edeb42_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b2f1374d1edeb42_0 new file mode 100644 index 000000000..e66d00965 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b2f1374d1edeb42_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b3705269d1ff890_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b3705269d1ff890_0 new file mode 100644 index 000000000..21b621c06 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b3705269d1ff890_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b3969a6fe3f86dd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b3969a6fe3f86dd_0 new file mode 100644 index 000000000..b8165c0d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b3969a6fe3f86dd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b49d544b666d445_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b49d544b666d445_0 new file mode 100644 index 000000000..5a8cd526a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b49d544b666d445_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b6aea2bb4a4ba8d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b6aea2bb4a4ba8d_0 new file mode 100644 index 000000000..e15017691 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b6aea2bb4a4ba8d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b6e56a061b2bb10_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b6e56a061b2bb10_0 new file mode 100644 index 000000000..1953b12c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b6e56a061b2bb10_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b6eaa256b5dc270_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b6eaa256b5dc270_0 new file mode 100644 index 000000000..a1b7a431c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b6eaa256b5dc270_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b71b795bc2b5b62_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b71b795bc2b5b62_0 new file mode 100644 index 000000000..c9044165a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b71b795bc2b5b62_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b75b051c2f3c8b2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b75b051c2f3c8b2_0 new file mode 100644 index 000000000..69dc76dda Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b75b051c2f3c8b2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b95edaf5eca5667_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b95edaf5eca5667_0 new file mode 100644 index 000000000..90ad3e0c0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1b95edaf5eca5667_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1bb0a2133fce99ff_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1bb0a2133fce99ff_0 new file mode 100644 index 000000000..58f7c5766 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1bb0a2133fce99ff_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1bb4e686e163ad07_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1bb4e686e163ad07_0 new file mode 100644 index 000000000..e3d078942 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1bb4e686e163ad07_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1bbe5faaef0dc6c8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1bbe5faaef0dc6c8_0 new file mode 100644 index 000000000..95a089847 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1bbe5faaef0dc6c8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1bc46d8cb9de42dc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1bc46d8cb9de42dc_0 new file mode 100644 index 000000000..290fce07a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1bc46d8cb9de42dc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1bc66fe07cb37f9c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1bc66fe07cb37f9c_0 new file mode 100644 index 000000000..74d3d8fa9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1bc66fe07cb37f9c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1bdf3f552b307182_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1bdf3f552b307182_0 new file mode 100644 index 000000000..4f6b9a4e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1bdf3f552b307182_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1beebb334f58d69c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1beebb334f58d69c_0 new file mode 100644 index 000000000..377af9353 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1beebb334f58d69c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c068ec0f57a8731_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c068ec0f57a8731_0 new file mode 100644 index 000000000..b11d7ac63 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c068ec0f57a8731_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c197ed7a905ac43_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c197ed7a905ac43_0 new file mode 100644 index 000000000..29b163d7d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c197ed7a905ac43_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c1cb0127d5fbcd0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c1cb0127d5fbcd0_0 new file mode 100644 index 000000000..8cab53cdf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c1cb0127d5fbcd0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c2fe883374a707f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c2fe883374a707f_0 new file mode 100644 index 000000000..894e1aa8d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c2fe883374a707f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c4ab237ff818a51_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c4ab237ff818a51_0 new file mode 100644 index 000000000..069c9d53a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c4ab237ff818a51_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c5344ca05e37840_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c5344ca05e37840_0 new file mode 100644 index 000000000..821407528 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c5344ca05e37840_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c654ef246c3337b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c654ef246c3337b_0 new file mode 100644 index 000000000..1d2768c72 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c654ef246c3337b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c81cc1c915528f7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c81cc1c915528f7_0 new file mode 100644 index 000000000..632f50aa4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c81cc1c915528f7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c83a0c064cf3c5f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c83a0c064cf3c5f_0 new file mode 100644 index 000000000..4554543aa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c83a0c064cf3c5f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c8e9e1ecca503d9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c8e9e1ecca503d9_0 new file mode 100644 index 000000000..db8dc744a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1c8e9e1ecca503d9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1cab4e25e89491be_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1cab4e25e89491be_0 new file mode 100644 index 000000000..eb80e601f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1cab4e25e89491be_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1cafb124fc3e838f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1cafb124fc3e838f_0 new file mode 100644 index 000000000..a68568e4f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1cafb124fc3e838f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1cb92ec69f043e61_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1cb92ec69f043e61_0 new file mode 100644 index 000000000..9c87199fa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1cb92ec69f043e61_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ce45c7880007bfa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ce45c7880007bfa_0 new file mode 100644 index 000000000..332d203d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ce45c7880007bfa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ce533a48c4ef7aa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ce533a48c4ef7aa_0 new file mode 100644 index 000000000..dd3e7c03e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ce533a48c4ef7aa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d04c6d5483fee19_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d04c6d5483fee19_0 new file mode 100644 index 000000000..aae395bcf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d04c6d5483fee19_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d056b8ab02144a8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d056b8ab02144a8_0 new file mode 100644 index 000000000..0d8224cdc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d056b8ab02144a8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d05c7dbfa343d1d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d05c7dbfa343d1d_0 new file mode 100644 index 000000000..65eccd958 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d05c7dbfa343d1d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d062ee68473be67_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d062ee68473be67_0 new file mode 100644 index 000000000..c76601808 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d062ee68473be67_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d13f5616c4fb80b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d13f5616c4fb80b_0 new file mode 100644 index 000000000..6a233006b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d13f5616c4fb80b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d1eaae5eabd0b94_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d1eaae5eabd0b94_0 new file mode 100644 index 000000000..363c0a431 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d1eaae5eabd0b94_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d323b71b3bc1d89_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d323b71b3bc1d89_0 new file mode 100644 index 000000000..65536db1b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d323b71b3bc1d89_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d33c05b3c77879f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d33c05b3c77879f_0 new file mode 100644 index 000000000..24710d138 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d33c05b3c77879f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d4538d8e4a108ba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d4538d8e4a108ba_0 new file mode 100644 index 000000000..e8687533d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d4538d8e4a108ba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d4daa552b367669_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d4daa552b367669_0 new file mode 100644 index 000000000..95a7f9020 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d4daa552b367669_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d52b1d3348999f3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d52b1d3348999f3_0 new file mode 100644 index 000000000..1de88388e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d52b1d3348999f3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d698b6f1ec79488_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d698b6f1ec79488_0 new file mode 100644 index 000000000..daa8bac91 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d698b6f1ec79488_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d6d1b62821e0da7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d6d1b62821e0da7_0 new file mode 100644 index 000000000..a4bcdfcfc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d6d1b62821e0da7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d820a7102d8a7fd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d820a7102d8a7fd_0 new file mode 100644 index 000000000..a9d56b435 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d820a7102d8a7fd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d837017b4020a47_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d837017b4020a47_0 new file mode 100644 index 000000000..316be582a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d837017b4020a47_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d9352df364c9abd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d9352df364c9abd_0 new file mode 100644 index 000000000..d031457fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d9352df364c9abd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d95b98d2cdfaba6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d95b98d2cdfaba6_0 index fc7a32839..958540d98 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d95b98d2cdfaba6_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d95b98d2cdfaba6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d95bcae93b89cab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d95bcae93b89cab_0 new file mode 100644 index 000000000..c432b5531 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1d95bcae93b89cab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1da91fff61034edf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1da91fff61034edf_0 new file mode 100644 index 000000000..0bdd74b92 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1da91fff61034edf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1daa4e964fa72d62_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1daa4e964fa72d62_0 new file mode 100644 index 000000000..3b50a9e21 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1daa4e964fa72d62_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1dbdec92812430ca_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1dbdec92812430ca_0 new file mode 100644 index 000000000..ec1488446 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1dbdec92812430ca_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1de44cfdb7b33d80_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1de44cfdb7b33d80_0 new file mode 100644 index 000000000..9633029b5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1de44cfdb7b33d80_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1df05f6b61b64fa4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1df05f6b61b64fa4_0 new file mode 100644 index 000000000..b4909b7c8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1df05f6b61b64fa4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e33f8e7c1dccd25_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e33f8e7c1dccd25_0 new file mode 100644 index 000000000..6a2c66a4d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e33f8e7c1dccd25_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e462ea509d7a7ed_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e462ea509d7a7ed_0 new file mode 100644 index 000000000..e81631f7e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e462ea509d7a7ed_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e4ce631aacc5764_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e4ce631aacc5764_0 new file mode 100644 index 000000000..cc2c6cf22 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e4ce631aacc5764_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e645a359bee0dd3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e645a359bee0dd3_0 new file mode 100644 index 000000000..a3d8d3500 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e645a359bee0dd3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e816e9b72ed8279_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e816e9b72ed8279_0 new file mode 100644 index 000000000..3931a5c36 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e816e9b72ed8279_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e8b2d899bbdac38_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e8b2d899bbdac38_0 new file mode 100644 index 000000000..daf2a6f6a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e8b2d899bbdac38_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e9b80f311e6c372_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e9b80f311e6c372_0 new file mode 100644 index 000000000..0d86dc597 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1e9b80f311e6c372_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1eb17cbc2f80113f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1eb17cbc2f80113f_0 new file mode 100644 index 000000000..b05448db8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1eb17cbc2f80113f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ed9e6410589466c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ed9e6410589466c_0 new file mode 100644 index 000000000..c6fcf8a9e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ed9e6410589466c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ef9cbe2f63cec5d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ef9cbe2f63cec5d_0 new file mode 100644 index 000000000..21fe0ea10 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ef9cbe2f63cec5d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f009c55ac7fe96b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f009c55ac7fe96b_0 new file mode 100644 index 000000000..0b3cf8a57 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f009c55ac7fe96b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f0722a11290ec88_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f0722a11290ec88_0 new file mode 100644 index 000000000..8280e10dd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f0722a11290ec88_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f12b1b9509f9ebd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f12b1b9509f9ebd_0 new file mode 100644 index 000000000..69633f6ff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f12b1b9509f9ebd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f15cac7e1b14c71_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f15cac7e1b14c71_0 new file mode 100644 index 000000000..2afa89c8e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f15cac7e1b14c71_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f34230cd61fc928_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f34230cd61fc928_0 new file mode 100644 index 000000000..e7130a167 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f34230cd61fc928_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f363e142bf2eaa9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f363e142bf2eaa9_0 index 5b021ca99..a5dc418ad 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f363e142bf2eaa9_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f363e142bf2eaa9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f438e056ad184b3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f438e056ad184b3_0 new file mode 100644 index 000000000..2d343919e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f438e056ad184b3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f4ccd313f907c10_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f4ccd313f907c10_0 new file mode 100644 index 000000000..186c3b579 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f4ccd313f907c10_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f57e15ca442d786_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f57e15ca442d786_0 new file mode 100644 index 000000000..9e33d758b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f57e15ca442d786_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f773ae9c6799de1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f773ae9c6799de1_0 new file mode 100644 index 000000000..3d30471ac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f773ae9c6799de1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f7dcca132821aa9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f7dcca132821aa9_0 new file mode 100644 index 000000000..61da6cfc4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f7dcca132821aa9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f8ac8b6c7e9396d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f8ac8b6c7e9396d_0 new file mode 100644 index 000000000..288af1acf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f8ac8b6c7e9396d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f8d55dab3b84279_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f8d55dab3b84279_0 new file mode 100644 index 000000000..b9c58740c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1f8d55dab3b84279_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1fa4f3e106b44716_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1fa4f3e106b44716_0 new file mode 100644 index 000000000..a776bb928 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1fa4f3e106b44716_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1fac644e76d9a888_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1fac644e76d9a888_0 new file mode 100644 index 000000000..d320e7e80 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1fac644e76d9a888_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1fade4d5b78ebf36_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1fade4d5b78ebf36_0 new file mode 100644 index 000000000..d36800355 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1fade4d5b78ebf36_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1fb73c794af2ed83_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1fb73c794af2ed83_0 new file mode 100644 index 000000000..2d7bd52c6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1fb73c794af2ed83_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1fb77f0c3f3f5e55_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1fb77f0c3f3f5e55_0 new file mode 100644 index 000000000..e0b8619a9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1fb77f0c3f3f5e55_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1fc7c91de71155d6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1fc7c91de71155d6_0 new file mode 100644 index 000000000..e61d51753 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1fc7c91de71155d6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ff3432661010da9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ff3432661010da9_0 new file mode 100644 index 000000000..c4983267c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ff3432661010da9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ff4fb029df3ebb3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ff4fb029df3ebb3_0 new file mode 100644 index 000000000..dd2fb4cc7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ff4fb029df3ebb3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ff72d254af7e95d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ff72d254af7e95d_0 new file mode 100644 index 000000000..d4a0aa818 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/1ff72d254af7e95d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/20078fc92a6f8e4d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/20078fc92a6f8e4d_0 new file mode 100644 index 000000000..4ef43b451 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/20078fc92a6f8e4d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/200a1acee07880af_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/200a1acee07880af_0 new file mode 100644 index 000000000..309cfc94d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/200a1acee07880af_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/200ebeb94d793d99_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/200ebeb94d793d99_0 new file mode 100644 index 000000000..171d0feb1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/200ebeb94d793d99_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/201468318d91f90f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/201468318d91f90f_0 new file mode 100644 index 000000000..e89bbca76 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/201468318d91f90f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2020ee64235f197f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2020ee64235f197f_0 new file mode 100644 index 000000000..01c7656c4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2020ee64235f197f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/20215373009147f9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/20215373009147f9_0 new file mode 100644 index 000000000..cd8388986 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/20215373009147f9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/20248abb66209a18_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/20248abb66209a18_0 new file mode 100644 index 000000000..3fc8e4615 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/20248abb66209a18_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/20278a66dab8c578_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/20278a66dab8c578_0 new file mode 100644 index 000000000..fc16e082c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/20278a66dab8c578_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/202a24cc93071902_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/202a24cc93071902_0 new file mode 100644 index 000000000..619283ac6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/202a24cc93071902_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/203145570ae63393_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/203145570ae63393_0 new file mode 100644 index 000000000..e03d522fb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/203145570ae63393_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/204948ef1e1fd38d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/204948ef1e1fd38d_0 new file mode 100644 index 000000000..e59d288aa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/204948ef1e1fd38d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2051c48babb5f386_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2051c48babb5f386_0 new file mode 100644 index 000000000..4adfc802e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2051c48babb5f386_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2064431ddc79d07c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2064431ddc79d07c_0 new file mode 100644 index 000000000..3c967da51 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2064431ddc79d07c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/207da461ea8f4d5f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/207da461ea8f4d5f_0 new file mode 100644 index 000000000..6769054dc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/207da461ea8f4d5f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/207dd5f4f45cd4e8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/207dd5f4f45cd4e8_0 new file mode 100644 index 000000000..c87fb9570 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/207dd5f4f45cd4e8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2088bfe3f4a5e514_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2088bfe3f4a5e514_0 new file mode 100644 index 000000000..b895c367b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2088bfe3f4a5e514_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/208b915ffa1dfc74_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/208b915ffa1dfc74_0 new file mode 100644 index 000000000..19f8297cc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/208b915ffa1dfc74_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/208c48b682477c27_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/208c48b682477c27_0 new file mode 100644 index 000000000..54f301c56 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/208c48b682477c27_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/20a4e8b199440186_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/20a4e8b199440186_0 new file mode 100644 index 000000000..2019a83b2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/20a4e8b199440186_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/20bf3946bae54a8f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/20bf3946bae54a8f_0 new file mode 100644 index 000000000..c70d18e99 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/20bf3946bae54a8f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/20c0d3196734f29b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/20c0d3196734f29b_0 new file mode 100644 index 000000000..d48f9a6c2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/20c0d3196734f29b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/20d02e086a61d06f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/20d02e086a61d06f_0 new file mode 100644 index 000000000..9efeaf6ba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/20d02e086a61d06f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/20d289016ec3c1e0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/20d289016ec3c1e0_0 new file mode 100644 index 000000000..9e892f05f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/20d289016ec3c1e0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/21098f534cbeda04_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/21098f534cbeda04_0 new file mode 100644 index 000000000..5ff93c3e2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/21098f534cbeda04_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/212c9640d2b37a19_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/212c9640d2b37a19_0 new file mode 100644 index 000000000..ad03b7fda Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/212c9640d2b37a19_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/21375b61e629f428_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/21375b61e629f428_0 index 0d3baa5c2..d7085c08d 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/21375b61e629f428_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/21375b61e629f428_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2151544a8c53c7bd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2151544a8c53c7bd_0 index d0f6999e7..0e1179a9e 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2151544a8c53c7bd_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2151544a8c53c7bd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2151addd1055f171_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2151addd1055f171_0 new file mode 100644 index 000000000..ff46e254e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2151addd1055f171_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/215f527f32623777_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/215f527f32623777_0 new file mode 100644 index 000000000..a47c446e8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/215f527f32623777_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/216935ef05cecb7b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/216935ef05cecb7b_0 new file mode 100644 index 000000000..9df712457 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/216935ef05cecb7b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/219f191aa131f6a7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/219f191aa131f6a7_0 new file mode 100644 index 000000000..a57512cf2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/219f191aa131f6a7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/21b03a7bd1b59dfe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/21b03a7bd1b59dfe_0 new file mode 100644 index 000000000..b4bc1e349 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/21b03a7bd1b59dfe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/21b72a62cea175a7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/21b72a62cea175a7_0 new file mode 100644 index 000000000..6fe00d2a4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/21b72a62cea175a7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/21bd887e38e03a17_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/21bd887e38e03a17_0 new file mode 100644 index 000000000..fb25ddbd6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/21bd887e38e03a17_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/21c61dad48001294_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/21c61dad48001294_0 new file mode 100644 index 000000000..aad4b597d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/21c61dad48001294_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/21d2a66d6d97e0d0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/21d2a66d6d97e0d0_0 new file mode 100644 index 000000000..ed3cbbcbb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/21d2a66d6d97e0d0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/21d2a66d6d97e0d0_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/21d2a66d6d97e0d0_s new file mode 100644 index 000000000..ccae51fa4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/21d2a66d6d97e0d0_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/220a986208db39d1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/220a986208db39d1_0 new file mode 100644 index 000000000..bec8947f0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/220a986208db39d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2227617fc3b2b47a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2227617fc3b2b47a_0 new file mode 100644 index 000000000..0af333572 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2227617fc3b2b47a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/222a84582140966a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/222a84582140966a_0 new file mode 100644 index 000000000..e392881cf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/222a84582140966a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/224ab8687ba0f2b3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/224ab8687ba0f2b3_0 new file mode 100644 index 000000000..8696802d4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/224ab8687ba0f2b3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2254333811101723_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2254333811101723_0 new file mode 100644 index 000000000..822e5e57a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2254333811101723_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2256bff39a57bfb5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2256bff39a57bfb5_0 new file mode 100644 index 000000000..07be985f6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2256bff39a57bfb5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/226bb82970166134_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/226bb82970166134_0 new file mode 100644 index 000000000..543ff9303 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/226bb82970166134_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2270a67f899ef298_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2270a67f899ef298_0 new file mode 100644 index 000000000..dec3bf832 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2270a67f899ef298_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2292a695518bcdb0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2292a695518bcdb0_0 new file mode 100644 index 000000000..6eae3e1bb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2292a695518bcdb0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/22a6c150c59ffba4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22a6c150c59ffba4_0 new file mode 100644 index 000000000..79f1836ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22a6c150c59ffba4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/22ac5a6e88e84ab6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22ac5a6e88e84ab6_0 new file mode 100644 index 000000000..d9982677d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22ac5a6e88e84ab6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/22ae3e46fd98f735_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22ae3e46fd98f735_0 new file mode 100644 index 000000000..97c0a3609 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22ae3e46fd98f735_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/22bee807f440ae21_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22bee807f440ae21_0 new file mode 100644 index 000000000..fcad2ae04 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22bee807f440ae21_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/22c4f88a18a01454_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22c4f88a18a01454_0 new file mode 100644 index 000000000..835d2d708 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22c4f88a18a01454_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/22c804378ab1e8c7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22c804378ab1e8c7_0 new file mode 100644 index 000000000..b6cf660d8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22c804378ab1e8c7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/22df1d5777127d39_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22df1d5777127d39_0 new file mode 100644 index 000000000..fce9df36e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22df1d5777127d39_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/22e0bf776b62bb92_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22e0bf776b62bb92_0 new file mode 100644 index 000000000..2d88f188a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22e0bf776b62bb92_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/22e97e7c36fa3f90_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22e97e7c36fa3f90_0 new file mode 100644 index 000000000..a0bcf05a3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22e97e7c36fa3f90_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/22efa72eb2d5a2a5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22efa72eb2d5a2a5_0 new file mode 100644 index 000000000..9f2c1fd3a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22efa72eb2d5a2a5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/22f582abca15b987_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22f582abca15b987_0 new file mode 100644 index 000000000..2d3aa838d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22f582abca15b987_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/22f6c71a5100367b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22f6c71a5100367b_0 new file mode 100644 index 000000000..b70ef4fa8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22f6c71a5100367b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/22fa789b385686e9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22fa789b385686e9_0 new file mode 100644 index 000000000..7f1c62622 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/22fa789b385686e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2302a3c4ee76ab57_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2302a3c4ee76ab57_0 new file mode 100644 index 000000000..bc7039879 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2302a3c4ee76ab57_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2303a62f481b1456_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2303a62f481b1456_0 index fa0a219ad..183874ebb 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2303a62f481b1456_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2303a62f481b1456_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/230e486af455d492_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/230e486af455d492_0 new file mode 100644 index 000000000..ea379312d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/230e486af455d492_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2311c01998153c50_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2311c01998153c50_0 new file mode 100644 index 000000000..5141e306e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2311c01998153c50_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2322ad5ab5eacec9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2322ad5ab5eacec9_0 new file mode 100644 index 000000000..178b34e58 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2322ad5ab5eacec9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2330bf85c6292321_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2330bf85c6292321_0 new file mode 100644 index 000000000..591853fa8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2330bf85c6292321_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2332cced6a22f93e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2332cced6a22f93e_0 new file mode 100644 index 000000000..df59468ab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2332cced6a22f93e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2335290c29ef5d20_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2335290c29ef5d20_0 new file mode 100644 index 000000000..50de7a09a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2335290c29ef5d20_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2345cc6e033ed1e5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2345cc6e033ed1e5_0 new file mode 100644 index 000000000..e9b6e306e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2345cc6e033ed1e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/234cedba5f37c000_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/234cedba5f37c000_0 new file mode 100644 index 000000000..3df8b8617 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/234cedba5f37c000_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2387c19994d8d621_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2387c19994d8d621_0 new file mode 100644 index 000000000..c4b5d331f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2387c19994d8d621_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/23910ea2b9032373_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/23910ea2b9032373_0 new file mode 100644 index 000000000..cb197ed36 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/23910ea2b9032373_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2398699233edb213_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2398699233edb213_0 new file mode 100644 index 000000000..1f1ec8a82 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2398699233edb213_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/239a9ac95991788e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/239a9ac95991788e_0 new file mode 100644 index 000000000..eb563e6a4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/239a9ac95991788e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/23b81bec7014c296_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/23b81bec7014c296_0 new file mode 100644 index 000000000..a3bf0519a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/23b81bec7014c296_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/23bb89773125a828_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/23bb89773125a828_0 index a89969287..946dd55fd 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/23bb89773125a828_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/23bb89773125a828_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/23de1a4e0c32ddba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/23de1a4e0c32ddba_0 new file mode 100644 index 000000000..ac94e5824 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/23de1a4e0c32ddba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/23e0bbed6da37b38_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/23e0bbed6da37b38_0 new file mode 100644 index 000000000..960cf997c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/23e0bbed6da37b38_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/23ededd7aee0de2b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/23ededd7aee0de2b_0 new file mode 100644 index 000000000..a4e1ef085 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/23ededd7aee0de2b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/240a217a48a465cf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/240a217a48a465cf_0 index b492b3943..38bba59e7 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/240a217a48a465cf_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/240a217a48a465cf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/240bab05e9984e70_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/240bab05e9984e70_0 new file mode 100644 index 000000000..3e946936b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/240bab05e9984e70_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/241f98eb5758b744_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/241f98eb5758b744_0 new file mode 100644 index 000000000..59bebcd79 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/241f98eb5758b744_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/242dfdf5b1142e1d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/242dfdf5b1142e1d_0 new file mode 100644 index 000000000..4409f1fb2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/242dfdf5b1142e1d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/24350baf45b1eec6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/24350baf45b1eec6_0 new file mode 100644 index 000000000..a056e734a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/24350baf45b1eec6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/24587f90ae8de2b6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/24587f90ae8de2b6_0 new file mode 100644 index 000000000..ce6b59b38 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/24587f90ae8de2b6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/246ec6c8011092eb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/246ec6c8011092eb_0 new file mode 100644 index 000000000..22a650ddf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/246ec6c8011092eb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2498af8e62bdc83c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2498af8e62bdc83c_0 new file mode 100644 index 000000000..5123a8cc5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2498af8e62bdc83c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/24a99aeb03c136e5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/24a99aeb03c136e5_0 new file mode 100644 index 000000000..74e6a5074 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/24a99aeb03c136e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/24af54ccac5e4593_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/24af54ccac5e4593_0 new file mode 100644 index 000000000..417bc9fb1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/24af54ccac5e4593_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/24bbd756dc40aa97_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/24bbd756dc40aa97_0 new file mode 100644 index 000000000..ef2de60a6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/24bbd756dc40aa97_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/24ca5ccaa7c1dcb9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/24ca5ccaa7c1dcb9_0 new file mode 100644 index 000000000..f5554af2f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/24ca5ccaa7c1dcb9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/24ce520bf00a6ebc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/24ce520bf00a6ebc_0 new file mode 100644 index 000000000..a535182cb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/24ce520bf00a6ebc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/24e9db43f24f421d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/24e9db43f24f421d_0 new file mode 100644 index 000000000..4ac6378b1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/24e9db43f24f421d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/24f0111a4c23e6a4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/24f0111a4c23e6a4_0 new file mode 100644 index 000000000..6f24e50ed Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/24f0111a4c23e6a4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2502be6972380990_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2502be6972380990_0 new file mode 100644 index 000000000..eb1848008 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2502be6972380990_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/250feb6fa51449e8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/250feb6fa51449e8_0 new file mode 100644 index 000000000..e9699b3ce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/250feb6fa51449e8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2515152f1367d1bc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2515152f1367d1bc_0 new file mode 100644 index 000000000..c834b01be Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2515152f1367d1bc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2529226f0dff924d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2529226f0dff924d_0 new file mode 100644 index 000000000..c90c71400 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2529226f0dff924d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/252aae00689570c8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/252aae00689570c8_0 new file mode 100644 index 000000000..f7e5823b1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/252aae00689570c8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/252fdb1a2a5ddde6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/252fdb1a2a5ddde6_0 new file mode 100644 index 000000000..8005b82f9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/252fdb1a2a5ddde6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2531a35cbe6bec18_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2531a35cbe6bec18_0 new file mode 100644 index 000000000..7b2a7fc33 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2531a35cbe6bec18_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/253f914f40e5ac62_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/253f914f40e5ac62_0 new file mode 100644 index 000000000..54618f305 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/253f914f40e5ac62_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2543384716459b18_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2543384716459b18_0 new file mode 100644 index 000000000..1b4bbdff5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2543384716459b18_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2549cd9503d08ac9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2549cd9503d08ac9_0 new file mode 100644 index 000000000..8b440aecf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2549cd9503d08ac9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2550555bac5f7fcc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2550555bac5f7fcc_0 new file mode 100644 index 000000000..b9217251c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2550555bac5f7fcc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/25568f844f80e870_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/25568f844f80e870_0 new file mode 100644 index 000000000..d2978a192 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/25568f844f80e870_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/25801bcbfc853c7c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/25801bcbfc853c7c_0 new file mode 100644 index 000000000..1e49b6e03 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/25801bcbfc853c7c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2593221d0e29e990_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2593221d0e29e990_0 new file mode 100644 index 000000000..00670e9d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2593221d0e29e990_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/25a0639fe673dbec_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/25a0639fe673dbec_0 new file mode 100644 index 000000000..702ef6a49 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/25a0639fe673dbec_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/25a29bea8b1a5621_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/25a29bea8b1a5621_0 new file mode 100644 index 000000000..d1188e80a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/25a29bea8b1a5621_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/25d9984bab244509_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/25d9984bab244509_0 new file mode 100644 index 000000000..9664d4248 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/25d9984bab244509_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/25e0aa891e7f50ef_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/25e0aa891e7f50ef_0 new file mode 100644 index 000000000..c8e7b4061 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/25e0aa891e7f50ef_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/25e94b1925b67489_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/25e94b1925b67489_0 new file mode 100644 index 000000000..31951f8c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/25e94b1925b67489_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/25ed7aba6cbc0ee5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/25ed7aba6cbc0ee5_0 new file mode 100644 index 000000000..51c1ce07e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/25ed7aba6cbc0ee5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/25fd511982fbf7d0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/25fd511982fbf7d0_0 new file mode 100644 index 000000000..d0791ff25 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/25fd511982fbf7d0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2601450d09e00d7e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2601450d09e00d7e_0 new file mode 100644 index 000000000..30d59a39d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2601450d09e00d7e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2605dabe6db345f1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2605dabe6db345f1_0 new file mode 100644 index 000000000..321eaa19f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2605dabe6db345f1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2605dabe6db345f1_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2605dabe6db345f1_s new file mode 100644 index 000000000..d4f9611f8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2605dabe6db345f1_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/260bb5502defa42a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/260bb5502defa42a_0 new file mode 100644 index 000000000..07b0918b5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/260bb5502defa42a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2623da5ae6293070_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2623da5ae6293070_0 new file mode 100644 index 000000000..46bf143f0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2623da5ae6293070_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2633b26407f992c6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2633b26407f992c6_0 new file mode 100644 index 000000000..dcde6d761 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2633b26407f992c6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2642c0398e76ae14_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2642c0398e76ae14_0 new file mode 100644 index 000000000..2cdb6e965 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2642c0398e76ae14_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/264e74c9a93f02d9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/264e74c9a93f02d9_0 new file mode 100644 index 000000000..800f5df91 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/264e74c9a93f02d9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/26514a04953c0b2f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/26514a04953c0b2f_0 new file mode 100644 index 000000000..79f59d8ae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/26514a04953c0b2f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/266f8729696ec52a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/266f8729696ec52a_0 new file mode 100644 index 000000000..85eebd8ab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/266f8729696ec52a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/267d619d57bfd356_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/267d619d57bfd356_0 new file mode 100644 index 000000000..bfdbe4134 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/267d619d57bfd356_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2682d2aadcc13606_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2682d2aadcc13606_0 new file mode 100644 index 000000000..ebfa67363 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2682d2aadcc13606_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/268c11287085706c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/268c11287085706c_0 index 41a8479f2..3cf183c47 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/268c11287085706c_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/268c11287085706c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/268da850a95f85c5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/268da850a95f85c5_0 new file mode 100644 index 000000000..6cb0420a0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/268da850a95f85c5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/26a130b647656ccd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/26a130b647656ccd_0 new file mode 100644 index 000000000..a91815afc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/26a130b647656ccd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/26a9f95778853c5e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/26a9f95778853c5e_0 new file mode 100644 index 000000000..dfdaa8990 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/26a9f95778853c5e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/26acb959b9924411_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/26acb959b9924411_0 new file mode 100644 index 000000000..843252ce5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/26acb959b9924411_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/26cbb8af0838a595_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/26cbb8af0838a595_0 new file mode 100644 index 000000000..b103469e1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/26cbb8af0838a595_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/26cc6f3e89fcedc4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/26cc6f3e89fcedc4_0 new file mode 100644 index 000000000..9486aff45 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/26cc6f3e89fcedc4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/26d650b5453a5e7f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/26d650b5453a5e7f_0 new file mode 100644 index 000000000..2d8326182 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/26d650b5453a5e7f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/26d778dee96a0cf1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/26d778dee96a0cf1_0 new file mode 100644 index 000000000..8e1fa07c5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/26d778dee96a0cf1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/26f1e31fc1d1f61f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/26f1e31fc1d1f61f_0 new file mode 100644 index 000000000..5ff1f6d9a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/26f1e31fc1d1f61f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/270048fa67134ce8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/270048fa67134ce8_0 new file mode 100644 index 000000000..944f85692 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/270048fa67134ce8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2711c85a83ac7f21_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2711c85a83ac7f21_0 new file mode 100644 index 000000000..ef9444c2b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2711c85a83ac7f21_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/271b2d20278ec75c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/271b2d20278ec75c_0 new file mode 100644 index 000000000..4ff3ca92b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/271b2d20278ec75c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/271eb973f16cd89e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/271eb973f16cd89e_0 new file mode 100644 index 000000000..ee14922fc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/271eb973f16cd89e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/271f06808e3d63c8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/271f06808e3d63c8_0 new file mode 100644 index 000000000..f07426299 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/271f06808e3d63c8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/272a3a51087a511c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/272a3a51087a511c_0 new file mode 100644 index 000000000..b52f948ed Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/272a3a51087a511c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/27555239bd93be15_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27555239bd93be15_0 new file mode 100644 index 000000000..604a2fb5d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27555239bd93be15_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/275f01b8edaeb1fd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/275f01b8edaeb1fd_0 new file mode 100644 index 000000000..31c47a52f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/275f01b8edaeb1fd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/27672fcf474ef536_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27672fcf474ef536_0 new file mode 100644 index 000000000..127055c72 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27672fcf474ef536_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/27685d8c3b817170_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27685d8c3b817170_0 new file mode 100644 index 000000000..4e8137666 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27685d8c3b817170_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/276c93a730f8851e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/276c93a730f8851e_0 new file mode 100644 index 000000000..81b17bc29 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/276c93a730f8851e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/278509a3e7ffc7a3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/278509a3e7ffc7a3_0 new file mode 100644 index 000000000..aac98a8e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/278509a3e7ffc7a3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/27915015ca7a4425_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27915015ca7a4425_0 new file mode 100644 index 000000000..a07c025a6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27915015ca7a4425_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/27a078a3680d099b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27a078a3680d099b_0 new file mode 100644 index 000000000..b9f3ed01c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27a078a3680d099b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/27a0b026cdbbd380_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27a0b026cdbbd380_0 new file mode 100644 index 000000000..bd5874704 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27a0b026cdbbd380_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/27a6e42f2ec69f18_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27a6e42f2ec69f18_0 index 0cfe18662..2aa30bdff 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/27a6e42f2ec69f18_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27a6e42f2ec69f18_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/27a914a3b220316d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27a914a3b220316d_0 new file mode 100644 index 000000000..38be00fed Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27a914a3b220316d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/27c454fc26c0fd51_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27c454fc26c0fd51_0 new file mode 100644 index 000000000..db03dcb8e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27c454fc26c0fd51_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/27c8de0b51f56bfd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27c8de0b51f56bfd_0 new file mode 100644 index 000000000..1d4f0be10 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27c8de0b51f56bfd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/27d26712a9e6efb9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27d26712a9e6efb9_0 new file mode 100644 index 000000000..b77174931 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/27d26712a9e6efb9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2808a20025f1a07f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2808a20025f1a07f_0 new file mode 100644 index 000000000..15103cab1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2808a20025f1a07f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/280d12c988fad406_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/280d12c988fad406_0 new file mode 100644 index 000000000..dad94ea37 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/280d12c988fad406_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/28175f4954b6d60a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28175f4954b6d60a_0 new file mode 100644 index 000000000..fecc37a90 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28175f4954b6d60a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2819b3eccbb02aaf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2819b3eccbb02aaf_0 new file mode 100644 index 000000000..5c9bf2307 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2819b3eccbb02aaf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2829b31d6b2611ef_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2829b31d6b2611ef_0 new file mode 100644 index 000000000..9cb14d71a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2829b31d6b2611ef_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2848e205a0eedb2d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2848e205a0eedb2d_0 new file mode 100644 index 000000000..d2001acf8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2848e205a0eedb2d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/28496584d215e108_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28496584d215e108_0 new file mode 100644 index 000000000..39755231e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28496584d215e108_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2851c0348cdff80a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2851c0348cdff80a_0 new file mode 100644 index 000000000..044071d49 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2851c0348cdff80a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2863dad0a93b4bb4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2863dad0a93b4bb4_0 new file mode 100644 index 000000000..a0675366b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2863dad0a93b4bb4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/286d0dc4c1e8448c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/286d0dc4c1e8448c_0 index a84f5d2e2..203a3c0e5 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/286d0dc4c1e8448c_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/286d0dc4c1e8448c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2873bbddae37bf51_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2873bbddae37bf51_0 new file mode 100644 index 000000000..4020e7a1e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2873bbddae37bf51_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2885c39f8f8d9a3f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2885c39f8f8d9a3f_0 new file mode 100644 index 000000000..be640cdae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2885c39f8f8d9a3f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/288897e0555b36d4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/288897e0555b36d4_0 new file mode 100644 index 000000000..1efa761fa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/288897e0555b36d4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/288cd0a24727ca6a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/288cd0a24727ca6a_0 new file mode 100644 index 000000000..2f07a281f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/288cd0a24727ca6a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/28a1b4d856d0d20a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28a1b4d856d0d20a_0 new file mode 100644 index 000000000..c3ab418c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28a1b4d856d0d20a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/28a3d624a3ac8de1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28a3d624a3ac8de1_0 new file mode 100644 index 000000000..e1bcdbe2e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28a3d624a3ac8de1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/28b27e503301d53e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28b27e503301d53e_0 new file mode 100644 index 000000000..57d7abf0f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28b27e503301d53e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/28e99d4a3a990cc5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28e99d4a3a990cc5_0 new file mode 100644 index 000000000..af31486e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28e99d4a3a990cc5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/28ead693bb8bc265_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28ead693bb8bc265_0 new file mode 100644 index 000000000..2bc652e1d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28ead693bb8bc265_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/28eba1017a0c7878_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28eba1017a0c7878_0 new file mode 100644 index 000000000..55da5cfca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28eba1017a0c7878_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/28ee81502624647f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28ee81502624647f_0 new file mode 100644 index 000000000..bcc9cd56f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28ee81502624647f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/28febd1f5a0cbdab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28febd1f5a0cbdab_0 new file mode 100644 index 000000000..4013c1f04 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/28febd1f5a0cbdab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2902b98d58ce38f3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2902b98d58ce38f3_0 new file mode 100644 index 000000000..fdd65b390 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2902b98d58ce38f3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2908c97206d1d762_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2908c97206d1d762_0 new file mode 100644 index 000000000..d2724de4f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2908c97206d1d762_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/291daf13b57fb85c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/291daf13b57fb85c_0 new file mode 100644 index 000000000..8f4094f3f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/291daf13b57fb85c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2945fccebc194de5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2945fccebc194de5_0 new file mode 100644 index 000000000..5b2008990 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2945fccebc194de5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2980bd52cadfe1a4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2980bd52cadfe1a4_0 new file mode 100644 index 000000000..45b9acc80 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2980bd52cadfe1a4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/298db16b68977524_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/298db16b68977524_0 new file mode 100644 index 000000000..b33f85ddd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/298db16b68977524_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2994010f29630b8f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2994010f29630b8f_0 new file mode 100644 index 000000000..a34546bed Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2994010f29630b8f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/29a1da14aa9c1e32_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29a1da14aa9c1e32_0 new file mode 100644 index 000000000..3f1316f94 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29a1da14aa9c1e32_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/29b7e0114791a563_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29b7e0114791a563_0 new file mode 100644 index 000000000..6dc20e1a8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29b7e0114791a563_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/29be2363d2cb2645_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29be2363d2cb2645_0 new file mode 100644 index 000000000..e8699c038 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29be2363d2cb2645_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/29c22ff06aa49c9c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29c22ff06aa49c9c_0 new file mode 100644 index 000000000..2c8e09f9b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29c22ff06aa49c9c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/29c4099b29b05214_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29c4099b29b05214_0 new file mode 100644 index 000000000..4d03d921c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29c4099b29b05214_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/29c4f179279d6269_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29c4f179279d6269_0 new file mode 100644 index 000000000..c9e855bc0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29c4f179279d6269_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/29d5f17e6986a18b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29d5f17e6986a18b_0 new file mode 100644 index 000000000..e111dc543 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29d5f17e6986a18b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/29dfd23898e28fb6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29dfd23898e28fb6_0 new file mode 100644 index 000000000..40518ef4f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29dfd23898e28fb6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/29e3f55095070bca_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29e3f55095070bca_0 new file mode 100644 index 000000000..27df7d57c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29e3f55095070bca_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/29ec18408f9f3f2f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29ec18408f9f3f2f_0 new file mode 100644 index 000000000..ac574517c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29ec18408f9f3f2f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/29eeac6f0b78e505_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29eeac6f0b78e505_0 new file mode 100644 index 000000000..739919cbd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/29eeac6f0b78e505_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a0c092ae95da776_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a0c092ae95da776_0 new file mode 100644 index 000000000..735845ef6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a0c092ae95da776_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a0e4fbae0b55dad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a0e4fbae0b55dad_0 new file mode 100644 index 000000000..2fb0403c2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a0e4fbae0b55dad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a197fd46ea7f02e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a197fd46ea7f02e_0 new file mode 100644 index 000000000..167ee4d80 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a197fd46ea7f02e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a2e57cf5913c7b4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a2e57cf5913c7b4_0 new file mode 100644 index 000000000..411d00d33 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a2e57cf5913c7b4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a32efe8fda05f2b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a32efe8fda05f2b_0 new file mode 100644 index 000000000..756310314 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a32efe8fda05f2b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a34ac39bc6f74a0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a34ac39bc6f74a0_0 new file mode 100644 index 000000000..d77dcfe68 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a34ac39bc6f74a0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a37ddb1cdc389fd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a37ddb1cdc389fd_0 new file mode 100644 index 000000000..5eaef52a5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a37ddb1cdc389fd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a3f05f5041da0a5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a3f05f5041da0a5_0 new file mode 100644 index 000000000..827fd4503 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a3f05f5041da0a5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a432765174f0e4d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a432765174f0e4d_0 new file mode 100644 index 000000000..da1233381 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a432765174f0e4d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a577438e6907e37_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a577438e6907e37_0 new file mode 100644 index 000000000..42f74847e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a577438e6907e37_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a5b1c744e2b1b35_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a5b1c744e2b1b35_0 new file mode 100644 index 000000000..4bb120328 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a5b1c744e2b1b35_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a617822dc7d07ff_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a617822dc7d07ff_0 new file mode 100644 index 000000000..2f508b49b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a617822dc7d07ff_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a617822dc7d07ff_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a617822dc7d07ff_s new file mode 100644 index 000000000..2c5314511 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a617822dc7d07ff_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a744281d44b3676_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a744281d44b3676_0 new file mode 100644 index 000000000..94354e8b0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a744281d44b3676_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a76800a39e9d54e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a76800a39e9d54e_0 new file mode 100644 index 000000000..b882c8b2a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a76800a39e9d54e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a9f85aed7b95796_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a9f85aed7b95796_0 new file mode 100644 index 000000000..53eafbca6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2a9f85aed7b95796_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2aa3b1183a7a449b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2aa3b1183a7a449b_0 new file mode 100644 index 000000000..e9e59d8e7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2aa3b1183a7a449b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2aae58c4db6443dc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2aae58c4db6443dc_0 new file mode 100644 index 000000000..04bc87166 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2aae58c4db6443dc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2aafebeb8cc4df69_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2aafebeb8cc4df69_0 new file mode 100644 index 000000000..2be5d0224 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2aafebeb8cc4df69_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ab3d105bc639398_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ab3d105bc639398_0 new file mode 100644 index 000000000..e0424c859 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ab3d105bc639398_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2abe09b757b283d6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2abe09b757b283d6_0 new file mode 100644 index 000000000..857413a11 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2abe09b757b283d6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ac27c82c9d023b2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ac27c82c9d023b2_0 new file mode 100644 index 000000000..a45ded044 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ac27c82c9d023b2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2afadbf4692ab613_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2afadbf4692ab613_0 new file mode 100644 index 000000000..fb0c16164 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2afadbf4692ab613_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2aff1beabdfa6989_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2aff1beabdfa6989_0 new file mode 100644 index 000000000..82bb0bf14 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2aff1beabdfa6989_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b02dd1b11ec6c2f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b02dd1b11ec6c2f_0 new file mode 100644 index 000000000..78921d424 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b02dd1b11ec6c2f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b13d260102ce1d4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b13d260102ce1d4_0 new file mode 100644 index 000000000..be633c0ed Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b13d260102ce1d4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b21ed9dec7576f1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b21ed9dec7576f1_0 new file mode 100644 index 000000000..f6612d2c6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b21ed9dec7576f1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b3d2ce34ecd5870_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b3d2ce34ecd5870_0 new file mode 100644 index 000000000..c666d1c3b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b3d2ce34ecd5870_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b5fda77f321a70e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b5fda77f321a70e_0 new file mode 100644 index 000000000..f14731bd6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b5fda77f321a70e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b8331a41eaedfb4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b8331a41eaedfb4_0 index 0f40fa449..a14936ac4 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b8331a41eaedfb4_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b8331a41eaedfb4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b9fbd273df720b7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b9fbd273df720b7_0 new file mode 100644 index 000000000..b850718b6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2b9fbd273df720b7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ba68e64c7a96bf7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ba68e64c7a96bf7_0 new file mode 100644 index 000000000..57df0d9d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ba68e64c7a96bf7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2baa80665d94c1a6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2baa80665d94c1a6_0 new file mode 100644 index 000000000..17c845c91 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2baa80665d94c1a6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2bae70a4933c5fbc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2bae70a4933c5fbc_0 new file mode 100644 index 000000000..ed0c7105a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2bae70a4933c5fbc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2bb8c744e84f16b0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2bb8c744e84f16b0_0 new file mode 100644 index 000000000..d5f336e59 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2bb8c744e84f16b0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2be7443ed345efd6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2be7443ed345efd6_0 new file mode 100644 index 000000000..281624cc5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2be7443ed345efd6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2bfddc9c50b2cba3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2bfddc9c50b2cba3_0 new file mode 100644 index 000000000..1f1825772 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2bfddc9c50b2cba3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c0f46dbe804c2f9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c0f46dbe804c2f9_0 new file mode 100644 index 000000000..c2ba8ddac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c0f46dbe804c2f9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c133b4eb6b9c590_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c133b4eb6b9c590_0 new file mode 100644 index 000000000..197e4bc32 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c133b4eb6b9c590_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c284bd2809bf6d1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c284bd2809bf6d1_0 new file mode 100644 index 000000000..20beec949 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c284bd2809bf6d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c2bf9feb74f8316_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c2bf9feb74f8316_0 new file mode 100644 index 000000000..bcc84c574 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c2bf9feb74f8316_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c42c44e3675f2f2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c42c44e3675f2f2_0 new file mode 100644 index 000000000..7e94e65df Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c42c44e3675f2f2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c48a9203d465e34_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c48a9203d465e34_0 new file mode 100644 index 000000000..c0ebf73e5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c48a9203d465e34_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c5405912e530643_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c5405912e530643_0 new file mode 100644 index 000000000..9934046e1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c5405912e530643_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c59308f4ac38fb5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c59308f4ac38fb5_0 new file mode 100644 index 000000000..a38dc80be Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c59308f4ac38fb5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c77ddccaf7eb069_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c77ddccaf7eb069_0 new file mode 100644 index 000000000..a9a1f647f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c77ddccaf7eb069_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c7a555fc317379e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c7a555fc317379e_0 new file mode 100644 index 000000000..fe397e6fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c7a555fc317379e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c7d91e33dbea4f9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c7d91e33dbea4f9_0 new file mode 100644 index 000000000..15cd01031 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c7d91e33dbea4f9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c7f57147a3164a9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c7f57147a3164a9_0 new file mode 100644 index 000000000..93e776d86 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c7f57147a3164a9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c841f85209cb7ae_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c841f85209cb7ae_0 new file mode 100644 index 000000000..534a5f520 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c841f85209cb7ae_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c88000cbce17583_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c88000cbce17583_0 new file mode 100644 index 000000000..66b389ffc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c88000cbce17583_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c8c388b11d256cc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c8c388b11d256cc_0 new file mode 100644 index 000000000..4fb1f5dad Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2c8c388b11d256cc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ca3787c75db36d2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ca3787c75db36d2_0 new file mode 100644 index 000000000..63c69c4f9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ca3787c75db36d2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cbf161d2323139a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cbf161d2323139a_0 new file mode 100644 index 000000000..bf85aac9a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cbf161d2323139a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cc369d322a83cb1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cc369d322a83cb1_0 new file mode 100644 index 000000000..15ed0c390 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cc369d322a83cb1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cc580c23ed2cc76_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cc580c23ed2cc76_0 new file mode 100644 index 000000000..a1ecd8de4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cc580c23ed2cc76_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cd54381a51015bf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cd54381a51015bf_0 new file mode 100644 index 000000000..a2c252f28 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cd54381a51015bf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ce72a6630216882_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ce72a6630216882_0 new file mode 100644 index 000000000..6f0c5a3cd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ce72a6630216882_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cf42c5432e67e16_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cf42c5432e67e16_0 new file mode 100644 index 000000000..48e3c62e5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cf42c5432e67e16_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cfedb1f99324a57_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cfedb1f99324a57_0 new file mode 100644 index 000000000..ed5d22fb6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cfedb1f99324a57_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cfee928193f0bb8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cfee928193f0bb8_0 index 6d2d7929c..04bdbe031 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cfee928193f0bb8_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2cfee928193f0bb8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d08453c4269e236_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d08453c4269e236_0 new file mode 100644 index 000000000..1697e5ecc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d08453c4269e236_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d19c2414a348f5b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d19c2414a348f5b_0 new file mode 100644 index 000000000..7b37d0fe1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d19c2414a348f5b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d1d3104484a5400_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d1d3104484a5400_0 new file mode 100644 index 000000000..c63eb975d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d1d3104484a5400_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d2218c684a8ab83_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d2218c684a8ab83_0 new file mode 100644 index 000000000..45aa3506d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d2218c684a8ab83_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d241fc95e8c104b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d241fc95e8c104b_0 new file mode 100644 index 000000000..590f41fd2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d241fc95e8c104b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d3b0a4a6622881d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d3b0a4a6622881d_0 new file mode 100644 index 000000000..8c98e8551 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d3b0a4a6622881d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d3b91f607ddabc5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d3b91f607ddabc5_0 new file mode 100644 index 000000000..b87e118be Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d3b91f607ddabc5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d48b049828aaa34_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d48b049828aaa34_0 new file mode 100644 index 000000000..8d4f54452 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d48b049828aaa34_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d4f14270032eb84_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d4f14270032eb84_0 new file mode 100644 index 000000000..6104b05d2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d4f14270032eb84_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d502f9c8a9a8cfe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d502f9c8a9a8cfe_0 new file mode 100644 index 000000000..188c0deda Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d502f9c8a9a8cfe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d630a2c76b49713_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d630a2c76b49713_0 new file mode 100644 index 000000000..9c284e876 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d630a2c76b49713_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d71b00b72927a48_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d71b00b72927a48_0 new file mode 100644 index 000000000..e25dd27a4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d71b00b72927a48_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d781ea23b6612f5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d781ea23b6612f5_0 new file mode 100644 index 000000000..e2e13e464 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d781ea23b6612f5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d8155d92d81fe65_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d8155d92d81fe65_0 new file mode 100644 index 000000000..03e32f3e7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d8155d92d81fe65_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d96ca0b506ba593_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d96ca0b506ba593_0 new file mode 100644 index 000000000..8e51c6829 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2d96ca0b506ba593_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2da495fac377f95a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2da495fac377f95a_0 new file mode 100644 index 000000000..c7ae52cea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2da495fac377f95a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2daac059a858ede5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2daac059a858ede5_0 new file mode 100644 index 000000000..d3881f202 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2daac059a858ede5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2dd226f53eb3ba88_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2dd226f53eb3ba88_0 new file mode 100644 index 000000000..030712e92 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2dd226f53eb3ba88_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ddc140cefb19c1e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ddc140cefb19c1e_0 new file mode 100644 index 000000000..165f3894c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ddc140cefb19c1e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2de36daffe433312_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2de36daffe433312_0 new file mode 100644 index 000000000..a9cb3ff9b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2de36daffe433312_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2dee28c5a8c79eb3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2dee28c5a8c79eb3_0 new file mode 100644 index 000000000..e73818f5c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2dee28c5a8c79eb3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2df3a8bb48a06b37_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2df3a8bb48a06b37_0 new file mode 100644 index 000000000..2545bc694 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2df3a8bb48a06b37_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e0d1124a0a5013f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e0d1124a0a5013f_0 new file mode 100644 index 000000000..77068ed6d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e0d1124a0a5013f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e274d016c0c4d6d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e274d016c0c4d6d_0 new file mode 100644 index 000000000..14d02db31 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e274d016c0c4d6d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e28214f83bd3548_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e28214f83bd3548_0 new file mode 100644 index 000000000..d4ae00f2e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e28214f83bd3548_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e2c56b76ee28617_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e2c56b76ee28617_0 new file mode 100644 index 000000000..d430d964f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e2c56b76ee28617_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e3af0abcd50e67d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e3af0abcd50e67d_0 new file mode 100644 index 000000000..a2bec160f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e3af0abcd50e67d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e6ef52767f498cc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e6ef52767f498cc_0 new file mode 100644 index 000000000..250d9e5c1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e6ef52767f498cc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e7431cf1e952b17_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e7431cf1e952b17_0 new file mode 100644 index 000000000..d422f6982 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e7431cf1e952b17_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e75204bb0518179_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e75204bb0518179_0 new file mode 100644 index 000000000..68323b69f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e75204bb0518179_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e8623a25bdc1e46_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e8623a25bdc1e46_0 new file mode 100644 index 000000000..6c4bfe580 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e8623a25bdc1e46_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e96a43b2db4ee35_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e96a43b2db4ee35_0 new file mode 100644 index 000000000..a106252ba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2e96a43b2db4ee35_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2eb388557f6313c9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2eb388557f6313c9_0 new file mode 100644 index 000000000..09d531ec2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2eb388557f6313c9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2eb98738b1c3a22e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2eb98738b1c3a22e_0 new file mode 100644 index 000000000..f6ea9a6bd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2eb98738b1c3a22e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ef1990e52cfdb8c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ef1990e52cfdb8c_0 new file mode 100644 index 000000000..38d5a0b6f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2ef1990e52cfdb8c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2efbea296b00d49a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2efbea296b00d49a_0 new file mode 100644 index 000000000..db8f26c66 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2efbea296b00d49a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f0a2dd7806bfd3e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f0a2dd7806bfd3e_0 new file mode 100644 index 000000000..566269a58 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f0a2dd7806bfd3e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f26660875bca8e6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f26660875bca8e6_0 new file mode 100644 index 000000000..8f3b8bba9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f26660875bca8e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f33a54287f5e217_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f33a54287f5e217_0 new file mode 100644 index 000000000..505b4a227 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f33a54287f5e217_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f478acd325f351f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f478acd325f351f_0 new file mode 100644 index 000000000..ff300e620 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f478acd325f351f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f577687eaadbf0f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f577687eaadbf0f_0 new file mode 100644 index 000000000..90f8faf9e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f577687eaadbf0f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f5f07149e557d5a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f5f07149e557d5a_0 new file mode 100644 index 000000000..f02e3749b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f5f07149e557d5a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f67a4237d07aea7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f67a4237d07aea7_0 new file mode 100644 index 000000000..f4298ed04 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f67a4237d07aea7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f6c5b841ae35ba2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f6c5b841ae35ba2_0 new file mode 100644 index 000000000..765bbc5cd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f6c5b841ae35ba2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f7961995dd990d6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f7961995dd990d6_0 new file mode 100644 index 000000000..abeea7cf8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2f7961995dd990d6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fa134bc457f4486_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fa134bc457f4486_0 new file mode 100644 index 000000000..f3496bb68 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fa134bc457f4486_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fc8e7bd2d87b9ec_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fc8e7bd2d87b9ec_0 new file mode 100644 index 000000000..de07c793c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fc8e7bd2d87b9ec_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fd8c0ece137f318_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fd8c0ece137f318_0 new file mode 100644 index 000000000..32884ad48 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fd8c0ece137f318_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fda1790956b9b6d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fda1790956b9b6d_0 new file mode 100644 index 000000000..d14529291 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fda1790956b9b6d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fdb9c9f267f2789_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fdb9c9f267f2789_0 new file mode 100644 index 000000000..6a669f692 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fdb9c9f267f2789_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fdcc447815f90b6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fdcc447815f90b6_0 new file mode 100644 index 000000000..838d6e01d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fdcc447815f90b6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fdd7859254a63de_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fdd7859254a63de_0 new file mode 100644 index 000000000..97ba9316e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fdd7859254a63de_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fdf138346470a73_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fdf138346470a73_0 new file mode 100644 index 000000000..5d2edc361 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/2fdf138346470a73_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/30015152996b2658_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/30015152996b2658_0 new file mode 100644 index 000000000..00a83ee3d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/30015152996b2658_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/30338539e46cce51_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/30338539e46cce51_0 new file mode 100644 index 000000000..c3bc4e0f7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/30338539e46cce51_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/303fe848ad9e506f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/303fe848ad9e506f_0 new file mode 100644 index 000000000..0acd85f3f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/303fe848ad9e506f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/30472207de602e3e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/30472207de602e3e_0 new file mode 100644 index 000000000..60d34b47a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/30472207de602e3e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3061b0f347ae2988_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3061b0f347ae2988_0 index 104e3712b..21cfcaf79 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3061b0f347ae2988_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3061b0f347ae2988_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/308196768e14efbb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/308196768e14efbb_0 new file mode 100644 index 000000000..9908c4c02 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/308196768e14efbb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/30896022ebcbab09_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/30896022ebcbab09_0 new file mode 100644 index 000000000..20d96fb92 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/30896022ebcbab09_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/308dc8edbd473393_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/308dc8edbd473393_0 new file mode 100644 index 000000000..58d6bcec3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/308dc8edbd473393_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/308df9b0ed50408f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/308df9b0ed50408f_0 new file mode 100644 index 000000000..35c0ff5fd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/308df9b0ed50408f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/30a9634466cac415_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/30a9634466cac415_0 new file mode 100644 index 000000000..fcd23b945 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/30a9634466cac415_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/30b0a1e7b0c95d3e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/30b0a1e7b0c95d3e_0 new file mode 100644 index 000000000..9203bd310 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/30b0a1e7b0c95d3e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/30b6a0f3a92aa35b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/30b6a0f3a92aa35b_0 new file mode 100644 index 000000000..6b6e911d3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/30b6a0f3a92aa35b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/30e8dbbbdeb80476_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/30e8dbbbdeb80476_0 new file mode 100644 index 000000000..bc28b95d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/30e8dbbbdeb80476_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/31070722a230b77a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/31070722a230b77a_0 new file mode 100644 index 000000000..48ae08717 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/31070722a230b77a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/314a08c9aab1ea1a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/314a08c9aab1ea1a_0 new file mode 100644 index 000000000..2ac60a7e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/314a08c9aab1ea1a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3157c160645e260e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3157c160645e260e_0 new file mode 100644 index 000000000..84887aa08 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3157c160645e260e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/316d51a1a92e8fff_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/316d51a1a92e8fff_0 new file mode 100644 index 000000000..68d1332db Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/316d51a1a92e8fff_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/316f53e5c3ccee49_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/316f53e5c3ccee49_0 new file mode 100644 index 000000000..df92f2ef8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/316f53e5c3ccee49_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/31832d60511231f5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/31832d60511231f5_0 new file mode 100644 index 000000000..a940a9d3a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/31832d60511231f5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3189c0636e2c8bcd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3189c0636e2c8bcd_0 new file mode 100644 index 000000000..7e52bddbc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3189c0636e2c8bcd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3194a8cbeac6556a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3194a8cbeac6556a_0 new file mode 100644 index 000000000..aeb3c0e7b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3194a8cbeac6556a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/31aa9e044bc6b1b6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/31aa9e044bc6b1b6_0 new file mode 100644 index 000000000..8a271b1b8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/31aa9e044bc6b1b6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/31b44055b6722679_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/31b44055b6722679_0 new file mode 100644 index 000000000..e293d89a9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/31b44055b6722679_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/31cec1c86e362efd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/31cec1c86e362efd_0 new file mode 100644 index 000000000..9b9c3af83 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/31cec1c86e362efd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/31d4c0455f2acf50_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/31d4c0455f2acf50_0 new file mode 100644 index 000000000..f80c5c656 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/31d4c0455f2acf50_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/31e98f5d6eaded2c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/31e98f5d6eaded2c_0 new file mode 100644 index 000000000..d9e04856d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/31e98f5d6eaded2c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3207da3181d216a8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3207da3181d216a8_0 new file mode 100644 index 000000000..c8a914e8b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3207da3181d216a8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/321d6568873e64c5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/321d6568873e64c5_0 new file mode 100644 index 000000000..12c451327 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/321d6568873e64c5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3251d72c643905ea_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3251d72c643905ea_0 new file mode 100644 index 000000000..18c8cf91a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3251d72c643905ea_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/327a952576c3ebfa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/327a952576c3ebfa_0 new file mode 100644 index 000000000..aaef16af8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/327a952576c3ebfa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/32afc4bca793bf3d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/32afc4bca793bf3d_0 new file mode 100644 index 000000000..3355a9e06 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/32afc4bca793bf3d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/32c189e08e2105ed_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/32c189e08e2105ed_0 new file mode 100644 index 000000000..f19167ae6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/32c189e08e2105ed_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/32ccdca636fbaac5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/32ccdca636fbaac5_0 new file mode 100644 index 000000000..d630833d6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/32ccdca636fbaac5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3328531195d19d0a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3328531195d19d0a_0 new file mode 100644 index 000000000..ce0b0a6fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3328531195d19d0a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3330db3ffc27ff9f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3330db3ffc27ff9f_0 new file mode 100644 index 000000000..5861f9d16 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3330db3ffc27ff9f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/335e67793f56ce17_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/335e67793f56ce17_0 new file mode 100644 index 000000000..11cba2c37 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/335e67793f56ce17_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3361f11aa123fb90_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3361f11aa123fb90_0 index 4541adb36..c2832fb20 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3361f11aa123fb90_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3361f11aa123fb90_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3363b43d097215a3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3363b43d097215a3_0 new file mode 100644 index 000000000..9f66ef11e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3363b43d097215a3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/336d157b06a75c9b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/336d157b06a75c9b_0 new file mode 100644 index 000000000..c52c88ffe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/336d157b06a75c9b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3372122c8a897292_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3372122c8a897292_0 new file mode 100644 index 000000000..b52cbef98 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3372122c8a897292_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/338550912e32234f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/338550912e32234f_0 index 16ba19927..2b35d7167 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/338550912e32234f_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/338550912e32234f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/33a0ff307a1da70d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/33a0ff307a1da70d_0 new file mode 100644 index 000000000..e5d58a8b8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/33a0ff307a1da70d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/33a3f03d0def99ce_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/33a3f03d0def99ce_0 new file mode 100644 index 000000000..5d2a7910b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/33a3f03d0def99ce_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/33bdb21bcccf4df2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/33bdb21bcccf4df2_0 new file mode 100644 index 000000000..2757cc873 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/33bdb21bcccf4df2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/33c32738f52373bb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/33c32738f52373bb_0 new file mode 100644 index 000000000..e137509e5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/33c32738f52373bb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/33d066146dd9d1c3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/33d066146dd9d1c3_0 new file mode 100644 index 000000000..c02143574 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/33d066146dd9d1c3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/33e8600f8c163319_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/33e8600f8c163319_0 new file mode 100644 index 000000000..97df6647b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/33e8600f8c163319_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/33e983746f8fe03c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/33e983746f8fe03c_0 new file mode 100644 index 000000000..70fffe113 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/33e983746f8fe03c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/33f556055c0fee98_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/33f556055c0fee98_0 new file mode 100644 index 000000000..ccc98df12 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/33f556055c0fee98_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/34052e7db617eaa0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/34052e7db617eaa0_0 new file mode 100644 index 000000000..a7d062b29 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/34052e7db617eaa0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3406bc4aa8da6bd6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3406bc4aa8da6bd6_0 new file mode 100644 index 000000000..bcf2e6293 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3406bc4aa8da6bd6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3409a9ddb02f1822_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3409a9ddb02f1822_0 new file mode 100644 index 000000000..fc0e6c087 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3409a9ddb02f1822_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3419e6806c1fea36_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3419e6806c1fea36_0 new file mode 100644 index 000000000..ec5e2a213 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3419e6806c1fea36_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/341a22c6dccebb8f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/341a22c6dccebb8f_0 new file mode 100644 index 000000000..894208a28 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/341a22c6dccebb8f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/34208d92dfda4900_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/34208d92dfda4900_0 new file mode 100644 index 000000000..6b7ad4c9f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/34208d92dfda4900_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/342eb7479d04a81d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/342eb7479d04a81d_0 new file mode 100644 index 000000000..639e670a5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/342eb7479d04a81d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/343b51c1c1469c16_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/343b51c1c1469c16_0 new file mode 100644 index 000000000..ce9057167 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/343b51c1c1469c16_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3447e8206054354f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3447e8206054354f_0 new file mode 100644 index 000000000..23a9e8da3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3447e8206054354f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3460c1108ae51168_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3460c1108ae51168_0 new file mode 100644 index 000000000..08ead8398 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3460c1108ae51168_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3473896a3acb3e50_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3473896a3acb3e50_0 new file mode 100644 index 000000000..604f27d4c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3473896a3acb3e50_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/347c53677d71ac48_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/347c53677d71ac48_0 new file mode 100644 index 000000000..3162f0668 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/347c53677d71ac48_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3483953611c18fc6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3483953611c18fc6_0 new file mode 100644 index 000000000..080bbeeb3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3483953611c18fc6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3486bc9c0a5135ca_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3486bc9c0a5135ca_0 new file mode 100644 index 000000000..513146365 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3486bc9c0a5135ca_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3488fcaf7cf7cf3c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3488fcaf7cf7cf3c_0 new file mode 100644 index 000000000..1bf4a566a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3488fcaf7cf7cf3c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/348cb6cc6262b79f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/348cb6cc6262b79f_0 new file mode 100644 index 000000000..5b8757d3d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/348cb6cc6262b79f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/349e062811ae17d7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/349e062811ae17d7_0 new file mode 100644 index 000000000..19f44a180 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/349e062811ae17d7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/349e37089a03e72d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/349e37089a03e72d_0 new file mode 100644 index 000000000..b074a902a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/349e37089a03e72d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/34acb444658291c5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/34acb444658291c5_0 new file mode 100644 index 000000000..64264c067 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/34acb444658291c5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/34ad6df2972d78cf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/34ad6df2972d78cf_0 new file mode 100644 index 000000000..22739a622 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/34ad6df2972d78cf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/34b80816418a2d7c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/34b80816418a2d7c_0 new file mode 100644 index 000000000..7e16bf2ff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/34b80816418a2d7c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/34ca6759071c89db_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/34ca6759071c89db_0 new file mode 100644 index 000000000..de7f0bc1a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/34ca6759071c89db_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/34dd6b792349845e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/34dd6b792349845e_0 new file mode 100644 index 000000000..39cd1a678 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/34dd6b792349845e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/34eec406bc8e4919_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/34eec406bc8e4919_0 new file mode 100644 index 000000000..00263518a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/34eec406bc8e4919_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/350c99abb55d3d9e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/350c99abb55d3d9e_0 new file mode 100644 index 000000000..1f0a91571 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/350c99abb55d3d9e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/350d9163ba61d997_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/350d9163ba61d997_0 new file mode 100644 index 000000000..56567ad3b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/350d9163ba61d997_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3533b84c408f32bf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3533b84c408f32bf_0 new file mode 100644 index 000000000..2850feed6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3533b84c408f32bf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3544df943969e7e4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3544df943969e7e4_0 new file mode 100644 index 000000000..43b60a647 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3544df943969e7e4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/354a52689dffc284_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/354a52689dffc284_0 new file mode 100644 index 000000000..7dba40409 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/354a52689dffc284_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/356fc6067d0939b8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/356fc6067d0939b8_0 new file mode 100644 index 000000000..54229b909 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/356fc6067d0939b8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/35850aa55b96aa7d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35850aa55b96aa7d_0 new file mode 100644 index 000000000..bba1b28f5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35850aa55b96aa7d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/359cca7f77f33932_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/359cca7f77f33932_0 new file mode 100644 index 000000000..c89f6dedd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/359cca7f77f33932_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/35a3f8475f914115_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35a3f8475f914115_0 new file mode 100644 index 000000000..791745070 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35a3f8475f914115_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/35a8d5f87472915c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35a8d5f87472915c_0 new file mode 100644 index 000000000..26e0b10f7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35a8d5f87472915c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/35ac8fbc29790072_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35ac8fbc29790072_0 new file mode 100644 index 000000000..7aec7a63d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35ac8fbc29790072_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/35b35d6e043cd524_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35b35d6e043cd524_0 new file mode 100644 index 000000000..828426d8b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35b35d6e043cd524_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/35b64cccf4fdaac7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35b64cccf4fdaac7_0 new file mode 100644 index 000000000..e8b40f9a2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35b64cccf4fdaac7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/35bfc6b7439fe2ba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35bfc6b7439fe2ba_0 new file mode 100644 index 000000000..839df161c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35bfc6b7439fe2ba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/35c6863f79ff1d26_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35c6863f79ff1d26_0 new file mode 100644 index 000000000..19766b1ce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35c6863f79ff1d26_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/35c6e31719b27b85_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35c6e31719b27b85_0 new file mode 100644 index 000000000..b3e567d5c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35c6e31719b27b85_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/35c781df0696de5c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35c781df0696de5c_0 new file mode 100644 index 000000000..601abac18 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35c781df0696de5c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/35d205b15944018e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35d205b15944018e_0 new file mode 100644 index 000000000..0885db1ac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35d205b15944018e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/35fc808a0dfe1ff4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35fc808a0dfe1ff4_0 new file mode 100644 index 000000000..3ae9ff0e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/35fc808a0dfe1ff4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/360767e84eeafeee_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/360767e84eeafeee_0 new file mode 100644 index 000000000..2a5f649e3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/360767e84eeafeee_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/360767e84eeafeee_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/360767e84eeafeee_s new file mode 100644 index 000000000..68a477d4f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/360767e84eeafeee_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3621d82d06cdd362_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3621d82d06cdd362_0 new file mode 100644 index 000000000..0db055ade Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3621d82d06cdd362_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/36224191871972cd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/36224191871972cd_0 new file mode 100644 index 000000000..619945edd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/36224191871972cd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3655b3ed7046725b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3655b3ed7046725b_0 new file mode 100644 index 000000000..198766565 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3655b3ed7046725b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/36789b679600c7e4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/36789b679600c7e4_0 index 0adc27810..a05c4b1a7 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/36789b679600c7e4_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/36789b679600c7e4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/367a3fe8d0ff79d1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/367a3fe8d0ff79d1_0 new file mode 100644 index 000000000..ec718176d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/367a3fe8d0ff79d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/36af848d71e167b8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/36af848d71e167b8_0 new file mode 100644 index 000000000..44b6d269c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/36af848d71e167b8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/36cb73b886e30f97_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/36cb73b886e30f97_0 new file mode 100644 index 000000000..3052f2c01 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/36cb73b886e30f97_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/36d8749aaa365b12_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/36d8749aaa365b12_0 new file mode 100644 index 000000000..82fda45a8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/36d8749aaa365b12_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/36dea2dcc7e9c6e7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/36dea2dcc7e9c6e7_0 new file mode 100644 index 000000000..47e2051a8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/36dea2dcc7e9c6e7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/36e71d49772e8540_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/36e71d49772e8540_0 new file mode 100644 index 000000000..49a73f171 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/36e71d49772e8540_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/36eb367307258357_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/36eb367307258357_0 new file mode 100644 index 000000000..d9c574aae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/36eb367307258357_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3706a3361db9f791_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3706a3361db9f791_0 new file mode 100644 index 000000000..2ac9ca7cd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3706a3361db9f791_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3719c317c4e98764_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3719c317c4e98764_0 new file mode 100644 index 000000000..c4691b448 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3719c317c4e98764_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/371b25bae7b145a9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/371b25bae7b145a9_0 new file mode 100644 index 000000000..91006370a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/371b25bae7b145a9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/37396789546c53c2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/37396789546c53c2_0 new file mode 100644 index 000000000..771f499bf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/37396789546c53c2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3750a610555ef9f0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3750a610555ef9f0_0 new file mode 100644 index 000000000..c1c42d2ec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3750a610555ef9f0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/37533b6358e829d2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/37533b6358e829d2_0 new file mode 100644 index 000000000..9d8ef093c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/37533b6358e829d2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3767585951157c9d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3767585951157c9d_0 new file mode 100644 index 000000000..fd7e8ce39 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3767585951157c9d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3775f28fb189e7ba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3775f28fb189e7ba_0 new file mode 100644 index 000000000..486d09871 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3775f28fb189e7ba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/377fe1d38de114f5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/377fe1d38de114f5_0 new file mode 100644 index 000000000..7c748edef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/377fe1d38de114f5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/37919f16180d47b8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/37919f16180d47b8_0 new file mode 100644 index 000000000..0e6cb6b02 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/37919f16180d47b8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/37a7583c63b6e079_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/37a7583c63b6e079_0 new file mode 100644 index 000000000..e9f5ecc0f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/37a7583c63b6e079_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/37b0eceee4e812ed_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/37b0eceee4e812ed_0 new file mode 100644 index 000000000..c65051cd7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/37b0eceee4e812ed_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/37da3c6433fc82fb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/37da3c6433fc82fb_0 new file mode 100644 index 000000000..69ea041b1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/37da3c6433fc82fb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/37eb332396906e80_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/37eb332396906e80_0 new file mode 100644 index 000000000..9847e365e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/37eb332396906e80_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/37efaa7dc7637979_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/37efaa7dc7637979_0 new file mode 100644 index 000000000..694107080 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/37efaa7dc7637979_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/37f8b75e82097bc2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/37f8b75e82097bc2_0 new file mode 100644 index 000000000..f60df4fb2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/37f8b75e82097bc2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/38026ee93c82a101_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38026ee93c82a101_0 new file mode 100644 index 000000000..53b6dadef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38026ee93c82a101_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/38091e10a26ce95a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38091e10a26ce95a_0 new file mode 100644 index 000000000..ca4359699 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38091e10a26ce95a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/380b69db7aa79892_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/380b69db7aa79892_0 new file mode 100644 index 000000000..bb0e41283 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/380b69db7aa79892_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/381379e6d69cc4e3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/381379e6d69cc4e3_0 new file mode 100644 index 000000000..f82a1eae3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/381379e6d69cc4e3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/381bf08665848328_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/381bf08665848328_0 new file mode 100644 index 000000000..4e2c2d33b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/381bf08665848328_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/382682d0c0690bd4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/382682d0c0690bd4_0 new file mode 100644 index 000000000..17c8952a9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/382682d0c0690bd4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/382daa2d87447db6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/382daa2d87447db6_0 new file mode 100644 index 000000000..b051aec7b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/382daa2d87447db6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/384ba0cda119d8c7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/384ba0cda119d8c7_0 new file mode 100644 index 000000000..995993524 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/384ba0cda119d8c7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3854ea237b9ac25b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3854ea237b9ac25b_0 new file mode 100644 index 000000000..b84f977d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3854ea237b9ac25b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/385e74ae40093e97_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/385e74ae40093e97_0 new file mode 100644 index 000000000..ac3976a53 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/385e74ae40093e97_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3860b200dea35e05_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3860b200dea35e05_0 new file mode 100644 index 000000000..8b239cd06 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3860b200dea35e05_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/38619704b8d8a33c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38619704b8d8a33c_0 new file mode 100644 index 000000000..5915fa734 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38619704b8d8a33c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/387ca832e7dfa5e3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/387ca832e7dfa5e3_0 new file mode 100644 index 000000000..625050867 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/387ca832e7dfa5e3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/38925436f0f279cb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38925436f0f279cb_0 new file mode 100644 index 000000000..bdd9081e2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38925436f0f279cb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/38a2e2a355880836_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38a2e2a355880836_0 new file mode 100644 index 000000000..d104b5d5c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38a2e2a355880836_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/38b6fe6cfc0289ba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38b6fe6cfc0289ba_0 new file mode 100644 index 000000000..a11bb3395 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38b6fe6cfc0289ba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/38be0a9f5f912a08_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38be0a9f5f912a08_0 new file mode 100644 index 000000000..cb8309c55 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38be0a9f5f912a08_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/38c4d455397a6318_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38c4d455397a6318_0 new file mode 100644 index 000000000..10f5a39af Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38c4d455397a6318_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/38d28a34b766d544_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38d28a34b766d544_0 new file mode 100644 index 000000000..7fe50f7b5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38d28a34b766d544_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/38d5d0854804c0a8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38d5d0854804c0a8_0 new file mode 100644 index 000000000..723ca27b7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38d5d0854804c0a8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/38e075918eb3560b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38e075918eb3560b_0 new file mode 100644 index 000000000..5d6bfc312 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38e075918eb3560b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/38fbcb8533fba11d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38fbcb8533fba11d_0 new file mode 100644 index 000000000..8cbc3ecf7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/38fbcb8533fba11d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3901cce80f63a62f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3901cce80f63a62f_0 index a9378b533..933851658 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3901cce80f63a62f_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3901cce80f63a62f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3904f2a4e1bd0ce5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3904f2a4e1bd0ce5_0 new file mode 100644 index 000000000..c0d5dc160 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3904f2a4e1bd0ce5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/39173bc96386b846_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/39173bc96386b846_0 new file mode 100644 index 000000000..9c33db2b9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/39173bc96386b846_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/393ee0e8444ba4e0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/393ee0e8444ba4e0_0 new file mode 100644 index 000000000..5c8c3bea5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/393ee0e8444ba4e0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/39538fa1584ed7e8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/39538fa1584ed7e8_0 new file mode 100644 index 000000000..5f6119f3a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/39538fa1584ed7e8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3953f94513bb5c34_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3953f94513bb5c34_0 new file mode 100644 index 000000000..c22c628bc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3953f94513bb5c34_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3957b9a2c11eba9f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3957b9a2c11eba9f_0 new file mode 100644 index 000000000..103daeca5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3957b9a2c11eba9f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/396b59b158c58a96_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/396b59b158c58a96_0 new file mode 100644 index 000000000..1c6fb6e5d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/396b59b158c58a96_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3990818a4b61a10d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3990818a4b61a10d_0 index b02a9f9aa..0da485264 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3990818a4b61a10d_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3990818a4b61a10d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/39a57f30d83ce38b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/39a57f30d83ce38b_0 new file mode 100644 index 000000000..43199fd12 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/39a57f30d83ce38b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/39b01aef21ec5c2c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/39b01aef21ec5c2c_0 new file mode 100644 index 000000000..1a7461939 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/39b01aef21ec5c2c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/39ceff0b6fd614a5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/39ceff0b6fd614a5_0 new file mode 100644 index 000000000..c548a26f7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/39ceff0b6fd614a5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/39dda76d9e6c37e5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/39dda76d9e6c37e5_0 new file mode 100644 index 000000000..d7743c6cf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/39dda76d9e6c37e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/39e3554a2a56cf2f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/39e3554a2a56cf2f_0 new file mode 100644 index 000000000..dc7e87129 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/39e3554a2a56cf2f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/39e7ecc48e6d4de9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/39e7ecc48e6d4de9_0 new file mode 100644 index 000000000..2602f693d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/39e7ecc48e6d4de9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a0b5f895bd8abf4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a0b5f895bd8abf4_0 new file mode 100644 index 000000000..af79d459e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a0b5f895bd8abf4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a3406f717f33edd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a3406f717f33edd_0 new file mode 100644 index 000000000..7029604e3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a3406f717f33edd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a4882af656ac01c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a4882af656ac01c_0 new file mode 100644 index 000000000..7f6e54cd6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a4882af656ac01c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a4e0efd4d010d72_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a4e0efd4d010d72_0 new file mode 100644 index 000000000..af1f8362d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a4e0efd4d010d72_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a528fd24c653073_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a528fd24c653073_0 new file mode 100644 index 000000000..fd78712a4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a528fd24c653073_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a9152b24f4ecc64_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a9152b24f4ecc64_0 new file mode 100644 index 000000000..078f8de05 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a9152b24f4ecc64_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a9d5578c7f09fa3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a9d5578c7f09fa3_0 new file mode 100644 index 000000000..a96fffabd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3a9d5578c7f09fa3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3aa1876191e720b8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3aa1876191e720b8_0 new file mode 100644 index 000000000..b42965de0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3aa1876191e720b8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3aa9b04b597dbf41_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3aa9b04b597dbf41_0 new file mode 100644 index 000000000..c777f77f7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3aa9b04b597dbf41_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3aae29e883424508_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3aae29e883424508_0 new file mode 100644 index 000000000..0e944cd39 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3aae29e883424508_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ae509f6f86283b5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ae509f6f86283b5_0 new file mode 100644 index 000000000..601811d14 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ae509f6f86283b5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3aec47132be6626c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3aec47132be6626c_0 new file mode 100644 index 000000000..9784880ff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3aec47132be6626c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3af7f3e0106da395_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3af7f3e0106da395_0 new file mode 100644 index 000000000..5fc30ab75 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3af7f3e0106da395_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b057479b4f6ee1e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b057479b4f6ee1e_0 new file mode 100644 index 000000000..96a8bfe78 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b057479b4f6ee1e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b0ddcdbb8a3c546_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b0ddcdbb8a3c546_0 new file mode 100644 index 000000000..b1f989982 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b0ddcdbb8a3c546_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b1cd23cf3bf07eb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b1cd23cf3bf07eb_0 new file mode 100644 index 000000000..2ef240b26 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b1cd23cf3bf07eb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b2e353542a518e4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b2e353542a518e4_0 new file mode 100644 index 000000000..b0764ca8f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b2e353542a518e4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b32b592d7402a00_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b32b592d7402a00_0 new file mode 100644 index 000000000..473343a40 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b32b592d7402a00_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b53382dd08ed0ec_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b53382dd08ed0ec_0 new file mode 100644 index 000000000..0232c2ed1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b53382dd08ed0ec_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b6ad765e0366a43_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b6ad765e0366a43_0 new file mode 100644 index 000000000..7d488fd19 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b6ad765e0366a43_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b974440ab3207eb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b974440ab3207eb_0 new file mode 100644 index 000000000..4146aaeca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3b974440ab3207eb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ba42e030e283a2c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ba42e030e283a2c_0 new file mode 100644 index 000000000..a71153d00 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ba42e030e283a2c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3bc8d7b2e7adaf28_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3bc8d7b2e7adaf28_0 new file mode 100644 index 000000000..0c1c94595 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3bc8d7b2e7adaf28_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3bd3390b47959866_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3bd3390b47959866_0 new file mode 100644 index 000000000..415bc1f7e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3bd3390b47959866_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c064ce54f84a5c5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c064ce54f84a5c5_0 new file mode 100644 index 000000000..83cd6aecf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c064ce54f84a5c5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c0b23e0e1d6c6eb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c0b23e0e1d6c6eb_0 new file mode 100644 index 000000000..e33e4237f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c0b23e0e1d6c6eb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c2164d5cf5f2e41_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c2164d5cf5f2e41_0 new file mode 100644 index 000000000..a95598310 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c2164d5cf5f2e41_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c36d65f74f0e704_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c36d65f74f0e704_0 new file mode 100644 index 000000000..601de4d87 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c36d65f74f0e704_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c3e7ab87c0a79a6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c3e7ab87c0a79a6_0 new file mode 100644 index 000000000..e19dbb82e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c3e7ab87c0a79a6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c45b220ed1c5239_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c45b220ed1c5239_0 new file mode 100644 index 000000000..79b312092 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c45b220ed1c5239_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c4f9b880ad2f03b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c4f9b880ad2f03b_0 new file mode 100644 index 000000000..e3198d267 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c4f9b880ad2f03b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c4fb28d83d6fc61_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c4fb28d83d6fc61_0 new file mode 100644 index 000000000..45c5c0a4c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c4fb28d83d6fc61_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c9a8bef8ff1cdcb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c9a8bef8ff1cdcb_0 new file mode 100644 index 000000000..6b6050d87 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3c9a8bef8ff1cdcb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ca2b5d8b9db82ff_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ca2b5d8b9db82ff_0 new file mode 100644 index 000000000..d97a2c629 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ca2b5d8b9db82ff_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ca8f6506e5da357_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ca8f6506e5da357_0 new file mode 100644 index 000000000..ea79e1dc3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ca8f6506e5da357_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ca9041065b2be1e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ca9041065b2be1e_0 new file mode 100644 index 000000000..86b62855d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ca9041065b2be1e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3cad158a6067da4e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3cad158a6067da4e_0 new file mode 100644 index 000000000..d36f1c4d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3cad158a6067da4e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3cb3c647c47088ba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3cb3c647c47088ba_0 new file mode 100644 index 000000000..928a00d1b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3cb3c647c47088ba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3cb75e53ad766fa2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3cb75e53ad766fa2_0 new file mode 100644 index 000000000..d6c134161 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3cb75e53ad766fa2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3cea7c29a68e82f1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3cea7c29a68e82f1_0 new file mode 100644 index 000000000..4c485bb43 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3cea7c29a68e82f1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3cebe2927ee8a600_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3cebe2927ee8a600_0 new file mode 100644 index 000000000..dac1a8287 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3cebe2927ee8a600_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3cf4a6312b6c0fb5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3cf4a6312b6c0fb5_0 new file mode 100644 index 000000000..deee815bd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3cf4a6312b6c0fb5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d01f19e4173d6f7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d01f19e4173d6f7_0 new file mode 100644 index 000000000..97e1c65a9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d01f19e4173d6f7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d304d593d66acd7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d304d593d66acd7_0 index 1e44861c2..9f8773d91 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d304d593d66acd7_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d304d593d66acd7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d32d345eb1c52fe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d32d345eb1c52fe_0 new file mode 100644 index 000000000..837e77426 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d32d345eb1c52fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d366c9b63bc0f46_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d366c9b63bc0f46_0 index 0a81e5f7f..cb82d3fcf 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d366c9b63bc0f46_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d366c9b63bc0f46_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d37cabd19d34054_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d37cabd19d34054_0 new file mode 100644 index 000000000..ac5b5c149 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d37cabd19d34054_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d386746fc6e1200_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d386746fc6e1200_0 new file mode 100644 index 000000000..3e9e79717 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d386746fc6e1200_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d3c28b80362cbf8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d3c28b80362cbf8_0 new file mode 100644 index 000000000..cdf90faaf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d3c28b80362cbf8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d3c6b605fa01b88_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d3c6b605fa01b88_0 new file mode 100644 index 000000000..a9322cb35 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d3c6b605fa01b88_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d55c3337a040353_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d55c3337a040353_0 index be1496153..54a1fba3c 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d55c3337a040353_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d55c3337a040353_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d73ec02b1ea9d5d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d73ec02b1ea9d5d_0 new file mode 100644 index 000000000..657a4b731 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d73ec02b1ea9d5d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d7a20a924f26a28_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d7a20a924f26a28_0 new file mode 100644 index 000000000..77ec3ae53 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d7a20a924f26a28_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d8b71a19308cdeb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d8b71a19308cdeb_0 new file mode 100644 index 000000000..dba75bb8d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d8b71a19308cdeb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d90164884acbe99_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d90164884acbe99_0 new file mode 100644 index 000000000..7a7fe912a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d90164884acbe99_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d9521e7725ecbb0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d9521e7725ecbb0_0 new file mode 100644 index 000000000..ae1b6a778 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3d9521e7725ecbb0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3da633c0928d34ee_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3da633c0928d34ee_0 index 8838882c2..0ec069c62 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3da633c0928d34ee_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3da633c0928d34ee_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3dc8dcd030a2d8ff_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3dc8dcd030a2d8ff_0 new file mode 100644 index 000000000..b4800c16e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3dc8dcd030a2d8ff_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3dcd830c90937b9b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3dcd830c90937b9b_0 new file mode 100644 index 000000000..d68034568 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3dcd830c90937b9b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3de1d9fa6d072339_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3de1d9fa6d072339_0 new file mode 100644 index 000000000..576b4d8da Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3de1d9fa6d072339_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3df057dec588d527_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3df057dec588d527_0 new file mode 100644 index 000000000..d0cd1a204 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3df057dec588d527_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3df692bc207b438b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3df692bc207b438b_0 new file mode 100644 index 000000000..d635f5e04 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3df692bc207b438b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3dfd9ae1649e84e9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3dfd9ae1649e84e9_0 new file mode 100644 index 000000000..68961ae11 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3dfd9ae1649e84e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3dfee794a626de97_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3dfee794a626de97_0 new file mode 100644 index 000000000..f662bca11 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3dfee794a626de97_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e0f35e40745f0a1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e0f35e40745f0a1_0 new file mode 100644 index 000000000..8f268678d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e0f35e40745f0a1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e2993fc27545696_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e2993fc27545696_0 new file mode 100644 index 000000000..8e6334a24 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e2993fc27545696_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e2e70b2e6590426_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e2e70b2e6590426_0 new file mode 100644 index 000000000..5bc34a226 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e2e70b2e6590426_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e3ed908c998b88e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e3ed908c998b88e_0 new file mode 100644 index 000000000..ed63cb72e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e3ed908c998b88e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e42322c607fe43f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e42322c607fe43f_0 new file mode 100644 index 000000000..bda3b736e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e42322c607fe43f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e452f0f4c28b8c9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e452f0f4c28b8c9_0 new file mode 100644 index 000000000..851c2e89b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e452f0f4c28b8c9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e4802be2aa8468d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e4802be2aa8468d_0 new file mode 100644 index 000000000..63fb1724c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e4802be2aa8468d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e48552cf3cff3ef_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e48552cf3cff3ef_0 new file mode 100644 index 000000000..9739d1447 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e48552cf3cff3ef_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e5715324899a715_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e5715324899a715_0 new file mode 100644 index 000000000..5bf27dcaa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e5715324899a715_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e5754f8d671dccf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e5754f8d671dccf_0 new file mode 100644 index 000000000..119bab0d4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e5754f8d671dccf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e684e298e4638a6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e684e298e4638a6_0 new file mode 100644 index 000000000..70c578673 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e684e298e4638a6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e7d99bbf620d843_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e7d99bbf620d843_0 new file mode 100644 index 000000000..819bab8b1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e7d99bbf620d843_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e97d0cb00a03b85_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e97d0cb00a03b85_0 new file mode 100644 index 000000000..a577f3e53 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e97d0cb00a03b85_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e9950575e10b8f5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e9950575e10b8f5_0 new file mode 100644 index 000000000..c5def72b7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3e9950575e10b8f5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ea6155234eb4b16_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ea6155234eb4b16_0 new file mode 100644 index 000000000..8e134cc92 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ea6155234eb4b16_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ea621454281229c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ea621454281229c_0 new file mode 100644 index 000000000..39855a4d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ea621454281229c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ebad41e3cf39d24_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ebad41e3cf39d24_0 new file mode 100644 index 000000000..27e42614c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ebad41e3cf39d24_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ec15fdde28f402d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ec15fdde28f402d_0 new file mode 100644 index 000000000..fc081b858 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ec15fdde28f402d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ecd02f5dbb155b9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ecd02f5dbb155b9_0 new file mode 100644 index 000000000..6227defc4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ecd02f5dbb155b9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3edba679f7583120_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3edba679f7583120_0 new file mode 100644 index 000000000..9b5bbcbf6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3edba679f7583120_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3edbddb42015dd3a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3edbddb42015dd3a_0 new file mode 100644 index 000000000..819b35ec2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3edbddb42015dd3a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ee39d05f3996a6d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ee39d05f3996a6d_0 new file mode 100644 index 000000000..71e04f1d9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ee39d05f3996a6d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ee61941d98fd9a6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ee61941d98fd9a6_0 new file mode 100644 index 000000000..4af820176 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ee61941d98fd9a6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f0a5992a58f3ff0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f0a5992a58f3ff0_0 new file mode 100644 index 000000000..b61917cd1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f0a5992a58f3ff0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f0c1e5351ca913a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f0c1e5351ca913a_0 new file mode 100644 index 000000000..d00a0234b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f0c1e5351ca913a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f0e2c217da10b10_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f0e2c217da10b10_0 new file mode 100644 index 000000000..a50b2f541 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f0e2c217da10b10_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f16999aa5b9e702_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f16999aa5b9e702_0 new file mode 100644 index 000000000..0933f8135 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f16999aa5b9e702_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f19fa3531714b51_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f19fa3531714b51_0 new file mode 100644 index 000000000..9a53a5c86 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f19fa3531714b51_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f22459628f74811_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f22459628f74811_0 new file mode 100644 index 000000000..415e9bc14 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f22459628f74811_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f35464f5dacc92c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f35464f5dacc92c_0 new file mode 100644 index 000000000..a88516f36 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f35464f5dacc92c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f3f3bc6f7228673_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f3f3bc6f7228673_0 new file mode 100644 index 000000000..7fde5808e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f3f3bc6f7228673_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f432026b26376c9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f432026b26376c9_0 new file mode 100644 index 000000000..bb04c8a8e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f432026b26376c9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f61cac4dd84473c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f61cac4dd84473c_0 new file mode 100644 index 000000000..14691e662 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f61cac4dd84473c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f6d26e3b20c425d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f6d26e3b20c425d_0 new file mode 100644 index 000000000..e52d3408d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f6d26e3b20c425d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f7654a957998003_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f7654a957998003_0 new file mode 100644 index 000000000..11fd5aaaf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f7654a957998003_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f77df2436a62abb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f77df2436a62abb_0 new file mode 100644 index 000000000..e78fe7f02 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f77df2436a62abb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f7d9a3560138d33_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f7d9a3560138d33_0 new file mode 100644 index 000000000..cf6afa52a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3f7d9a3560138d33_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3fbd2592c0aada7d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3fbd2592c0aada7d_0 new file mode 100644 index 000000000..cb4d56141 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3fbd2592c0aada7d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3fca02a0f5ec708b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3fca02a0f5ec708b_0 new file mode 100644 index 000000000..0616cf04f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3fca02a0f5ec708b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3fdceb2e344215b1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3fdceb2e344215b1_0 index bcb5bcc97..d52c23d8e 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3fdceb2e344215b1_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3fdceb2e344215b1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3fe29093f93aa966_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3fe29093f93aa966_0 new file mode 100644 index 000000000..03c8e5823 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3fe29093f93aa966_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ff4a29d14397e40_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ff4a29d14397e40_0 new file mode 100644 index 000000000..534a70109 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ff4a29d14397e40_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ff971b9250f66df_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ff971b9250f66df_0 index 112534c25..bff3afce6 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ff971b9250f66df_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/3ff971b9250f66df_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4002eac18b1a0e75_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4002eac18b1a0e75_0 new file mode 100644 index 000000000..36930bb9e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4002eac18b1a0e75_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/401c164b5e4480e2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/401c164b5e4480e2_0 new file mode 100644 index 000000000..7ddff0cad Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/401c164b5e4480e2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4021afcd6c9b4034_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4021afcd6c9b4034_0 new file mode 100644 index 000000000..f554fcac3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4021afcd6c9b4034_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/402546d7fa9be790_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/402546d7fa9be790_0 new file mode 100644 index 000000000..942862af2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/402546d7fa9be790_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4025807574e71df9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4025807574e71df9_0 new file mode 100644 index 000000000..c827095b9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4025807574e71df9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4040fbea3d7c2384_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4040fbea3d7c2384_0 new file mode 100644 index 000000000..7df975463 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4040fbea3d7c2384_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/404704791391655f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/404704791391655f_0 new file mode 100644 index 000000000..9ce93e5be Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/404704791391655f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/405e4ac8d514a50b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/405e4ac8d514a50b_0 new file mode 100644 index 000000000..21277b23c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/405e4ac8d514a50b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4072eb333f6b3826_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4072eb333f6b3826_0 new file mode 100644 index 000000000..08f523bec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4072eb333f6b3826_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/407c4acf62e29b0e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/407c4acf62e29b0e_0 new file mode 100644 index 000000000..42174f057 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/407c4acf62e29b0e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/408d6d90ea2ab93a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/408d6d90ea2ab93a_0 new file mode 100644 index 000000000..ad7aab4ee Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/408d6d90ea2ab93a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/408f784c6d01f325_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/408f784c6d01f325_0 new file mode 100644 index 000000000..afa3ff48d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/408f784c6d01f325_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4097f8b3887e5913_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4097f8b3887e5913_0 new file mode 100644 index 000000000..6b3d5a1a1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4097f8b3887e5913_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/40a8bcea6cc83806_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/40a8bcea6cc83806_0 new file mode 100644 index 000000000..0a5cfc7aa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/40a8bcea6cc83806_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/40d3f4251d720f07_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/40d3f4251d720f07_0 new file mode 100644 index 000000000..13afecb27 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/40d3f4251d720f07_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/40d8ca736e4198da_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/40d8ca736e4198da_0 new file mode 100644 index 000000000..a19f62f2e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/40d8ca736e4198da_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/40e22eeaa4300bdf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/40e22eeaa4300bdf_0 new file mode 100644 index 000000000..7b38db6c7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/40e22eeaa4300bdf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/40ea6c13836ba4fe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/40ea6c13836ba4fe_0 new file mode 100644 index 000000000..5b42645a0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/40ea6c13836ba4fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/41083e43b7798ea4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41083e43b7798ea4_0 new file mode 100644 index 000000000..62728d13d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41083e43b7798ea4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/410e43cbabaa5a1e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/410e43cbabaa5a1e_0 new file mode 100644 index 000000000..392bc9916 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/410e43cbabaa5a1e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/41155633574b395d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41155633574b395d_0 new file mode 100644 index 000000000..929728a73 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41155633574b395d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/411b8a8818a350f1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/411b8a8818a350f1_0 new file mode 100644 index 000000000..885307dca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/411b8a8818a350f1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4125d9097e7dc617_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4125d9097e7dc617_0 new file mode 100644 index 000000000..0150c8f61 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4125d9097e7dc617_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/414706b80060f213_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/414706b80060f213_0 new file mode 100644 index 000000000..d190831de Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/414706b80060f213_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/414d83cfa3566f22_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/414d83cfa3566f22_0 new file mode 100644 index 000000000..644819e44 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/414d83cfa3566f22_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4153e64ecaaa9206_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4153e64ecaaa9206_0 new file mode 100644 index 000000000..2d011fbd0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4153e64ecaaa9206_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/415746f4f4071cab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/415746f4f4071cab_0 new file mode 100644 index 000000000..c82d55615 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/415746f4f4071cab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/415d0be5c9cb5266_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/415d0be5c9cb5266_0 new file mode 100644 index 000000000..645ee4a38 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/415d0be5c9cb5266_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/416445d597054bf0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/416445d597054bf0_0 new file mode 100644 index 000000000..5eb60dc37 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/416445d597054bf0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/416bbcd1984f8b96_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/416bbcd1984f8b96_0 new file mode 100644 index 000000000..a8c23ef51 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/416bbcd1984f8b96_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/41758213dbf80c19_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41758213dbf80c19_0 new file mode 100644 index 000000000..2f8df897c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41758213dbf80c19_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/418645a21d27ddb9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/418645a21d27ddb9_0 new file mode 100644 index 000000000..bc32928b3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/418645a21d27ddb9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/418d8c5442d2e92d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/418d8c5442d2e92d_0 new file mode 100644 index 000000000..17c5fd70b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/418d8c5442d2e92d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4194530f94894916_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4194530f94894916_0 new file mode 100644 index 000000000..66a3978ee Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4194530f94894916_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/41967b0cabc28580_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41967b0cabc28580_0 new file mode 100644 index 000000000..2692d8b2a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41967b0cabc28580_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/41a03a0917cd922a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41a03a0917cd922a_0 new file mode 100644 index 000000000..d6565cc04 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41a03a0917cd922a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/41d4e994dd37cfa9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41d4e994dd37cfa9_0 new file mode 100644 index 000000000..72be2ae3a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41d4e994dd37cfa9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/41ddb43c3aea7a68_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41ddb43c3aea7a68_0 new file mode 100644 index 000000000..6320afe58 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41ddb43c3aea7a68_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/41e752ddf447b005_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41e752ddf447b005_0 new file mode 100644 index 000000000..022f7b5be Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41e752ddf447b005_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/41ea7d7394362f75_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41ea7d7394362f75_0 new file mode 100644 index 000000000..cb902644d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41ea7d7394362f75_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/41ec7c0f284c9468_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41ec7c0f284c9468_0 new file mode 100644 index 000000000..041836bf6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41ec7c0f284c9468_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/41fb13b4ab506d10_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41fb13b4ab506d10_0 index 18e777b62..58578c0eb 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/41fb13b4ab506d10_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41fb13b4ab506d10_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/41fe6bd51ebfe580_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41fe6bd51ebfe580_0 new file mode 100644 index 000000000..660fa02f8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/41fe6bd51ebfe580_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4207b2a4454a0f9e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4207b2a4454a0f9e_0 new file mode 100644 index 000000000..1c493d6ff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4207b2a4454a0f9e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4208fd759656a199_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4208fd759656a199_0 new file mode 100644 index 000000000..5edeb0e58 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4208fd759656a199_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4217ebc114a2ed4d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4217ebc114a2ed4d_0 new file mode 100644 index 000000000..f7b55566e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4217ebc114a2ed4d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/42193d7b247efd54_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42193d7b247efd54_0 new file mode 100644 index 000000000..44d66ca46 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42193d7b247efd54_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4219756474c4bb2e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4219756474c4bb2e_0 new file mode 100644 index 000000000..03ed5f176 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4219756474c4bb2e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/421ad7a2e9e4f6fa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/421ad7a2e9e4f6fa_0 new file mode 100644 index 000000000..adc311656 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/421ad7a2e9e4f6fa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/421e19b6b86da11a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/421e19b6b86da11a_0 new file mode 100644 index 000000000..3ff540b5a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/421e19b6b86da11a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/425c3ca77ecf39e9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/425c3ca77ecf39e9_0 new file mode 100644 index 000000000..2ac56ebc4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/425c3ca77ecf39e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/42670b55208915d0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42670b55208915d0_0 new file mode 100644 index 000000000..6ab2289f4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42670b55208915d0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/426af6b118c39bad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/426af6b118c39bad_0 new file mode 100644 index 000000000..dda6e148f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/426af6b118c39bad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/42711d138ff3a4e9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42711d138ff3a4e9_0 new file mode 100644 index 000000000..00ee96f4f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42711d138ff3a4e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/42931a5bd9ef00c3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42931a5bd9ef00c3_0 new file mode 100644 index 000000000..fc590aa42 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42931a5bd9ef00c3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4294740983d10ebe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4294740983d10ebe_0 new file mode 100644 index 000000000..8de777f94 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4294740983d10ebe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/429ad373f076abbe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/429ad373f076abbe_0 new file mode 100644 index 000000000..b59b6c87a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/429ad373f076abbe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/42a8eff389037150_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42a8eff389037150_0 new file mode 100644 index 000000000..0befe07da Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42a8eff389037150_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/42b82297a4dd3141_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42b82297a4dd3141_0 new file mode 100644 index 000000000..85f01620a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42b82297a4dd3141_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/42b82297a4dd3141_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42b82297a4dd3141_s new file mode 100644 index 000000000..8fa1a3895 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42b82297a4dd3141_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/42c091374afd5f6e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42c091374afd5f6e_0 new file mode 100644 index 000000000..457feec70 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42c091374afd5f6e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/42c5dfcffd9e8bcb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42c5dfcffd9e8bcb_0 new file mode 100644 index 000000000..04b2fe469 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42c5dfcffd9e8bcb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/42d64b4eaab890c6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42d64b4eaab890c6_0 new file mode 100644 index 000000000..c818ef279 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42d64b4eaab890c6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/42da9e7f0b841276_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42da9e7f0b841276_0 new file mode 100644 index 000000000..32ffdee49 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42da9e7f0b841276_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/42e6ad82f59d637c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42e6ad82f59d637c_0 new file mode 100644 index 000000000..2e24f232b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/42e6ad82f59d637c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/430d3a615d77bf41_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/430d3a615d77bf41_0 new file mode 100644 index 000000000..f1ee893fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/430d3a615d77bf41_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/430d3a615d77bf41_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/430d3a615d77bf41_s new file mode 100644 index 000000000..50af7af97 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/430d3a615d77bf41_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/432c147e04712bba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/432c147e04712bba_0 new file mode 100644 index 000000000..80c907704 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/432c147e04712bba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/433068c50ae69acb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/433068c50ae69acb_0 new file mode 100644 index 000000000..b6f96971f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/433068c50ae69acb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4340b84346812da0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4340b84346812da0_0 new file mode 100644 index 000000000..b0010a876 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4340b84346812da0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4344fff1309ec69e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4344fff1309ec69e_0 new file mode 100644 index 000000000..8343780d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4344fff1309ec69e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/434e1f398ae52829_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/434e1f398ae52829_0 index 07a9b3c49..eebd9cb9d 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/434e1f398ae52829_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/434e1f398ae52829_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/435af8928546627a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/435af8928546627a_0 new file mode 100644 index 000000000..c4343b5f7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/435af8928546627a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/43a8c59a935bccd1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/43a8c59a935bccd1_0 new file mode 100644 index 000000000..a2bf113dd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/43a8c59a935bccd1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/43af0dce0116cc2a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/43af0dce0116cc2a_0 new file mode 100644 index 000000000..6ceb78147 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/43af0dce0116cc2a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/43b0d4dcb0f22823_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/43b0d4dcb0f22823_0 new file mode 100644 index 000000000..3adcdde57 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/43b0d4dcb0f22823_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/43bf1bb6f0f4827e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/43bf1bb6f0f4827e_0 new file mode 100644 index 000000000..4ba2b8c8a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/43bf1bb6f0f4827e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/43ce9a40ab6ff673_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/43ce9a40ab6ff673_0 new file mode 100644 index 000000000..44ff87149 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/43ce9a40ab6ff673_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/43d88f2c550e7e3d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/43d88f2c550e7e3d_0 new file mode 100644 index 000000000..de7985798 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/43d88f2c550e7e3d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/43e64e6d4ae218a3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/43e64e6d4ae218a3_0 new file mode 100644 index 000000000..6115a1325 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/43e64e6d4ae218a3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/43f3f8281d3be117_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/43f3f8281d3be117_0 new file mode 100644 index 000000000..dd6129d33 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/43f3f8281d3be117_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/44066503461377dc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/44066503461377dc_0 new file mode 100644 index 000000000..ec25c5263 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/44066503461377dc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/444174967dd57fe2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/444174967dd57fe2_0 new file mode 100644 index 000000000..3880aa126 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/444174967dd57fe2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/44493c014177f3ae_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/44493c014177f3ae_0 new file mode 100644 index 000000000..aeba63da9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/44493c014177f3ae_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/445838845d8dceb9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/445838845d8dceb9_0 new file mode 100644 index 000000000..2252df64f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/445838845d8dceb9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/44667fc889f98da7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/44667fc889f98da7_0 new file mode 100644 index 000000000..64d2a0c7b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/44667fc889f98da7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/44672816f0bb7003_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/44672816f0bb7003_0 new file mode 100644 index 000000000..3870dbbc1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/44672816f0bb7003_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4468b38610641ee5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4468b38610641ee5_0 new file mode 100644 index 000000000..584d93aa9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4468b38610641ee5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4495c2dbef8d37e5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4495c2dbef8d37e5_0 new file mode 100644 index 000000000..11dc1a58f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4495c2dbef8d37e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/44bc107013bf657c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/44bc107013bf657c_0 new file mode 100644 index 000000000..2d7b1e6c1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/44bc107013bf657c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/44bc1e80ec5fd8b2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/44bc1e80ec5fd8b2_0 new file mode 100644 index 000000000..765b742f1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/44bc1e80ec5fd8b2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/44bf07e92e0b1b10_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/44bf07e92e0b1b10_0 new file mode 100644 index 000000000..b91c3e08c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/44bf07e92e0b1b10_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/44e22e9fd913955a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/44e22e9fd913955a_0 new file mode 100644 index 000000000..6127f453d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/44e22e9fd913955a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/44ed09ee2d21c7be_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/44ed09ee2d21c7be_0 new file mode 100644 index 000000000..2e05135d4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/44ed09ee2d21c7be_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/45115aed262a0ceb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/45115aed262a0ceb_0 new file mode 100644 index 000000000..6a5a4ecde Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/45115aed262a0ceb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/452214d1a03fad8e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/452214d1a03fad8e_0 new file mode 100644 index 000000000..917f85de5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/452214d1a03fad8e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/45231d7d2a9585d0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/45231d7d2a9585d0_0 new file mode 100644 index 000000000..3aae156dd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/45231d7d2a9585d0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/45257464e383126b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/45257464e383126b_0 new file mode 100644 index 000000000..3786ee0bd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/45257464e383126b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/453cb95699890b6c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/453cb95699890b6c_0 new file mode 100644 index 000000000..eca59a382 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/453cb95699890b6c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4546897f3a07e656_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4546897f3a07e656_0 new file mode 100644 index 000000000..5ba061a09 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4546897f3a07e656_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/454a4bfd21cba250_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/454a4bfd21cba250_0 new file mode 100644 index 000000000..bff1487dc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/454a4bfd21cba250_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/458f635edc3f780c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/458f635edc3f780c_0 new file mode 100644 index 000000000..069a24388 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/458f635edc3f780c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/459909d6a20515ca_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/459909d6a20515ca_0 new file mode 100644 index 000000000..fbef6eaf4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/459909d6a20515ca_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/45bd119c62a3fd1f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/45bd119c62a3fd1f_0 new file mode 100644 index 000000000..3e9f9e436 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/45bd119c62a3fd1f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/45cf270c1f3daef8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/45cf270c1f3daef8_0 new file mode 100644 index 000000000..67b115a5c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/45cf270c1f3daef8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/45d9622aa88268c2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/45d9622aa88268c2_0 new file mode 100644 index 000000000..38de5b119 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/45d9622aa88268c2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/45ea2bc69c747466_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/45ea2bc69c747466_0 new file mode 100644 index 000000000..6fcdb1218 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/45ea2bc69c747466_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/463fc6e455238da2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/463fc6e455238da2_0 new file mode 100644 index 000000000..0ebf910fd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/463fc6e455238da2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4649c399b3f15c4a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4649c399b3f15c4a_0 new file mode 100644 index 000000000..5a3153eb6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4649c399b3f15c4a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/465cb46aa2ead696_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/465cb46aa2ead696_0 new file mode 100644 index 000000000..00b3220f8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/465cb46aa2ead696_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4668ca369fe783e2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4668ca369fe783e2_0 new file mode 100644 index 000000000..21561f5ac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4668ca369fe783e2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/467fc18948055e12_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/467fc18948055e12_0 new file mode 100644 index 000000000..346b27f27 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/467fc18948055e12_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/468064daaa622b83_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/468064daaa622b83_0 new file mode 100644 index 000000000..982544a5a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/468064daaa622b83_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/46a37591f34f450e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/46a37591f34f450e_0 new file mode 100644 index 000000000..6d9366990 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/46a37591f34f450e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/46aa23de34d1a2b4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/46aa23de34d1a2b4_0 new file mode 100644 index 000000000..87907dbf7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/46aa23de34d1a2b4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/46bc3149eadc0bd3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/46bc3149eadc0bd3_0 new file mode 100644 index 000000000..849066612 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/46bc3149eadc0bd3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/46e36b6ef4d7fb08_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/46e36b6ef4d7fb08_0 new file mode 100644 index 000000000..726bf476c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/46e36b6ef4d7fb08_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/46ed048de242c406_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/46ed048de242c406_0 new file mode 100644 index 000000000..271f2f90b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/46ed048de242c406_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/46f6288a69e159cc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/46f6288a69e159cc_0 new file mode 100644 index 000000000..c903301b7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/46f6288a69e159cc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/46fc6d93ff16dacc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/46fc6d93ff16dacc_0 new file mode 100644 index 000000000..0db5b9d5a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/46fc6d93ff16dacc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4711d762ffb9df4a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4711d762ffb9df4a_0 new file mode 100644 index 000000000..f2e478c2f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4711d762ffb9df4a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/471f3d1f4a46383c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/471f3d1f4a46383c_0 new file mode 100644 index 000000000..71dbb90f8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/471f3d1f4a46383c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/472b3542fe97b22f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/472b3542fe97b22f_0 new file mode 100644 index 000000000..1327b0a84 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/472b3542fe97b22f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/473efcf2d958efe9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/473efcf2d958efe9_0 new file mode 100644 index 000000000..561441937 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/473efcf2d958efe9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4744fb358e5ba7a7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4744fb358e5ba7a7_0 new file mode 100644 index 000000000..561e8f0be Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4744fb358e5ba7a7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4746047bcd7de805_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4746047bcd7de805_0 new file mode 100644 index 000000000..3185032d6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4746047bcd7de805_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4749d8f8492fac16_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4749d8f8492fac16_0 new file mode 100644 index 000000000..aae1550de Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4749d8f8492fac16_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/475acfa737ae8e81_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/475acfa737ae8e81_0 new file mode 100644 index 000000000..ae26097f2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/475acfa737ae8e81_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/479a81c3003ed361_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/479a81c3003ed361_0 new file mode 100644 index 000000000..1f7756fa7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/479a81c3003ed361_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/47c7e8ea0ff993b2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/47c7e8ea0ff993b2_0 new file mode 100644 index 000000000..74a8fc4c7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/47c7e8ea0ff993b2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/47cfd701f9af04be_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/47cfd701f9af04be_0 new file mode 100644 index 000000000..f349609f1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/47cfd701f9af04be_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/47d1e92334e1dde6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/47d1e92334e1dde6_0 new file mode 100644 index 000000000..ff93fc640 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/47d1e92334e1dde6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/47fa136c5a7c9659_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/47fa136c5a7c9659_0 new file mode 100644 index 000000000..cc3d0e042 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/47fa136c5a7c9659_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/480375e86e2937d1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/480375e86e2937d1_0 new file mode 100644 index 000000000..1c4a3691c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/480375e86e2937d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4806f79bafdffb3f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4806f79bafdffb3f_0 new file mode 100644 index 000000000..d4d744d7c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4806f79bafdffb3f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/48074b2c33434c97_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/48074b2c33434c97_0 new file mode 100644 index 000000000..d0610a61c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/48074b2c33434c97_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4820daa170eb8210_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4820daa170eb8210_0 new file mode 100644 index 000000000..ed6843321 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4820daa170eb8210_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4839d6c28bc03f1b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4839d6c28bc03f1b_0 new file mode 100644 index 000000000..acfcb5015 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4839d6c28bc03f1b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/484a9b52614ecd7b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/484a9b52614ecd7b_0 new file mode 100644 index 000000000..6e41f1c7d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/484a9b52614ecd7b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4851828fd110a60c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4851828fd110a60c_0 new file mode 100644 index 000000000..7b72ec76b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4851828fd110a60c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/48654d80496e1e94_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/48654d80496e1e94_0 new file mode 100644 index 000000000..f0a48d797 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/48654d80496e1e94_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4870090fd40d5897_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4870090fd40d5897_0 new file mode 100644 index 000000000..750c44314 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4870090fd40d5897_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/488455cfd60ad295_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/488455cfd60ad295_0 new file mode 100644 index 000000000..220398c80 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/488455cfd60ad295_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4897c56a8a0e8bcd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4897c56a8a0e8bcd_0 new file mode 100644 index 000000000..64cbbc95a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4897c56a8a0e8bcd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/48b38e81843b5331_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/48b38e81843b5331_0 new file mode 100644 index 000000000..3bf690c17 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/48b38e81843b5331_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/48cf517cfaba4fe7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/48cf517cfaba4fe7_0 new file mode 100644 index 000000000..7dfaaf03e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/48cf517cfaba4fe7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/48e8f436f95131aa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/48e8f436f95131aa_0 new file mode 100644 index 000000000..1252ecf5e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/48e8f436f95131aa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/48f3526769fd2be2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/48f3526769fd2be2_0 new file mode 100644 index 000000000..21d72b008 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/48f3526769fd2be2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4930cf7a6230d6e6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4930cf7a6230d6e6_0 new file mode 100644 index 000000000..12ce0a81d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4930cf7a6230d6e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4931db695d0717ae_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4931db695d0717ae_0 new file mode 100644 index 000000000..ecc01c63a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4931db695d0717ae_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4934b503457c2dd9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4934b503457c2dd9_0 new file mode 100644 index 000000000..78faac22b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4934b503457c2dd9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/493bc39d88376021_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/493bc39d88376021_0 new file mode 100644 index 000000000..30464d7dd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/493bc39d88376021_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/494be8db86f44492_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/494be8db86f44492_0 new file mode 100644 index 000000000..3eb25e4b0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/494be8db86f44492_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/496e03027d8b1290_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/496e03027d8b1290_0 new file mode 100644 index 000000000..a8456dcde Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/496e03027d8b1290_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4975d5cfd6d5ffbc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4975d5cfd6d5ffbc_0 new file mode 100644 index 000000000..a5009f6d8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4975d5cfd6d5ffbc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/497841ba044aee66_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/497841ba044aee66_0 new file mode 100644 index 000000000..4d8b8372e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/497841ba044aee66_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4989e2718e0fdc97_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4989e2718e0fdc97_0 new file mode 100644 index 000000000..b1c10fe6a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4989e2718e0fdc97_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/498b9532c363ee42_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/498b9532c363ee42_0 new file mode 100644 index 000000000..03d675d7c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/498b9532c363ee42_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/49a2c936a95ec3db_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/49a2c936a95ec3db_0 new file mode 100644 index 000000000..959aa180a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/49a2c936a95ec3db_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/49bb2b167e6bb43c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/49bb2b167e6bb43c_0 index 1abd908bc..599ef5bd2 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/49bb2b167e6bb43c_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/49bb2b167e6bb43c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/49bdb9f0115bcc2c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/49bdb9f0115bcc2c_0 new file mode 100644 index 000000000..f2e77e273 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/49bdb9f0115bcc2c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/49e24ed49748e421_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/49e24ed49748e421_0 new file mode 100644 index 000000000..00acf6235 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/49e24ed49748e421_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/49e24ed49748e421_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/49e24ed49748e421_s new file mode 100644 index 000000000..a06f3a018 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/49e24ed49748e421_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a0332946e768c9f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a0332946e768c9f_0 new file mode 100644 index 000000000..e481f47a0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a0332946e768c9f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a08250178a6e156_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a08250178a6e156_0 new file mode 100644 index 000000000..ed7937543 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a08250178a6e156_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a08f95218aea897_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a08f95218aea897_0 new file mode 100644 index 000000000..8c41b4db8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a08f95218aea897_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a0ebe13321ec137_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a0ebe13321ec137_0 new file mode 100644 index 000000000..0c3ab3d9b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a0ebe13321ec137_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a1531a3ffe75b61_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a1531a3ffe75b61_0 new file mode 100644 index 000000000..82750765f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a1531a3ffe75b61_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a26b3b8a8b19f8d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a26b3b8a8b19f8d_0 new file mode 100644 index 000000000..171eebaef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a26b3b8a8b19f8d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a26fcdfc3b19dbc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a26fcdfc3b19dbc_0 new file mode 100644 index 000000000..332da47dd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a26fcdfc3b19dbc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a3c09ac20a5430a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a3c09ac20a5430a_0 new file mode 100644 index 000000000..de84efa34 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a3c09ac20a5430a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a4cf082295f1a4e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a4cf082295f1a4e_0 new file mode 100644 index 000000000..d6328d67e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a4cf082295f1a4e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a85977e3df3424e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a85977e3df3424e_0 new file mode 100644 index 000000000..82992aa1c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a85977e3df3424e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a94795951251a9c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a94795951251a9c_0 new file mode 100644 index 000000000..73fb87700 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a94795951251a9c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a949cf6e95a111c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a949cf6e95a111c_0 new file mode 100644 index 000000000..6ecaeb78b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4a949cf6e95a111c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4aadf93ae1301d77_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4aadf93ae1301d77_0 index 20c3cb46d..0dfb444cb 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4aadf93ae1301d77_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4aadf93ae1301d77_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4aaeb8fc60de917f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4aaeb8fc60de917f_0 new file mode 100644 index 000000000..54fdfb536 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4aaeb8fc60de917f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ab0c87c35eaeda7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ab0c87c35eaeda7_0 new file mode 100644 index 000000000..967ae0f53 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ab0c87c35eaeda7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ab1f32c5260b634_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ab1f32c5260b634_0 new file mode 100644 index 000000000..10e2258f2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ab1f32c5260b634_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ac4d1ea5b01c238_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ac4d1ea5b01c238_0 new file mode 100644 index 000000000..8077127a9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ac4d1ea5b01c238_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4acdc840325882fc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4acdc840325882fc_0 new file mode 100644 index 000000000..ce8b8a80e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4acdc840325882fc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ad441b7e2a68ef7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ad441b7e2a68ef7_0 new file mode 100644 index 000000000..66886732c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ad441b7e2a68ef7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ae47259f01883dc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ae47259f01883dc_0 new file mode 100644 index 000000000..36b6e376f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ae47259f01883dc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4aeae5c262f22925_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4aeae5c262f22925_0 new file mode 100644 index 000000000..b8df41445 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4aeae5c262f22925_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4af332571c714552_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4af332571c714552_0 index 38534ac1b..31c399477 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4af332571c714552_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4af332571c714552_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4af6c6aa2aae7764_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4af6c6aa2aae7764_0 new file mode 100644 index 000000000..34c7f643a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4af6c6aa2aae7764_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4afaf732d21b6681_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4afaf732d21b6681_0 new file mode 100644 index 000000000..a2c9eecb4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4afaf732d21b6681_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b00e53ef74be919_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b00e53ef74be919_0 new file mode 100644 index 000000000..e44b13707 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b00e53ef74be919_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b1594dc279c82e7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b1594dc279c82e7_0 new file mode 100644 index 000000000..08e0873fb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b1594dc279c82e7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b1db99a9ec37914_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b1db99a9ec37914_0 new file mode 100644 index 000000000..977d5057f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b1db99a9ec37914_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b349d54531578a0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b349d54531578a0_0 new file mode 100644 index 000000000..c74dfff0b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b349d54531578a0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b3f80c174cbad53_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b3f80c174cbad53_0 new file mode 100644 index 000000000..a165d4452 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b3f80c174cbad53_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b43b97c43bc3e9d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b43b97c43bc3e9d_0 new file mode 100644 index 000000000..f80a9af6d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b43b97c43bc3e9d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b51d162459f033f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b51d162459f033f_0 new file mode 100644 index 000000000..b24607316 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b51d162459f033f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b574ef90b275147_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b574ef90b275147_0 new file mode 100644 index 000000000..59744d024 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b574ef90b275147_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b7208a204b89c91_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b7208a204b89c91_0 new file mode 100644 index 000000000..4a8894fdc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b7208a204b89c91_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b7fd321030fcc17_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b7fd321030fcc17_0 new file mode 100644 index 000000000..9464b9561 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b7fd321030fcc17_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b86fde6f73a699a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b86fde6f73a699a_0 index 989e6e71e..428f2c697 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b86fde6f73a699a_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4b86fde6f73a699a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ba01cec279598bb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ba01cec279598bb_0 new file mode 100644 index 000000000..4f2556dd5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ba01cec279598bb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ba20dc5e870e377_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ba20dc5e870e377_0 new file mode 100644 index 000000000..7b6881d30 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ba20dc5e870e377_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ba7e6986c41916e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ba7e6986c41916e_0 new file mode 100644 index 000000000..02f10d598 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ba7e6986c41916e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4bd240025769aa02_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4bd240025769aa02_0 new file mode 100644 index 000000000..0df1af86f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4bd240025769aa02_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4bddffb741817ad9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4bddffb741817ad9_0 new file mode 100644 index 000000000..aa65ebcbf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4bddffb741817ad9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4be4253f6f8b81e0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4be4253f6f8b81e0_0 new file mode 100644 index 000000000..d21243c77 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4be4253f6f8b81e0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c29ddfcd58f2688_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c29ddfcd58f2688_0 new file mode 100644 index 000000000..6743de5b6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c29ddfcd58f2688_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c3e25d3d74cf769_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c3e25d3d74cf769_0 new file mode 100644 index 000000000..b510145ba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c3e25d3d74cf769_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c4139295c9a6a7e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c4139295c9a6a7e_0 new file mode 100644 index 000000000..9ed0d4efa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c4139295c9a6a7e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c4c121261514ca7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c4c121261514ca7_0 new file mode 100644 index 000000000..a674dd567 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c4c121261514ca7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c537e1060c8350a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c537e1060c8350a_0 new file mode 100644 index 000000000..3e811338c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c537e1060c8350a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c68f3b3cb2cb56f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c68f3b3cb2cb56f_0 new file mode 100644 index 000000000..fb5e3063e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c68f3b3cb2cb56f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c6990bcea131702_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c6990bcea131702_0 new file mode 100644 index 000000000..797ae3eb3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c6990bcea131702_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c6cf913972a0f65_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c6cf913972a0f65_0 new file mode 100644 index 000000000..5c12764bb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c6cf913972a0f65_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c790063e1afaec0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c790063e1afaec0_0 new file mode 100644 index 000000000..61a2fae02 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c790063e1afaec0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c7b35ac2de83aba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c7b35ac2de83aba_0 new file mode 100644 index 000000000..99b33e216 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c7b35ac2de83aba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c8fd3d7fb4e4753_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c8fd3d7fb4e4753_0 new file mode 100644 index 000000000..5574046f3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c8fd3d7fb4e4753_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c9940907753e4ec_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c9940907753e4ec_0 new file mode 100644 index 000000000..50bec3481 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c9940907753e4ec_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c997f4ee6a8c981_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c997f4ee6a8c981_0 new file mode 100644 index 000000000..616b073ad Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4c997f4ee6a8c981_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ca1c33e075b0f12_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ca1c33e075b0f12_0 new file mode 100644 index 000000000..e86c7f944 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ca1c33e075b0f12_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ca7d581ff42864c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ca7d581ff42864c_0 new file mode 100644 index 000000000..43a9861d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ca7d581ff42864c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4cacbe29e41d5f50_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4cacbe29e41d5f50_0 index dcef67320..532d640fa 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4cacbe29e41d5f50_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4cacbe29e41d5f50_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4cdc2b1f087f1b7d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4cdc2b1f087f1b7d_0 new file mode 100644 index 000000000..57e56588c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4cdc2b1f087f1b7d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d04b6eaa2047d04_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d04b6eaa2047d04_0 new file mode 100644 index 000000000..b95decb04 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d04b6eaa2047d04_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d10415b176b3468_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d10415b176b3468_0 new file mode 100644 index 000000000..5921167fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d10415b176b3468_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d1cabae65443db0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d1cabae65443db0_0 new file mode 100644 index 000000000..2e1535986 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d1cabae65443db0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d25a8ce417cb520_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d25a8ce417cb520_0 new file mode 100644 index 000000000..7ae32755a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d25a8ce417cb520_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d2e97bd82e36416_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d2e97bd82e36416_0 new file mode 100644 index 000000000..b6e6ed2c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d2e97bd82e36416_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d37f58232707b4e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d37f58232707b4e_0 new file mode 100644 index 000000000..cd0070b4c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d37f58232707b4e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d53af58bf8f4a20_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d53af58bf8f4a20_0 new file mode 100644 index 000000000..10e704602 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d53af58bf8f4a20_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d6ba31a4e3e2a6b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d6ba31a4e3e2a6b_0 new file mode 100644 index 000000000..7666a7901 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d6ba31a4e3e2a6b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d8478187bd5f934_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d8478187bd5f934_0 new file mode 100644 index 000000000..1e0a0b84a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d8478187bd5f934_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d860301a2dd0b90_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d860301a2dd0b90_0 new file mode 100644 index 000000000..e97c94777 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d860301a2dd0b90_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d9a731fab4ae166_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d9a731fab4ae166_0 new file mode 100644 index 000000000..ae1e96bc7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4d9a731fab4ae166_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4daac91ab70bf5a5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4daac91ab70bf5a5_0 index 84514ca4f..af7ace08c 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4daac91ab70bf5a5_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4daac91ab70bf5a5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4dae65f123ccda5c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4dae65f123ccda5c_0 new file mode 100644 index 000000000..a3f7083ab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4dae65f123ccda5c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4db52a855681baef_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4db52a855681baef_0 new file mode 100644 index 000000000..3ecada328 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4db52a855681baef_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4db8e67b380e0d74_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4db8e67b380e0d74_0 new file mode 100644 index 000000000..9f8e04534 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4db8e67b380e0d74_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4dba311c8652386a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4dba311c8652386a_0 new file mode 100644 index 000000000..c86bb3f8c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4dba311c8652386a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4de3e94f914a8ea1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4de3e94f914a8ea1_0 new file mode 100644 index 000000000..22df37222 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4de3e94f914a8ea1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e2340ba989b161e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e2340ba989b161e_0 new file mode 100644 index 000000000..63cb39a2d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e2340ba989b161e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e328352eeef2b2e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e328352eeef2b2e_0 new file mode 100644 index 000000000..b287a6fd5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e328352eeef2b2e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e34718afd1055d0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e34718afd1055d0_0 new file mode 100644 index 000000000..10e65f309 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e34718afd1055d0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e51f44ea72a77ff_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e51f44ea72a77ff_0 new file mode 100644 index 000000000..703726f56 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e51f44ea72a77ff_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e6fe554deabe8cf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e6fe554deabe8cf_0 new file mode 100644 index 000000000..be7919a1b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e6fe554deabe8cf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e87974734816621_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e87974734816621_0 new file mode 100644 index 000000000..c3a1086dd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e87974734816621_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e8bcac01092905d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e8bcac01092905d_0 new file mode 100644 index 000000000..252619a1e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e8bcac01092905d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e8c2a54705ddc14_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e8c2a54705ddc14_0 new file mode 100644 index 000000000..e52a40a47 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e8c2a54705ddc14_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e930ae9a0a6ef80_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e930ae9a0a6ef80_0 new file mode 100644 index 000000000..1b3f279cc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e930ae9a0a6ef80_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e95c621e9abe5ca_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e95c621e9abe5ca_0 new file mode 100644 index 000000000..4a2f2baca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e95c621e9abe5ca_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e9a0f01381f4482_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e9a0f01381f4482_0 new file mode 100644 index 000000000..e7f7b9ac4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4e9a0f01381f4482_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ea21c28abea1e8c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ea21c28abea1e8c_0 new file mode 100644 index 000000000..b2ad10d82 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ea21c28abea1e8c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ea40ca107c170b8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ea40ca107c170b8_0 new file mode 100644 index 000000000..ce832bf9a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ea40ca107c170b8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ec3c64f24a506ba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ec3c64f24a506ba_0 new file mode 100644 index 000000000..604499414 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ec3c64f24a506ba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ee13b10c4578eb9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ee13b10c4578eb9_0 new file mode 100644 index 000000000..efe84f99b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4ee13b10c4578eb9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f0acac323be7e60_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f0acac323be7e60_0 new file mode 100644 index 000000000..11a09914b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f0acac323be7e60_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f1076f870a2d778_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f1076f870a2d778_0 new file mode 100644 index 000000000..423c12d77 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f1076f870a2d778_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f3901eea3db4efc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f3901eea3db4efc_0 new file mode 100644 index 000000000..edb1614ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f3901eea3db4efc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f393c0cfe5d517c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f393c0cfe5d517c_0 new file mode 100644 index 000000000..b6d789036 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f393c0cfe5d517c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f3f02c25fa95074_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f3f02c25fa95074_0 new file mode 100644 index 000000000..95dd69fdb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f3f02c25fa95074_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f69f47dc57a78d9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f69f47dc57a78d9_0 new file mode 100644 index 000000000..3e20698ec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f69f47dc57a78d9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f7003a6d187eace_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f7003a6d187eace_0 new file mode 100644 index 000000000..24cf32626 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f7003a6d187eace_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f87d6cd66647e35_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f87d6cd66647e35_0 new file mode 100644 index 000000000..e7a012b9a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f87d6cd66647e35_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f984f577e10252c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f984f577e10252c_0 new file mode 100644 index 000000000..895231517 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4f984f577e10252c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4fb0ebf850680c76_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4fb0ebf850680c76_0 new file mode 100644 index 000000000..0d9c47162 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4fb0ebf850680c76_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4fbdd1b812299e3f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4fbdd1b812299e3f_0 index 867394e42..8e6410490 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4fbdd1b812299e3f_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4fbdd1b812299e3f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4fbf80a670e5b884_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4fbf80a670e5b884_0 new file mode 100644 index 000000000..4d315a50d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4fbf80a670e5b884_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4fd164d982ac884f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4fd164d982ac884f_0 new file mode 100644 index 000000000..e1ca459e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4fd164d982ac884f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4fd4a614d8b74f25_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4fd4a614d8b74f25_0 new file mode 100644 index 000000000..bb15774e8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4fd4a614d8b74f25_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/4fe5feb5cc6883e2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4fe5feb5cc6883e2_0 new file mode 100644 index 000000000..47489e993 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/4fe5feb5cc6883e2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/500c5bfac50ec2b4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/500c5bfac50ec2b4_0 new file mode 100644 index 000000000..38c8796ce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/500c5bfac50ec2b4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/502396797d6ce9ff_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/502396797d6ce9ff_0 new file mode 100644 index 000000000..f79c7767a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/502396797d6ce9ff_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/502ecc06c86830ea_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/502ecc06c86830ea_0 new file mode 100644 index 000000000..3a176ba33 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/502ecc06c86830ea_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5039915f434c6762_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5039915f434c6762_0 new file mode 100644 index 000000000..b6c3d1f51 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5039915f434c6762_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5046c604b6a8d149_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5046c604b6a8d149_0 new file mode 100644 index 000000000..176ca82a4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5046c604b6a8d149_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/504c5fe2c874c636_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/504c5fe2c874c636_0 new file mode 100644 index 000000000..25a7f8a93 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/504c5fe2c874c636_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5066e3f2899c41bf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5066e3f2899c41bf_0 new file mode 100644 index 000000000..dea8304d4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5066e3f2899c41bf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/50a8891c22c89106_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/50a8891c22c89106_0 new file mode 100644 index 000000000..914ee629a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/50a8891c22c89106_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/50b105d30621f08a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/50b105d30621f08a_0 new file mode 100644 index 000000000..a4f955c44 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/50b105d30621f08a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/50b244c5ae63491a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/50b244c5ae63491a_0 new file mode 100644 index 000000000..0719c1337 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/50b244c5ae63491a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/50c0a79fa953a30e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/50c0a79fa953a30e_0 new file mode 100644 index 000000000..e8e82e298 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/50c0a79fa953a30e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/50d1b5ccb311af42_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/50d1b5ccb311af42_0 new file mode 100644 index 000000000..dadd548e9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/50d1b5ccb311af42_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/50d7684fd4c810a8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/50d7684fd4c810a8_0 new file mode 100644 index 000000000..02c9ecc93 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/50d7684fd4c810a8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/50e8bcc55f6c0b25_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/50e8bcc55f6c0b25_0 new file mode 100644 index 000000000..f754e848e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/50e8bcc55f6c0b25_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/50f027bcbf7cd671_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/50f027bcbf7cd671_0 new file mode 100644 index 000000000..efefe7efe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/50f027bcbf7cd671_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/50fbad6c61dc08f6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/50fbad6c61dc08f6_0 new file mode 100644 index 000000000..245daa372 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/50fbad6c61dc08f6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/511744d89ee1a852_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/511744d89ee1a852_0 new file mode 100644 index 000000000..c1780a5c9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/511744d89ee1a852_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/513d3193143dc0bd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/513d3193143dc0bd_0 new file mode 100644 index 000000000..6b838e941 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/513d3193143dc0bd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5144266cd768db1b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5144266cd768db1b_0 new file mode 100644 index 000000000..a62ac3bb5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5144266cd768db1b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/515cd40b27804d32_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/515cd40b27804d32_0 new file mode 100644 index 000000000..c5c81b05a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/515cd40b27804d32_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5163373cee1d58e0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5163373cee1d58e0_0 index d528eb3dd..c072b3245 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5163373cee1d58e0_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5163373cee1d58e0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5176b65db76e4223_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5176b65db76e4223_0 new file mode 100644 index 000000000..142ffd91a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5176b65db76e4223_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5178a3ae81300e34_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5178a3ae81300e34_0 new file mode 100644 index 000000000..2cf1dd84a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5178a3ae81300e34_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/517a5d41613d8542_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/517a5d41613d8542_0 new file mode 100644 index 000000000..68605c479 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/517a5d41613d8542_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/517b03f6b151fc95_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/517b03f6b151fc95_0 index 639fdeb6f..9f9a27e4d 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/517b03f6b151fc95_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/517b03f6b151fc95_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/518577ec451f0890_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/518577ec451f0890_0 new file mode 100644 index 000000000..8ad02485a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/518577ec451f0890_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5186fe25cf020a59_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5186fe25cf020a59_0 new file mode 100644 index 000000000..83b93c0b5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5186fe25cf020a59_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/518d6d4135454383_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/518d6d4135454383_0 new file mode 100644 index 000000000..3d918b755 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/518d6d4135454383_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/518d6d4135454383_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/518d6d4135454383_s new file mode 100644 index 000000000..cdcca306c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/518d6d4135454383_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/51990a4bf31ea80b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/51990a4bf31ea80b_0 new file mode 100644 index 000000000..b71b2c3a1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/51990a4bf31ea80b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/51a4799ed1ff7946_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/51a4799ed1ff7946_0 new file mode 100644 index 000000000..6816d0ab0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/51a4799ed1ff7946_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/51c253e0a386f0ce_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/51c253e0a386f0ce_0 new file mode 100644 index 000000000..6ee01dce9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/51c253e0a386f0ce_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/51dd9a8b9a16e42e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/51dd9a8b9a16e42e_0 new file mode 100644 index 000000000..a8a9eb7e1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/51dd9a8b9a16e42e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/51ef18c29308e810_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/51ef18c29308e810_0 new file mode 100644 index 000000000..4a2ad812a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/51ef18c29308e810_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5202e7581d97cf25_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5202e7581d97cf25_0 new file mode 100644 index 000000000..b43c11706 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5202e7581d97cf25_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/520cc04559de4f74_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/520cc04559de4f74_0 new file mode 100644 index 000000000..47d063088 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/520cc04559de4f74_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/521104233e773544_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/521104233e773544_0 new file mode 100644 index 000000000..82a2986cc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/521104233e773544_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/524f1380d27d56b4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/524f1380d27d56b4_0 new file mode 100644 index 000000000..4cbc9c568 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/524f1380d27d56b4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/525860fab28def2c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/525860fab28def2c_0 new file mode 100644 index 000000000..8bc44b2b9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/525860fab28def2c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/525860fab28def2c_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/525860fab28def2c_s new file mode 100644 index 000000000..f99e1bcd1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/525860fab28def2c_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/527a2bef6adada34_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/527a2bef6adada34_0 new file mode 100644 index 000000000..e22e588c7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/527a2bef6adada34_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/52890a0e4229f98a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/52890a0e4229f98a_0 new file mode 100644 index 000000000..59b42ca91 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/52890a0e4229f98a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/52b41bda6cbd2517_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/52b41bda6cbd2517_0 index 934080ae0..839374de6 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/52b41bda6cbd2517_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/52b41bda6cbd2517_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/52bbe49bcf839cb3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/52bbe49bcf839cb3_0 new file mode 100644 index 000000000..c831bab4f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/52bbe49bcf839cb3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/52be3e9ea297778f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/52be3e9ea297778f_0 new file mode 100644 index 000000000..20fd2c049 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/52be3e9ea297778f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/52d38517045c55ad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/52d38517045c55ad_0 new file mode 100644 index 000000000..328842e7b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/52d38517045c55ad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/52d5070507a15688_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/52d5070507a15688_0 new file mode 100644 index 000000000..cf10a16a6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/52d5070507a15688_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/52d52d13ef5e46e4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/52d52d13ef5e46e4_0 new file mode 100644 index 000000000..11c4d6cf0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/52d52d13ef5e46e4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/52dc5c09ed1b24e8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/52dc5c09ed1b24e8_0 new file mode 100644 index 000000000..64ecc2d6a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/52dc5c09ed1b24e8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/530266fcfc1614b5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/530266fcfc1614b5_0 new file mode 100644 index 000000000..bda994a88 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/530266fcfc1614b5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5303aa2be94e8525_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5303aa2be94e8525_0 new file mode 100644 index 000000000..2e7d713ee Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5303aa2be94e8525_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/53110f977ddc709a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53110f977ddc709a_0 new file mode 100644 index 000000000..f96af5dd9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53110f977ddc709a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/53110fa877ebd288_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53110fa877ebd288_0 new file mode 100644 index 000000000..5399628e2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53110fa877ebd288_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5327d700655abe85_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5327d700655abe85_0 new file mode 100644 index 000000000..012d7e955 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5327d700655abe85_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/532b3f2e223ba1d7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/532b3f2e223ba1d7_0 new file mode 100644 index 000000000..a300e5983 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/532b3f2e223ba1d7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/533abe29bfed4349_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/533abe29bfed4349_0 new file mode 100644 index 000000000..efd13d398 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/533abe29bfed4349_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/533ecc496b7e44e7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/533ecc496b7e44e7_0 new file mode 100644 index 000000000..3c0d2848c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/533ecc496b7e44e7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/534d1557ffbf0c32_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/534d1557ffbf0c32_0 new file mode 100644 index 000000000..bf6c302e5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/534d1557ffbf0c32_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/53534064875f8195_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53534064875f8195_0 new file mode 100644 index 000000000..09b83cbc9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53534064875f8195_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/53827a704ad26701_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53827a704ad26701_0 new file mode 100644 index 000000000..0fb4b8eee Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53827a704ad26701_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/538b21d02c1cdb96_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/538b21d02c1cdb96_0 new file mode 100644 index 000000000..fb3ab162d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/538b21d02c1cdb96_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/538c903a4280665f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/538c903a4280665f_0 new file mode 100644 index 000000000..ef4ef8bd5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/538c903a4280665f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5391192b543795f9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5391192b543795f9_0 new file mode 100644 index 000000000..eb8dd187d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5391192b543795f9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/53a9b25e2f064a8a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53a9b25e2f064a8a_0 index d10356007..9ea4f0813 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/53a9b25e2f064a8a_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53a9b25e2f064a8a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/53c6fd9274c83bc3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53c6fd9274c83bc3_0 new file mode 100644 index 000000000..1eb11048e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53c6fd9274c83bc3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/53c7384068192d03_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53c7384068192d03_0 new file mode 100644 index 000000000..4d79a43c7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53c7384068192d03_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/53cf4fc1b22e738a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53cf4fc1b22e738a_0 new file mode 100644 index 000000000..4a4d7cbc0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53cf4fc1b22e738a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/53d05a860af1af5e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53d05a860af1af5e_0 new file mode 100644 index 000000000..d89772591 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53d05a860af1af5e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/53d623eb4a83b345_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53d623eb4a83b345_0 new file mode 100644 index 000000000..ff9dc01a4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53d623eb4a83b345_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/53ecb748190dc789_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53ecb748190dc789_0 new file mode 100644 index 000000000..8a53dbe24 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/53ecb748190dc789_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/54096569460c50b1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/54096569460c50b1_0 new file mode 100644 index 000000000..7083e55fa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/54096569460c50b1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5419bf2359b43efd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5419bf2359b43efd_0 new file mode 100644 index 000000000..067da9cbd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5419bf2359b43efd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5423e2a7669889d5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5423e2a7669889d5_0 new file mode 100644 index 000000000..ee96b1839 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5423e2a7669889d5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/542b44cc9912d4c4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/542b44cc9912d4c4_0 new file mode 100644 index 000000000..256c37190 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/542b44cc9912d4c4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/543190e9c26d5f0f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/543190e9c26d5f0f_0 new file mode 100644 index 000000000..009dc61b3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/543190e9c26d5f0f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/544f8dc06e956990_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/544f8dc06e956990_0 new file mode 100644 index 000000000..4603cbee7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/544f8dc06e956990_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/54623275fb95d189_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/54623275fb95d189_0 new file mode 100644 index 000000000..cf29a7888 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/54623275fb95d189_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/546bcad4fff17cbf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/546bcad4fff17cbf_0 index e34aab45b..f0a3cc717 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/546bcad4fff17cbf_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/546bcad4fff17cbf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/546e3bc7bad00164_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/546e3bc7bad00164_0 new file mode 100644 index 000000000..a413f1cdb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/546e3bc7bad00164_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/547473227518856d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/547473227518856d_0 new file mode 100644 index 000000000..aa06a2ca0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/547473227518856d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5489e8d8a7ef1f39_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5489e8d8a7ef1f39_0 new file mode 100644 index 000000000..9e41257aa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5489e8d8a7ef1f39_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/54909b45f0e2784b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/54909b45f0e2784b_0 new file mode 100644 index 000000000..e22baf59e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/54909b45f0e2784b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/549bb30f72e48814_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/549bb30f72e48814_0 new file mode 100644 index 000000000..6c8261c1c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/549bb30f72e48814_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/549ce42c69fe7897_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/549ce42c69fe7897_0 new file mode 100644 index 000000000..0d485fc79 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/549ce42c69fe7897_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/54b98ac2f8ea62e6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/54b98ac2f8ea62e6_0 new file mode 100644 index 000000000..aa830b616 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/54b98ac2f8ea62e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/54c44bd951afeb7a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/54c44bd951afeb7a_0 index d613d94c7..e180b94bd 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/54c44bd951afeb7a_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/54c44bd951afeb7a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/54e3d887f80ac768_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/54e3d887f80ac768_0 new file mode 100644 index 000000000..3c9086276 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/54e3d887f80ac768_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/54ea9568c575d9d6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/54ea9568c575d9d6_0 new file mode 100644 index 000000000..e19193a5b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/54ea9568c575d9d6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/54ec568cee844332_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/54ec568cee844332_0 new file mode 100644 index 000000000..a2505e680 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/54ec568cee844332_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/54f39e5c2804e695_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/54f39e5c2804e695_0 new file mode 100644 index 000000000..e5bcb50b8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/54f39e5c2804e695_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/550377e6ccb6b7be_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/550377e6ccb6b7be_0 new file mode 100644 index 000000000..b8976e63c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/550377e6ccb6b7be_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/55105d387f9aa27d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/55105d387f9aa27d_0 new file mode 100644 index 000000000..a7812da11 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/55105d387f9aa27d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/551188d64ab42665_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/551188d64ab42665_0 new file mode 100644 index 000000000..8b4d0baf7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/551188d64ab42665_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/551934479ea1092b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/551934479ea1092b_0 new file mode 100644 index 000000000..abc1d7b36 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/551934479ea1092b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/552fd982d72a1bac_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/552fd982d72a1bac_0 new file mode 100644 index 000000000..03c006e65 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/552fd982d72a1bac_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/55481108ffc023a1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/55481108ffc023a1_0 new file mode 100644 index 000000000..4e65d3000 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/55481108ffc023a1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/554fae6c8b337ae3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/554fae6c8b337ae3_0 new file mode 100644 index 000000000..1f0ebe209 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/554fae6c8b337ae3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/55575efb2ddb260c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/55575efb2ddb260c_0 new file mode 100644 index 000000000..d93c4fd43 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/55575efb2ddb260c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/55679a48151adea2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/55679a48151adea2_0 new file mode 100644 index 000000000..d304abcfd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/55679a48151adea2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5575c42ae61e3afd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5575c42ae61e3afd_0 new file mode 100644 index 000000000..cd9146907 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5575c42ae61e3afd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5587d1573a808688_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5587d1573a808688_0 new file mode 100644 index 000000000..7ba86a33d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5587d1573a808688_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5590ab5984470755_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5590ab5984470755_0 new file mode 100644 index 000000000..d10be647c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5590ab5984470755_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/55e72cf6583c61ab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/55e72cf6583c61ab_0 new file mode 100644 index 000000000..f52fb8ffe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/55e72cf6583c61ab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/55ee062e8db09a21_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/55ee062e8db09a21_0 new file mode 100644 index 000000000..8bd585857 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/55ee062e8db09a21_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/55f5835e0b59ddd6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/55f5835e0b59ddd6_0 new file mode 100644 index 000000000..5ed955fb2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/55f5835e0b59ddd6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/55f8e7fa239dd514_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/55f8e7fa239dd514_0 new file mode 100644 index 000000000..45d9305f5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/55f8e7fa239dd514_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/560951ec05d86890_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/560951ec05d86890_0 new file mode 100644 index 000000000..ab595964e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/560951ec05d86890_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/56463133e871048c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/56463133e871048c_0 new file mode 100644 index 000000000..31289d65d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/56463133e871048c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5660ad6c265870a3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5660ad6c265870a3_0 new file mode 100644 index 000000000..e4b59b4d8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5660ad6c265870a3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/56649ac28a0280c7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/56649ac28a0280c7_0 new file mode 100644 index 000000000..df96cdbb4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/56649ac28a0280c7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/566a4c198915aae0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/566a4c198915aae0_0 new file mode 100644 index 000000000..64570940c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/566a4c198915aae0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/568764f73862d158_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/568764f73862d158_0 new file mode 100644 index 000000000..70c52d3b1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/568764f73862d158_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/568bf3542eeda07b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/568bf3542eeda07b_0 new file mode 100644 index 000000000..01b107af6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/568bf3542eeda07b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/56908179f3359369_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/56908179f3359369_0 new file mode 100644 index 000000000..5577724cf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/56908179f3359369_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/569d85fde741bbc9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/569d85fde741bbc9_0 new file mode 100644 index 000000000..53e05f537 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/569d85fde741bbc9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/56c875bcbc37b261_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/56c875bcbc37b261_0 new file mode 100644 index 000000000..30ad8f0ab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/56c875bcbc37b261_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/56d8a785d8582ab5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/56d8a785d8582ab5_0 new file mode 100644 index 000000000..24c05c1d3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/56d8a785d8582ab5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/56f1fafaa0dee0b8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/56f1fafaa0dee0b8_0 new file mode 100644 index 000000000..37e97edd4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/56f1fafaa0dee0b8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/56ff1e8116fbdd92_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/56ff1e8116fbdd92_0 new file mode 100644 index 000000000..1c2765f02 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/56ff1e8116fbdd92_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/57144355eb6f5a47_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/57144355eb6f5a47_0 new file mode 100644 index 000000000..0b60b1a1a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/57144355eb6f5a47_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5737ed9f69240087_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5737ed9f69240087_0 new file mode 100644 index 000000000..8b9c31486 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5737ed9f69240087_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/573c34e4bf61dc1c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/573c34e4bf61dc1c_0 new file mode 100644 index 000000000..10c740efc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/573c34e4bf61dc1c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/574496eae4e22055_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/574496eae4e22055_0 new file mode 100644 index 000000000..17c261a74 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/574496eae4e22055_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/574862d50a9f7bd5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/574862d50a9f7bd5_0 new file mode 100644 index 000000000..c8b698690 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/574862d50a9f7bd5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/575e268143b2b9d1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/575e268143b2b9d1_0 new file mode 100644 index 000000000..0ad924cd4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/575e268143b2b9d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/575fdfe64d6250e1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/575fdfe64d6250e1_0 new file mode 100644 index 000000000..bda172950 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/575fdfe64d6250e1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5771fed3918da5e5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5771fed3918da5e5_0 new file mode 100644 index 000000000..6ca98686e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5771fed3918da5e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/57800e64c6931d65_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/57800e64c6931d65_0 new file mode 100644 index 000000000..d862a9f51 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/57800e64c6931d65_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/578635d4808c1f8b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/578635d4808c1f8b_0 new file mode 100644 index 000000000..aaf38bb92 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/578635d4808c1f8b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/57929f011bfc0aba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/57929f011bfc0aba_0 index 9453d44d4..bc637f726 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/57929f011bfc0aba_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/57929f011bfc0aba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/57a98635ccebdabc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/57a98635ccebdabc_0 new file mode 100644 index 000000000..bb7fe1a08 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/57a98635ccebdabc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/57bfa78aa5be4066_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/57bfa78aa5be4066_0 new file mode 100644 index 000000000..fe0101a9c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/57bfa78aa5be4066_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/57d9703007e881ce_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/57d9703007e881ce_0 new file mode 100644 index 000000000..7263d2767 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/57d9703007e881ce_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/57d97ff734351714_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/57d97ff734351714_0 new file mode 100644 index 000000000..5e289dfb9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/57d97ff734351714_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/57dc31825d922486_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/57dc31825d922486_0 new file mode 100644 index 000000000..5c0c5cbf8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/57dc31825d922486_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/57f100ab447d1d2e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/57f100ab447d1d2e_0 new file mode 100644 index 000000000..1192a5864 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/57f100ab447d1d2e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/58088435118741d9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/58088435118741d9_0 new file mode 100644 index 000000000..c3dab59c9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/58088435118741d9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/581354d703c9cb53_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/581354d703c9cb53_0 new file mode 100644 index 000000000..7298c433a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/581354d703c9cb53_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/58316f6c86961bea_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/58316f6c86961bea_0 new file mode 100644 index 000000000..b9fa1f09e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/58316f6c86961bea_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/583415c4677e3690_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/583415c4677e3690_0 new file mode 100644 index 000000000..7e76d3551 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/583415c4677e3690_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/583a219c286cf638_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/583a219c286cf638_0 new file mode 100644 index 000000000..1db2ce87a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/583a219c286cf638_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/58429cb05cd6db54_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/58429cb05cd6db54_0 new file mode 100644 index 000000000..88cc93eea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/58429cb05cd6db54_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/584453650317e224_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/584453650317e224_0 new file mode 100644 index 000000000..a4ba26ab3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/584453650317e224_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5849a25a59cde1ab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5849a25a59cde1ab_0 new file mode 100644 index 000000000..7cf686b68 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5849a25a59cde1ab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/58520240e86bf1aa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/58520240e86bf1aa_0 new file mode 100644 index 000000000..e08b47999 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/58520240e86bf1aa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5874d98b77d5fb08_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5874d98b77d5fb08_0 new file mode 100644 index 000000000..720f4a0d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5874d98b77d5fb08_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/58802a9e082b7d45_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/58802a9e082b7d45_0 new file mode 100644 index 000000000..6dc512734 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/58802a9e082b7d45_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5880d816cefb2694_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5880d816cefb2694_0 new file mode 100644 index 000000000..c858bd2d2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5880d816cefb2694_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/588ec43fd0718a4b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/588ec43fd0718a4b_0 new file mode 100644 index 000000000..0d71e48cc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/588ec43fd0718a4b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/588fffab95fd457a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/588fffab95fd457a_0 new file mode 100644 index 000000000..901dd348d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/588fffab95fd457a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5891f8835ba85be7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5891f8835ba85be7_0 new file mode 100644 index 000000000..72845849c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5891f8835ba85be7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/58c7a1ee0ef6eb6b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/58c7a1ee0ef6eb6b_0 new file mode 100644 index 000000000..02b9faa07 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/58c7a1ee0ef6eb6b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/58c8220c7ebf29c4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/58c8220c7ebf29c4_0 index c1aea4df4..1529bd3f8 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/58c8220c7ebf29c4_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/58c8220c7ebf29c4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/58e7d37f4939e2b9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/58e7d37f4939e2b9_0 new file mode 100644 index 000000000..7c189b058 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/58e7d37f4939e2b9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/58f8608383d6e1ee_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/58f8608383d6e1ee_0 new file mode 100644 index 000000000..2ab591c64 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/58f8608383d6e1ee_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/590ed4df3dbb6012_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/590ed4df3dbb6012_0 new file mode 100644 index 000000000..05ff1cd5a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/590ed4df3dbb6012_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/591007e720e38d8e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/591007e720e38d8e_0 new file mode 100644 index 000000000..d07ccce07 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/591007e720e38d8e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5911544eb5b2109e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5911544eb5b2109e_0 index 9118db403..824c9037f 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5911544eb5b2109e_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5911544eb5b2109e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/592a0c2d0791259c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/592a0c2d0791259c_0 new file mode 100644 index 000000000..a269f434c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/592a0c2d0791259c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/596eafa065ed7a34_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/596eafa065ed7a34_0 new file mode 100644 index 000000000..46d0abd74 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/596eafa065ed7a34_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5980243a2adf305e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5980243a2adf305e_0 new file mode 100644 index 000000000..9c347c069 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5980243a2adf305e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/59936c2d3209ad64_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/59936c2d3209ad64_0 new file mode 100644 index 000000000..454dff0ff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/59936c2d3209ad64_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/59b518c3dc5fff5c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/59b518c3dc5fff5c_0 new file mode 100644 index 000000000..51f50d782 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/59b518c3dc5fff5c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/59b8d382c8852a15_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/59b8d382c8852a15_0 new file mode 100644 index 000000000..f62a14f2e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/59b8d382c8852a15_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/59bc5c72ea2495f8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/59bc5c72ea2495f8_0 new file mode 100644 index 000000000..d167d28bf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/59bc5c72ea2495f8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/59bfbb191eb2387c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/59bfbb191eb2387c_0 new file mode 100644 index 000000000..a0754c701 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/59bfbb191eb2387c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/59c0e8875506bf44_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/59c0e8875506bf44_0 new file mode 100644 index 000000000..074b5c2f9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/59c0e8875506bf44_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/59cffc216d4cf2bf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/59cffc216d4cf2bf_0 new file mode 100644 index 000000000..2aa37e22c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/59cffc216d4cf2bf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a06edf824b31aad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a06edf824b31aad_0 new file mode 100644 index 000000000..53e525f14 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a06edf824b31aad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a07fefb724dd7f2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a07fefb724dd7f2_0 new file mode 100644 index 000000000..26cb4475b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a07fefb724dd7f2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a302e5ae0f7fa67_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a302e5ae0f7fa67_0 new file mode 100644 index 000000000..dbdc0d748 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a302e5ae0f7fa67_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a347af9a229a71f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a347af9a229a71f_0 new file mode 100644 index 000000000..76474f356 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a347af9a229a71f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a3eb6c67e1ecd15_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a3eb6c67e1ecd15_0 new file mode 100644 index 000000000..60e96a7f4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a3eb6c67e1ecd15_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a410ed5319651bf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a410ed5319651bf_0 new file mode 100644 index 000000000..655c8360b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a410ed5319651bf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a489d447eae1272_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a489d447eae1272_0 new file mode 100644 index 000000000..f03b0b5cb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a489d447eae1272_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a4e381195336922_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a4e381195336922_0 new file mode 100644 index 000000000..843045efe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a4e381195336922_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a5339d696ae83b8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a5339d696ae83b8_0 new file mode 100644 index 000000000..3f5c3ce43 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a5339d696ae83b8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a5b8f2e93a82d00_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a5b8f2e93a82d00_0 new file mode 100644 index 000000000..20a98274d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a5b8f2e93a82d00_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a6061f591a6d339_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a6061f591a6d339_0 new file mode 100644 index 000000000..50d5c1cfe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a6061f591a6d339_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a74c09da656ec2e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a74c09da656ec2e_0 new file mode 100644 index 000000000..c67717763 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a74c09da656ec2e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a81f908c9f9cc2c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a81f908c9f9cc2c_0 new file mode 100644 index 000000000..5a6f56943 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a81f908c9f9cc2c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a8928cee3dca1a7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a8928cee3dca1a7_0 new file mode 100644 index 000000000..2065fbf6a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a8928cee3dca1a7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a8e81187cc43fd4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a8e81187cc43fd4_0 new file mode 100644 index 000000000..88eb2d39c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a8e81187cc43fd4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a8ef6a0e802ec85_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a8ef6a0e802ec85_0 new file mode 100644 index 000000000..300212ead Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a8ef6a0e802ec85_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a97108de29bc590_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a97108de29bc590_0 new file mode 100644 index 000000000..01dc8bcd4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a97108de29bc590_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a9c0c44419594e9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a9c0c44419594e9_0 new file mode 100644 index 000000000..bc2243e55 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a9c0c44419594e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a9f49c11fbec850_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a9f49c11fbec850_0 new file mode 100644 index 000000000..06890ae83 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5a9f49c11fbec850_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5aa359bfc30d1078_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5aa359bfc30d1078_0 new file mode 100644 index 000000000..c6219cf5b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5aa359bfc30d1078_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5aaa895f83f84677_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5aaa895f83f84677_0 new file mode 100644 index 000000000..9ce9f1e37 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5aaa895f83f84677_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5abe8011a407f712_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5abe8011a407f712_0 new file mode 100644 index 000000000..2137f97e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5abe8011a407f712_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ac1562d3daa8b5f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ac1562d3daa8b5f_0 new file mode 100644 index 000000000..608e0910b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ac1562d3daa8b5f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ad8ad5c49c0c728_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ad8ad5c49c0c728_0 new file mode 100644 index 000000000..76c4543e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ad8ad5c49c0c728_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ad93f0d40baf500_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ad93f0d40baf500_0 new file mode 100644 index 000000000..73c92d30e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ad93f0d40baf500_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b10732ff4860795_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b10732ff4860795_0 new file mode 100644 index 000000000..304775f03 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b10732ff4860795_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b12fed260b96692_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b12fed260b96692_0 new file mode 100644 index 000000000..eda397a7d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b12fed260b96692_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b1eaa2d1fc88694_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b1eaa2d1fc88694_0 new file mode 100644 index 000000000..2b19f6882 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b1eaa2d1fc88694_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b20bcd46893806d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b20bcd46893806d_0 new file mode 100644 index 000000000..387ab088d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b20bcd46893806d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b211fcb57e29f44_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b211fcb57e29f44_0 new file mode 100644 index 000000000..9bbf6b5d3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b211fcb57e29f44_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b42a760fd49dfd6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b42a760fd49dfd6_0 new file mode 100644 index 000000000..591b569fc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b42a760fd49dfd6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b46a1f8503c872d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b46a1f8503c872d_0 new file mode 100644 index 000000000..a32271d19 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b46a1f8503c872d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b500e23a31120a3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b500e23a31120a3_0 new file mode 100644 index 000000000..afcec3ed1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b500e23a31120a3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b61af111156e21d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b61af111156e21d_0 new file mode 100644 index 000000000..22e9f5e03 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b61af111156e21d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b6723a3ba2efe98_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b6723a3ba2efe98_0 new file mode 100644 index 000000000..92458499d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b6723a3ba2efe98_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b78d4f867f262c9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b78d4f867f262c9_0 new file mode 100644 index 000000000..e8da9f670 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5b78d4f867f262c9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5bb257c41a024f20_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5bb257c41a024f20_0 new file mode 100644 index 000000000..d103c6056 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5bb257c41a024f20_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5bbb4df0d960df8c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5bbb4df0d960df8c_0 new file mode 100644 index 000000000..a47331ab5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5bbb4df0d960df8c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5bbe613551520276_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5bbe613551520276_0 new file mode 100644 index 000000000..0f0d82e80 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5bbe613551520276_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5be2bf4c70bdb802_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5be2bf4c70bdb802_0 new file mode 100644 index 000000000..a1c11b214 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5be2bf4c70bdb802_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5bea4ee2b72ccc96_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5bea4ee2b72ccc96_0 new file mode 100644 index 000000000..d1466ec79 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5bea4ee2b72ccc96_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c10737d4f036e69_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c10737d4f036e69_0 new file mode 100644 index 000000000..764a5ce78 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c10737d4f036e69_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c17791338069e0b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c17791338069e0b_0 new file mode 100644 index 000000000..e302bbe81 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c17791338069e0b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c2b1f0d09997ef7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c2b1f0d09997ef7_0 new file mode 100644 index 000000000..33012d9ed Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c2b1f0d09997ef7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c68299b888e6356_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c68299b888e6356_0 new file mode 100644 index 000000000..f917a6e97 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c68299b888e6356_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c7be4fa35730d6e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c7be4fa35730d6e_0 new file mode 100644 index 000000000..8ca8e4891 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c7be4fa35730d6e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c9367de991620f0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c9367de991620f0_0 new file mode 100644 index 000000000..9be3cf313 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c9367de991620f0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c94321b7f9da257_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c94321b7f9da257_0 new file mode 100644 index 000000000..cb4143f28 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5c94321b7f9da257_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ca1405aaa33f37c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ca1405aaa33f37c_0 new file mode 100644 index 000000000..86311225a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ca1405aaa33f37c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5cba1066a8af8a08_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5cba1066a8af8a08_0 new file mode 100644 index 000000000..1363e7606 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5cba1066a8af8a08_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5cd541ca70fbcbc0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5cd541ca70fbcbc0_0 new file mode 100644 index 000000000..f6af6b4a5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5cd541ca70fbcbc0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5cda974d94349145_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5cda974d94349145_0 new file mode 100644 index 000000000..14a29a5a7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5cda974d94349145_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5cdc337b618337a7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5cdc337b618337a7_0 new file mode 100644 index 000000000..f9ff2853a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5cdc337b618337a7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5cf2f0a7da7026fe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5cf2f0a7da7026fe_0 new file mode 100644 index 000000000..ba8a1dc34 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5cf2f0a7da7026fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d0da21394579499_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d0da21394579499_0 new file mode 100644 index 000000000..fb7a26ae6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d0da21394579499_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d0e5f4711249ea2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d0e5f4711249ea2_0 new file mode 100644 index 000000000..f68a9541d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d0e5f4711249ea2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d1c45e84b3e3559_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d1c45e84b3e3559_0 new file mode 100644 index 000000000..3c2d5f347 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d1c45e84b3e3559_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d2528ae6da33fe4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d2528ae6da33fe4_0 new file mode 100644 index 000000000..9e25304bf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d2528ae6da33fe4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d2c69a79f228912_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d2c69a79f228912_0 new file mode 100644 index 000000000..a68aaa8ce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d2c69a79f228912_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d542e43389e0ad2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d542e43389e0ad2_0 new file mode 100644 index 000000000..45a61b5cd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d542e43389e0ad2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d72256e7ccc47e8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d72256e7ccc47e8_0 new file mode 100644 index 000000000..53e7bc269 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d72256e7ccc47e8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d760c6466453b26_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d760c6466453b26_0 new file mode 100644 index 000000000..8646ecdf0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d760c6466453b26_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d7ffce34435d37a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d7ffce34435d37a_0 new file mode 100644 index 000000000..0dc513b6b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d7ffce34435d37a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d8487e232c8200e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d8487e232c8200e_0 new file mode 100644 index 000000000..8ff7afe42 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d8487e232c8200e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d865c0df277c620_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d865c0df277c620_0 new file mode 100644 index 000000000..bbc36a1f5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d865c0df277c620_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d999af6a2b56a64_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d999af6a2b56a64_0 new file mode 100644 index 000000000..e27b1bfb2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5d999af6a2b56a64_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5da64c7116629a0f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5da64c7116629a0f_0 new file mode 100644 index 000000000..ed43e90c6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5da64c7116629a0f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5daddd86aa5cb925_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5daddd86aa5cb925_0 new file mode 100644 index 000000000..46073ccc6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5daddd86aa5cb925_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5dbeaf8c86659169_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5dbeaf8c86659169_0 new file mode 100644 index 000000000..2bedfdaa8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5dbeaf8c86659169_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5dc473223b4e0dc8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5dc473223b4e0dc8_0 new file mode 100644 index 000000000..1b33ddb5d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5dc473223b4e0dc8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5dd784af94d8e80b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5dd784af94d8e80b_0 new file mode 100644 index 000000000..254994d4e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5dd784af94d8e80b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5de61cf3f036f4a9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5de61cf3f036f4a9_0 new file mode 100644 index 000000000..f43ce675c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5de61cf3f036f4a9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e014716b749fa9d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e014716b749fa9d_0 new file mode 100644 index 000000000..4121b420b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e014716b749fa9d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e0bc5f3e798a02a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e0bc5f3e798a02a_0 new file mode 100644 index 000000000..497c20130 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e0bc5f3e798a02a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e0be63466a9743e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e0be63466a9743e_0 new file mode 100644 index 000000000..1fa31e89d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e0be63466a9743e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e14f03f1e3fa1e7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e14f03f1e3fa1e7_0 new file mode 100644 index 000000000..34e2a952c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e14f03f1e3fa1e7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e1b55959af8c349_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e1b55959af8c349_0 new file mode 100644 index 000000000..d0184de22 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e1b55959af8c349_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e1b55959af8c349_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e1b55959af8c349_s new file mode 100644 index 000000000..c77382ee0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e1b55959af8c349_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e3f01bd87f6f865_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e3f01bd87f6f865_0 new file mode 100644 index 000000000..a55c3138f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e3f01bd87f6f865_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e422955459f8876_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e422955459f8876_0 new file mode 100644 index 000000000..022b99ccc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e422955459f8876_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e42900feb85f255_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e42900feb85f255_0 new file mode 100644 index 000000000..2b10c70ed Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e42900feb85f255_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e4a60601e4ecddc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e4a60601e4ecddc_0 new file mode 100644 index 000000000..46c4375df Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e4a60601e4ecddc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e5ce6251d23c7b9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e5ce6251d23c7b9_0 new file mode 100644 index 000000000..3723d2e0a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e5ce6251d23c7b9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e72663587691aa1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e72663587691aa1_0 index 4d740a295..5466df2b9 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e72663587691aa1_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e72663587691aa1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e7b8de83c1c0571_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e7b8de83c1c0571_0 new file mode 100644 index 000000000..c3fddb3cc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e7b8de83c1c0571_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e8c3b8cfa956528_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e8c3b8cfa956528_0 new file mode 100644 index 000000000..deefb7c57 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5e8c3b8cfa956528_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5eac4420bf5ac7b9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5eac4420bf5ac7b9_0 new file mode 100644 index 000000000..3db1f9459 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5eac4420bf5ac7b9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ec371630c403419_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ec371630c403419_0 new file mode 100644 index 000000000..ed7c3d2c0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ec371630c403419_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ece9a7a7eb21a27_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ece9a7a7eb21a27_0 new file mode 100644 index 000000000..b148205ea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ece9a7a7eb21a27_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ed71c50fd44b06b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ed71c50fd44b06b_0 new file mode 100644 index 000000000..13bab8ae9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ed71c50fd44b06b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ef310e19ec6308c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ef310e19ec6308c_0 new file mode 100644 index 000000000..cba4ec3bb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5ef310e19ec6308c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f0b7e0a271aacc3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f0b7e0a271aacc3_0 new file mode 100644 index 000000000..8d59eca3b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f0b7e0a271aacc3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f236611ca1175d7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f236611ca1175d7_0 new file mode 100644 index 000000000..bf55c54ba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f236611ca1175d7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f2c49a675da3fc5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f2c49a675da3fc5_0 new file mode 100644 index 000000000..37c847312 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f2c49a675da3fc5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f34daeb29561ad4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f34daeb29561ad4_0 new file mode 100644 index 000000000..63fe5b8d8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f34daeb29561ad4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f5754cda8e63a8d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f5754cda8e63a8d_0 new file mode 100644 index 000000000..f726a05cc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f5754cda8e63a8d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f88f4b482f693c4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f88f4b482f693c4_0 new file mode 100644 index 000000000..6177d6a6b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f88f4b482f693c4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f985e15ce3b7405_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f985e15ce3b7405_0 new file mode 100644 index 000000000..40dd22c51 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f985e15ce3b7405_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f9bb88ef00469cd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f9bb88ef00469cd_0 new file mode 100644 index 000000000..31caf901e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5f9bb88ef00469cd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5fa6e667e9a43f9b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5fa6e667e9a43f9b_0 new file mode 100644 index 000000000..18089179f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5fa6e667e9a43f9b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5fb784f89a3dd432_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5fb784f89a3dd432_0 new file mode 100644 index 000000000..2524d7b0e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5fb784f89a3dd432_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5fc72d90af05c63b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5fc72d90af05c63b_0 new file mode 100644 index 000000000..9c0676134 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5fc72d90af05c63b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5feb485c97299be2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5feb485c97299be2_0 index b09020fb3..cc993f4e8 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5feb485c97299be2_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5feb485c97299be2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/5feeaebdf042f7ac_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5feeaebdf042f7ac_0 new file mode 100644 index 000000000..7a0ad3467 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/5feeaebdf042f7ac_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/602b37dd141083c2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/602b37dd141083c2_0 new file mode 100644 index 000000000..918212821 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/602b37dd141083c2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/602d3549e25fd714_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/602d3549e25fd714_0 index d3c94d10e..286656097 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/602d3549e25fd714_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/602d3549e25fd714_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/60334030fe7091ad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/60334030fe7091ad_0 new file mode 100644 index 000000000..fc33c70f5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/60334030fe7091ad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/603f7824e3403e43_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/603f7824e3403e43_0 new file mode 100644 index 000000000..c8cd0890a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/603f7824e3403e43_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6045aab86e807e1f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6045aab86e807e1f_0 new file mode 100644 index 000000000..d42dfefab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6045aab86e807e1f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/604af750e2d2be33_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/604af750e2d2be33_0 new file mode 100644 index 000000000..b16c66b21 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/604af750e2d2be33_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/606ba451a6e37226_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/606ba451a6e37226_0 new file mode 100644 index 000000000..74bd27ec6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/606ba451a6e37226_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/606d99774bcafab4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/606d99774bcafab4_0 new file mode 100644 index 000000000..04ea07333 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/606d99774bcafab4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/606e752599fd5a11_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/606e752599fd5a11_0 new file mode 100644 index 000000000..8dae4eb92 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/606e752599fd5a11_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/60750b4687fc5a72_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/60750b4687fc5a72_0 new file mode 100644 index 000000000..09ffabb79 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/60750b4687fc5a72_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6097a446363af0ec_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6097a446363af0ec_0 new file mode 100644 index 000000000..d9e642890 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6097a446363af0ec_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/60a8021967bc2cf5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/60a8021967bc2cf5_0 new file mode 100644 index 000000000..72fbb4a08 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/60a8021967bc2cf5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/60acd532b12c7dc0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/60acd532b12c7dc0_0 new file mode 100644 index 000000000..085e744cf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/60acd532b12c7dc0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/60bf88cba62da35f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/60bf88cba62da35f_0 new file mode 100644 index 000000000..59586cb04 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/60bf88cba62da35f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/60c203e417767e84_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/60c203e417767e84_0 new file mode 100644 index 000000000..03c615881 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/60c203e417767e84_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/60cf42af71de7475_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/60cf42af71de7475_0 new file mode 100644 index 000000000..c8aa28b0b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/60cf42af71de7475_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/60f9633b49ffcb35_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/60f9633b49ffcb35_0 new file mode 100644 index 000000000..3fca3c8a2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/60f9633b49ffcb35_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/610ce261e4f19ac8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/610ce261e4f19ac8_0 new file mode 100644 index 000000000..88479a244 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/610ce261e4f19ac8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/611de73156f80b1f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/611de73156f80b1f_0 new file mode 100644 index 000000000..d54807a1b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/611de73156f80b1f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6123383205048a72_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6123383205048a72_0 new file mode 100644 index 000000000..c6931c22c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6123383205048a72_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6149e99724ce696f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6149e99724ce696f_0 new file mode 100644 index 000000000..2f622382b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6149e99724ce696f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/614f8bc591bef03b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/614f8bc591bef03b_0 new file mode 100644 index 000000000..c6967c87f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/614f8bc591bef03b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/618313d6365bd381_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/618313d6365bd381_0 new file mode 100644 index 000000000..f501d0d5a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/618313d6365bd381_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/619ce8ff786808fa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/619ce8ff786808fa_0 new file mode 100644 index 000000000..90b23e90e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/619ce8ff786808fa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/61a98fe78abf6e06_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/61a98fe78abf6e06_0 new file mode 100644 index 000000000..19b7b0fdc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/61a98fe78abf6e06_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/61b5ed5523afc589_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/61b5ed5523afc589_0 new file mode 100644 index 000000000..31ae731f6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/61b5ed5523afc589_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/61c36ecbf413af33_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/61c36ecbf413af33_0 new file mode 100644 index 000000000..8dddfd743 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/61c36ecbf413af33_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/61cc77d2fe0e543a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/61cc77d2fe0e543a_0 new file mode 100644 index 000000000..aeb7cbe89 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/61cc77d2fe0e543a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/61d0eee6000385ce_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/61d0eee6000385ce_0 new file mode 100644 index 000000000..167cb122c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/61d0eee6000385ce_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/61d542d78b00e695_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/61d542d78b00e695_0 new file mode 100644 index 000000000..193b174ba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/61d542d78b00e695_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/61dfc9f452247b13_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/61dfc9f452247b13_0 new file mode 100644 index 000000000..3c4ac1d0a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/61dfc9f452247b13_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/61e7383be82cc913_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/61e7383be82cc913_0 new file mode 100644 index 000000000..6f7c0a73e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/61e7383be82cc913_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/61f36dba932049a5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/61f36dba932049a5_0 new file mode 100644 index 000000000..51b45099b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/61f36dba932049a5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6203fd1881d8d6b5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6203fd1881d8d6b5_0 index 08ad4e3d5..3796450b3 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6203fd1881d8d6b5_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6203fd1881d8d6b5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/620e5b8a4a325de6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/620e5b8a4a325de6_0 new file mode 100644 index 000000000..3926b6240 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/620e5b8a4a325de6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/624d5e7d7e8da19f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/624d5e7d7e8da19f_0 new file mode 100644 index 000000000..dace3c123 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/624d5e7d7e8da19f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/624dbc650b9134a8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/624dbc650b9134a8_0 new file mode 100644 index 000000000..fbd687b8e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/624dbc650b9134a8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/62782a7803891c12_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/62782a7803891c12_0 new file mode 100644 index 000000000..9b56d97d1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/62782a7803891c12_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6287e997bf1cb8c5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6287e997bf1cb8c5_0 new file mode 100644 index 000000000..a79c4fb22 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6287e997bf1cb8c5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/629ba76cf688e2e6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/629ba76cf688e2e6_0 new file mode 100644 index 000000000..6bdcdbe68 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/629ba76cf688e2e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/62af136d88ea165c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/62af136d88ea165c_0 new file mode 100644 index 000000000..85fd06755 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/62af136d88ea165c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/62b62a40dc389102_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/62b62a40dc389102_0 new file mode 100644 index 000000000..1fffffe68 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/62b62a40dc389102_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/62b99933d2628ae2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/62b99933d2628ae2_0 new file mode 100644 index 000000000..7a83b7099 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/62b99933d2628ae2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/62ccda05d009d8d8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/62ccda05d009d8d8_0 new file mode 100644 index 000000000..eea608a41 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/62ccda05d009d8d8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/62e20c59db94e134_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/62e20c59db94e134_0 new file mode 100644 index 000000000..d50c33f1b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/62e20c59db94e134_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/62f2542baca05c74_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/62f2542baca05c74_0 new file mode 100644 index 000000000..e5d8c5b3f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/62f2542baca05c74_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/62f5bf530526f16f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/62f5bf530526f16f_0 new file mode 100644 index 000000000..eca316be3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/62f5bf530526f16f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/62ff859f38a632b2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/62ff859f38a632b2_0 new file mode 100644 index 000000000..ba4eab999 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/62ff859f38a632b2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6302dbd545886c99_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6302dbd545886c99_0 new file mode 100644 index 000000000..3491efb41 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6302dbd545886c99_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/630718b1d784ade9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/630718b1d784ade9_0 new file mode 100644 index 000000000..90ecc3fec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/630718b1d784ade9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/630872eee3cccd6e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/630872eee3cccd6e_0 new file mode 100644 index 000000000..65d0cfb0b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/630872eee3cccd6e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/632fee5d9bbc2fd6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/632fee5d9bbc2fd6_0 new file mode 100644 index 000000000..87e27de79 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/632fee5d9bbc2fd6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6342dd1a66175672_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6342dd1a66175672_0 new file mode 100644 index 000000000..4cede48ab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6342dd1a66175672_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6346002be924b533_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6346002be924b533_0 new file mode 100644 index 000000000..2c63e00a2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6346002be924b533_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6352276c86705469_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6352276c86705469_0 new file mode 100644 index 000000000..69519d9db Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6352276c86705469_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6361d5e95951e2e8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6361d5e95951e2e8_0 new file mode 100644 index 000000000..6c9ceff15 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6361d5e95951e2e8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/639430ff4071fe48_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/639430ff4071fe48_0 new file mode 100644 index 000000000..5190dbcc0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/639430ff4071fe48_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/639f7bb937781480_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/639f7bb937781480_0 new file mode 100644 index 000000000..abc731968 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/639f7bb937781480_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/63a968435e6f2746_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/63a968435e6f2746_0 new file mode 100644 index 000000000..a1a66d153 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/63a968435e6f2746_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/63d114c9e57f41d1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/63d114c9e57f41d1_0 new file mode 100644 index 000000000..0b704ae44 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/63d114c9e57f41d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/63ded4728ef7eb2f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/63ded4728ef7eb2f_0 new file mode 100644 index 000000000..65c218dc0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/63ded4728ef7eb2f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/63fb0ec6fdc67ca3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/63fb0ec6fdc67ca3_0 new file mode 100644 index 000000000..f8103bbe8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/63fb0ec6fdc67ca3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/63fded6a7ff770cb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/63fded6a7ff770cb_0 new file mode 100644 index 000000000..57a9ff69d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/63fded6a7ff770cb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/64012f9dbd849979_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/64012f9dbd849979_0 new file mode 100644 index 000000000..16b6b3c2c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/64012f9dbd849979_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/640bde5f22acd8e9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/640bde5f22acd8e9_0 new file mode 100644 index 000000000..0eb4f8f7a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/640bde5f22acd8e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/641a44189345de71_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/641a44189345de71_0 new file mode 100644 index 000000000..474d26e32 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/641a44189345de71_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/643345e80d4f92a8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/643345e80d4f92a8_0 new file mode 100644 index 000000000..ac210e04e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/643345e80d4f92a8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6444648e01e39e00_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6444648e01e39e00_0 new file mode 100644 index 000000000..3bba08bd4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6444648e01e39e00_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6453adc51f203131_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6453adc51f203131_0 new file mode 100644 index 000000000..b5d4a822d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6453adc51f203131_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/645df63219cfe97a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/645df63219cfe97a_0 new file mode 100644 index 000000000..3efa2b66f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/645df63219cfe97a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/646105bc9eec6a32_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/646105bc9eec6a32_0 new file mode 100644 index 000000000..08db20708 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/646105bc9eec6a32_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/648e032a47118368_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/648e032a47118368_0 new file mode 100644 index 000000000..f869ee356 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/648e032a47118368_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/649b46ba2ed11608_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/649b46ba2ed11608_0 new file mode 100644 index 000000000..3886a3d7d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/649b46ba2ed11608_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/64a8491e14f67478_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/64a8491e14f67478_0 new file mode 100644 index 000000000..f4df2b706 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/64a8491e14f67478_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/64b49960ff00b207_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/64b49960ff00b207_0 new file mode 100644 index 000000000..da0d403ea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/64b49960ff00b207_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/64e731163cca7974_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/64e731163cca7974_0 new file mode 100644 index 000000000..2d013f6b0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/64e731163cca7974_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/64eb33f47e6c786f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/64eb33f47e6c786f_0 new file mode 100644 index 000000000..e1d323c45 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/64eb33f47e6c786f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/64f36c939523e35d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/64f36c939523e35d_0 new file mode 100644 index 000000000..08e3f1a08 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/64f36c939523e35d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/64fbc55193d83855_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/64fbc55193d83855_0 new file mode 100644 index 000000000..7c0270944 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/64fbc55193d83855_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/651f80f87716dbf2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/651f80f87716dbf2_0 new file mode 100644 index 000000000..045aa0f55 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/651f80f87716dbf2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6526c7cf8fa86a72_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6526c7cf8fa86a72_0 new file mode 100644 index 000000000..044af4156 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6526c7cf8fa86a72_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6528dd802104768f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6528dd802104768f_0 new file mode 100644 index 000000000..aaed8b717 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6528dd802104768f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/652dee5568e2a893_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/652dee5568e2a893_0 new file mode 100644 index 000000000..fdadd439f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/652dee5568e2a893_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/652e0ed89637ff7c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/652e0ed89637ff7c_0 new file mode 100644 index 000000000..42b0a4e37 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/652e0ed89637ff7c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/652f655655583d69_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/652f655655583d69_0 new file mode 100644 index 000000000..fdaedb5b7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/652f655655583d69_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6531584d5f639694_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6531584d5f639694_0 new file mode 100644 index 000000000..99b10d7d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6531584d5f639694_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/653a4235004e4368_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/653a4235004e4368_0 new file mode 100644 index 000000000..de8cfcbb0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/653a4235004e4368_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/653e2c3a83a161ad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/653e2c3a83a161ad_0 new file mode 100644 index 000000000..d7ce19ee5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/653e2c3a83a161ad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6563eba0bd1c5360_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6563eba0bd1c5360_0 new file mode 100644 index 000000000..80483a32e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6563eba0bd1c5360_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6567d9bca1f4ebbf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6567d9bca1f4ebbf_0 new file mode 100644 index 000000000..69e671236 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6567d9bca1f4ebbf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/659162f9061586f6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/659162f9061586f6_0 new file mode 100644 index 000000000..c430afb19 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/659162f9061586f6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6591cb89cd7f54cd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6591cb89cd7f54cd_0 new file mode 100644 index 000000000..437f81636 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6591cb89cd7f54cd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/65aa10e3932dbc2c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/65aa10e3932dbc2c_0 new file mode 100644 index 000000000..0ac1c9b02 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/65aa10e3932dbc2c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/65de9328c65dfd83_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/65de9328c65dfd83_0 new file mode 100644 index 000000000..7ee6c891b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/65de9328c65dfd83_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6621e02226bc6945_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6621e02226bc6945_0 new file mode 100644 index 000000000..ccb650fc2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6621e02226bc6945_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6639344242d1b614_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6639344242d1b614_0 new file mode 100644 index 000000000..95f6661b2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6639344242d1b614_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6658ca3f2401283b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6658ca3f2401283b_0 new file mode 100644 index 000000000..4f174168a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6658ca3f2401283b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/666730acbf8d61c7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/666730acbf8d61c7_0 new file mode 100644 index 000000000..476da9255 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/666730acbf8d61c7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/66678cee62374235_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66678cee62374235_0 new file mode 100644 index 000000000..908b094ff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66678cee62374235_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/66796a438a26275a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66796a438a26275a_0 new file mode 100644 index 000000000..685ba9ecc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66796a438a26275a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/668858d7ec3ed844_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/668858d7ec3ed844_0 new file mode 100644 index 000000000..b6afd7ad5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/668858d7ec3ed844_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/66991c6b7c5b6985_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66991c6b7c5b6985_0 new file mode 100644 index 000000000..aee252c23 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66991c6b7c5b6985_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/669e63f221989e1a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/669e63f221989e1a_0 new file mode 100644 index 000000000..c0c894215 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/669e63f221989e1a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/669f2209fca288ef_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/669f2209fca288ef_0 new file mode 100644 index 000000000..cbea79544 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/669f2209fca288ef_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/66a0ace696d2148a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66a0ace696d2148a_0 new file mode 100644 index 000000000..9a8b0d653 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66a0ace696d2148a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/66b3217ab5e1ca76_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66b3217ab5e1ca76_0 new file mode 100644 index 000000000..3009de5ae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66b3217ab5e1ca76_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/66b76839473a5820_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66b76839473a5820_0 new file mode 100644 index 000000000..23ae61891 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66b76839473a5820_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/66c8c5aebdaf9099_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66c8c5aebdaf9099_0 new file mode 100644 index 000000000..7c64c17ff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66c8c5aebdaf9099_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/66d6b96052ee168c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66d6b96052ee168c_0 new file mode 100644 index 000000000..576566a50 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66d6b96052ee168c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/66dd1e519114ba11_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66dd1e519114ba11_0 new file mode 100644 index 000000000..a416057c5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66dd1e519114ba11_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/66e38272ae0ad8bc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66e38272ae0ad8bc_0 new file mode 100644 index 000000000..3f4033da7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66e38272ae0ad8bc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/66e7945cb5d6627d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66e7945cb5d6627d_0 new file mode 100644 index 000000000..0c9a5ad98 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/66e7945cb5d6627d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/671c1ed6bed6d3bf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/671c1ed6bed6d3bf_0 new file mode 100644 index 000000000..e48949c1b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/671c1ed6bed6d3bf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6735ac62e60b9d38_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6735ac62e60b9d38_0 new file mode 100644 index 000000000..832637fc8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6735ac62e60b9d38_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/675551f273cbb306_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/675551f273cbb306_0 new file mode 100644 index 000000000..0944a89f1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/675551f273cbb306_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/676a237ceab3b80a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/676a237ceab3b80a_0 new file mode 100644 index 000000000..511c38a80 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/676a237ceab3b80a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/679065c270777b4e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/679065c270777b4e_0 new file mode 100644 index 000000000..53aae548a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/679065c270777b4e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6792988c502a24f6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6792988c502a24f6_0 new file mode 100644 index 000000000..17a8a4e99 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6792988c502a24f6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/679db38f7ce2f426_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/679db38f7ce2f426_0 new file mode 100644 index 000000000..a5ca91885 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/679db38f7ce2f426_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/67afe36d8d65fb7b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/67afe36d8d65fb7b_0 new file mode 100644 index 000000000..be77aa67a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/67afe36d8d65fb7b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/67ba32faa9510d01_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/67ba32faa9510d01_0 new file mode 100644 index 000000000..2acc828b2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/67ba32faa9510d01_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/67cfc372e3ee2a2f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/67cfc372e3ee2a2f_0 new file mode 100644 index 000000000..70780aff1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/67cfc372e3ee2a2f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/67d3746d945484eb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/67d3746d945484eb_0 new file mode 100644 index 000000000..147988665 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/67d3746d945484eb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/67dd81b79887d090_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/67dd81b79887d090_0 new file mode 100644 index 000000000..5eb062019 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/67dd81b79887d090_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/67de625b439f6f93_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/67de625b439f6f93_0 new file mode 100644 index 000000000..0ee850f84 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/67de625b439f6f93_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/68094deaa76bcd71_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68094deaa76bcd71_0 new file mode 100644 index 000000000..8a6981be4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68094deaa76bcd71_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/68098ecebe8bc608_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68098ecebe8bc608_0 new file mode 100644 index 000000000..d8f70732b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68098ecebe8bc608_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/681d74e0bfa56c64_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/681d74e0bfa56c64_0 index 14de560b5..ab9e8da20 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/681d74e0bfa56c64_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/681d74e0bfa56c64_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/68415669fe8a66e7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68415669fe8a66e7_0 new file mode 100644 index 000000000..38fc14c90 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68415669fe8a66e7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6853c3044197b1c4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6853c3044197b1c4_0 new file mode 100644 index 000000000..5513906de Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6853c3044197b1c4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/685954c807438af6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/685954c807438af6_0 new file mode 100644 index 000000000..c45919ebb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/685954c807438af6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6876de924e90d5c1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6876de924e90d5c1_0 new file mode 100644 index 000000000..3db01bbd6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6876de924e90d5c1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/68870e73be38fdfc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68870e73be38fdfc_0 new file mode 100644 index 000000000..3f78a362a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68870e73be38fdfc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6889f9406b29bb9b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6889f9406b29bb9b_0 new file mode 100644 index 000000000..e7871e1ae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6889f9406b29bb9b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6892185985287222_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6892185985287222_0 new file mode 100644 index 000000000..72e2b25cd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6892185985287222_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/68a5cd43d92d4704_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68a5cd43d92d4704_0 new file mode 100644 index 000000000..5cd2a57f2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68a5cd43d92d4704_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/68b4ce3b8e033d71_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68b4ce3b8e033d71_0 new file mode 100644 index 000000000..028a3e508 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68b4ce3b8e033d71_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/68de78c0910b615e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68de78c0910b615e_0 new file mode 100644 index 000000000..6badeb533 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68de78c0910b615e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/68e0e4e708fd5b2e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68e0e4e708fd5b2e_0 new file mode 100644 index 000000000..eb6ef4248 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68e0e4e708fd5b2e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/68f5625f8e2c4d39_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68f5625f8e2c4d39_0 new file mode 100644 index 000000000..1f362a22a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68f5625f8e2c4d39_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/68f8ea3217609400_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68f8ea3217609400_0 new file mode 100644 index 000000000..a043edbfa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/68f8ea3217609400_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6905631ddd66f794_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6905631ddd66f794_0 new file mode 100644 index 000000000..9bbbabd15 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6905631ddd66f794_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/690e1f75fcfc60ea_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/690e1f75fcfc60ea_0 new file mode 100644 index 000000000..73168db5b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/690e1f75fcfc60ea_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6917f1e40f2241cd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6917f1e40f2241cd_0 new file mode 100644 index 000000000..43c60e889 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6917f1e40f2241cd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/691aa6e935dc59f4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/691aa6e935dc59f4_0 new file mode 100644 index 000000000..49455b077 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/691aa6e935dc59f4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6923119bf19b8969_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6923119bf19b8969_0 new file mode 100644 index 000000000..f851cea03 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6923119bf19b8969_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6931889aa40899e5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6931889aa40899e5_0 new file mode 100644 index 000000000..f6d149a8f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6931889aa40899e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6937c94e3fdcefdb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6937c94e3fdcefdb_0 new file mode 100644 index 000000000..e94829431 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6937c94e3fdcefdb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/69392d3f43acebff_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69392d3f43acebff_0 new file mode 100644 index 000000000..89e0fa6ac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69392d3f43acebff_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/69395bd3e0275a52_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69395bd3e0275a52_0 new file mode 100644 index 000000000..6ddc6104b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69395bd3e0275a52_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6943eddc47657b77_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6943eddc47657b77_0 new file mode 100644 index 000000000..54699bfa5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6943eddc47657b77_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/694ded9c942fdc26_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/694ded9c942fdc26_0 new file mode 100644 index 000000000..265ed3df8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/694ded9c942fdc26_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/697319022c755b54_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/697319022c755b54_0 new file mode 100644 index 000000000..274d5a611 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/697319022c755b54_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/69900044c5904b06_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69900044c5904b06_0 new file mode 100644 index 000000000..c3d084469 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69900044c5904b06_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6995a7c799490d3d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6995a7c799490d3d_0 index a12972f22..ef1277cb5 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6995a7c799490d3d_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6995a7c799490d3d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/69a82221f0c38fdd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69a82221f0c38fdd_0 new file mode 100644 index 000000000..9341b0294 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69a82221f0c38fdd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/69bffe5a6cde8300_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69bffe5a6cde8300_0 new file mode 100644 index 000000000..a9c5ac22e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69bffe5a6cde8300_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/69d35b287bd66f04_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69d35b287bd66f04_0 new file mode 100644 index 000000000..2f4d2e5cd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69d35b287bd66f04_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/69da519e4a5116e6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69da519e4a5116e6_0 new file mode 100644 index 000000000..a67d1cd7d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69da519e4a5116e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/69e13e62b0f40361_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69e13e62b0f40361_0 new file mode 100644 index 000000000..4361ab76a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69e13e62b0f40361_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/69e47325a82318e0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69e47325a82318e0_0 new file mode 100644 index 000000000..58193c706 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69e47325a82318e0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/69ef22744bc2a781_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69ef22744bc2a781_0 new file mode 100644 index 000000000..bbf611c60 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69ef22744bc2a781_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/69f3c3eaa79d66aa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69f3c3eaa79d66aa_0 new file mode 100644 index 000000000..e2338fba5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/69f3c3eaa79d66aa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a012c8195e5ff50_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a012c8195e5ff50_0 new file mode 100644 index 000000000..3c39b81c7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a012c8195e5ff50_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a0bbde271520790_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a0bbde271520790_0 new file mode 100644 index 000000000..368e1d1db Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a0bbde271520790_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a12dbe5c945c153_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a12dbe5c945c153_0 new file mode 100644 index 000000000..90e018d44 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a12dbe5c945c153_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a207bb177443341_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a207bb177443341_0 new file mode 100644 index 000000000..fc1e864a7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a207bb177443341_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a298826250bf01d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a298826250bf01d_0 new file mode 100644 index 000000000..8b8fb91a7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a298826250bf01d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a29bd62b34dd789_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a29bd62b34dd789_0 new file mode 100644 index 000000000..4b6d794b6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a29bd62b34dd789_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a3b610b5eb3787a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a3b610b5eb3787a_0 new file mode 100644 index 000000000..a1315d594 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a3b610b5eb3787a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a4ae388829a9c87_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a4ae388829a9c87_0 new file mode 100644 index 000000000..24cbc662e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a4ae388829a9c87_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a4f8bfeff8f7f15_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a4f8bfeff8f7f15_0 new file mode 100644 index 000000000..c4b43de07 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a4f8bfeff8f7f15_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a5c6aac5e48b694_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a5c6aac5e48b694_0 new file mode 100644 index 000000000..c002029f1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a5c6aac5e48b694_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a6c1d2651a49bdb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a6c1d2651a49bdb_0 new file mode 100644 index 000000000..9394e5dbe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a6c1d2651a49bdb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a9e3b326811bfb3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a9e3b326811bfb3_0 new file mode 100644 index 000000000..9bfcc5f8f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6a9e3b326811bfb3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6aaf797c7e381d5b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6aaf797c7e381d5b_0 new file mode 100644 index 000000000..3ceae9a64 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6aaf797c7e381d5b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ab840179c4dce2d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ab840179c4dce2d_0 new file mode 100644 index 000000000..9b29afb5b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ab840179c4dce2d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ac8f7b1ba5ae711_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ac8f7b1ba5ae711_0 new file mode 100644 index 000000000..942c30d2f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ac8f7b1ba5ae711_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ae11aa81d6c5820_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ae11aa81d6c5820_0 new file mode 100644 index 000000000..39320d2a2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ae11aa81d6c5820_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6af35b273f4c1809_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6af35b273f4c1809_0 new file mode 100644 index 000000000..12fad2cf2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6af35b273f4c1809_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6af46e11865b9055_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6af46e11865b9055_0 new file mode 100644 index 000000000..b789d8e8e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6af46e11865b9055_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b051a29037df077_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b051a29037df077_0 new file mode 100644 index 000000000..88ab224c5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b051a29037df077_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b0b9c944642860d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b0b9c944642860d_0 new file mode 100644 index 000000000..e7c82921c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b0b9c944642860d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b174de5967166a9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b174de5967166a9_0 new file mode 100644 index 000000000..d1a7f7dd8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b174de5967166a9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b2378fae47910ad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b2378fae47910ad_0 new file mode 100644 index 000000000..06ff8c7a4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b2378fae47910ad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b413d7abc5f7a27_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b413d7abc5f7a27_0 new file mode 100644 index 000000000..af8e83772 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b413d7abc5f7a27_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b4c422fa1c528e9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b4c422fa1c528e9_0 new file mode 100644 index 000000000..5478f6afe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b4c422fa1c528e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b4f1f4f629a28f5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b4f1f4f629a28f5_0 new file mode 100644 index 000000000..824a505e1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b4f1f4f629a28f5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b6143b3d88c5fe0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b6143b3d88c5fe0_0 new file mode 100644 index 000000000..f1943f8aa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b6143b3d88c5fe0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b746347191b28b4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b746347191b28b4_0 new file mode 100644 index 000000000..a90a65e53 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b746347191b28b4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b8863aff8cc1c80_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b8863aff8cc1c80_0 new file mode 100644 index 000000000..933f75a01 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b8863aff8cc1c80_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b893387f878dbb9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b893387f878dbb9_0 new file mode 100644 index 000000000..853018ca3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6b893387f878dbb9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6baf3d0a1f4cec5e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6baf3d0a1f4cec5e_0 new file mode 100644 index 000000000..d4598b804 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6baf3d0a1f4cec5e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6bb686ba5c57a12e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6bb686ba5c57a12e_0 new file mode 100644 index 000000000..ea7ebb0d9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6bb686ba5c57a12e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6bc43e309c8b612b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6bc43e309c8b612b_0 new file mode 100644 index 000000000..fa8a9495c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6bc43e309c8b612b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c06d72e1e82a595_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c06d72e1e82a595_0 new file mode 100644 index 000000000..6753275e5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c06d72e1e82a595_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c0e113bee8583ff_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c0e113bee8583ff_0 new file mode 100644 index 000000000..1928c6fe5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c0e113bee8583ff_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c332bba4bde91d1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c332bba4bde91d1_0 new file mode 100644 index 000000000..70cefff7e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c332bba4bde91d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c51bd94c95f3007_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c51bd94c95f3007_0 new file mode 100644 index 000000000..9c81ff23b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c51bd94c95f3007_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c53bcb67405a12a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c53bcb67405a12a_0 new file mode 100644 index 000000000..4f9e86fe6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c53bcb67405a12a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c587308ce2c5be9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c587308ce2c5be9_0 new file mode 100644 index 000000000..248b7d290 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c587308ce2c5be9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c71da87aa4fb28a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c71da87aa4fb28a_0 new file mode 100644 index 000000000..b7c9034e5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c71da87aa4fb28a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c7f21002fdca182_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c7f21002fdca182_0 new file mode 100644 index 000000000..909f4e71b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c7f21002fdca182_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c84a10ff7ed4218_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c84a10ff7ed4218_0 new file mode 100644 index 000000000..9e37a1f89 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c84a10ff7ed4218_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c8f173766f37034_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c8f173766f37034_0 new file mode 100644 index 000000000..0991b379c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6c8f173766f37034_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6cb82af00e37cdab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6cb82af00e37cdab_0 index ae3dc0f01..284ce15bb 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6cb82af00e37cdab_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6cb82af00e37cdab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6cf37ea1dda20a10_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6cf37ea1dda20a10_0 new file mode 100644 index 000000000..40acc144e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6cf37ea1dda20a10_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d2703537ed41a65_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d2703537ed41a65_0 new file mode 100644 index 000000000..edfc588c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d2703537ed41a65_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d394ba1c5558af4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d394ba1c5558af4_0 new file mode 100644 index 000000000..b6b9e27f1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d394ba1c5558af4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d4d5d432fa71aa1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d4d5d432fa71aa1_0 new file mode 100644 index 000000000..e8bfc80ea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d4d5d432fa71aa1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d501ce617cf5e7a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d501ce617cf5e7a_0 new file mode 100644 index 000000000..f6380369a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d501ce617cf5e7a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d5280a2895d2a22_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d5280a2895d2a22_0 new file mode 100644 index 000000000..e0edcbade Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d5280a2895d2a22_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d53a8100bdfd877_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d53a8100bdfd877_0 new file mode 100644 index 000000000..a6af0a358 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d53a8100bdfd877_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d6b2f3ff6d7e258_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d6b2f3ff6d7e258_0 new file mode 100644 index 000000000..4fa6c98fa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d6b2f3ff6d7e258_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d8c9ccff9291a15_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d8c9ccff9291a15_0 new file mode 100644 index 000000000..a9ee161b0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d8c9ccff9291a15_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d94cc8d1397cd83_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d94cc8d1397cd83_0 new file mode 100644 index 000000000..994568292 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d94cc8d1397cd83_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d9652f3216fd0f0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d9652f3216fd0f0_0 new file mode 100644 index 000000000..e0e8b2d1b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d9652f3216fd0f0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d977e7160da65aa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d977e7160da65aa_0 new file mode 100644 index 000000000..165e9ec66 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d977e7160da65aa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d9aee3d8b36745a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d9aee3d8b36745a_0 new file mode 100644 index 000000000..81a1d99c7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d9aee3d8b36745a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d9c9e0bc6b5eb27_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d9c9e0bc6b5eb27_0 new file mode 100644 index 000000000..678bed387 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6d9c9e0bc6b5eb27_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6db56ae26deb535f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6db56ae26deb535f_0 new file mode 100644 index 000000000..78ef02b71 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6db56ae26deb535f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6db80914a66154c2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6db80914a66154c2_0 index a0883f1ce..73f57cc83 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6db80914a66154c2_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6db80914a66154c2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6dbb76551b1d41c3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6dbb76551b1d41c3_0 new file mode 100644 index 000000000..b18cf3c1f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6dbb76551b1d41c3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6dd27dca10d25db0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6dd27dca10d25db0_0 new file mode 100644 index 000000000..cdea80ea4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6dd27dca10d25db0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6dd57b12f78b454b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6dd57b12f78b454b_0 new file mode 100644 index 000000000..9f3fad3f4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6dd57b12f78b454b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6dd64e5213baba14_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6dd64e5213baba14_0 new file mode 100644 index 000000000..79d7fe063 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6dd64e5213baba14_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6de1b34ba0725e64_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6de1b34ba0725e64_0 new file mode 100644 index 000000000..a5436e26f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6de1b34ba0725e64_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6def401eb513a16d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6def401eb513a16d_0 new file mode 100644 index 000000000..10a58108b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6def401eb513a16d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6dfc71613f8e4ecd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6dfc71613f8e4ecd_0 index 44dcdbd6f..7493ea6aa 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6dfc71613f8e4ecd_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6dfc71613f8e4ecd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e0958b59086d939_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e0958b59086d939_0 new file mode 100644 index 000000000..842eaf3da Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e0958b59086d939_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e1c5b10e1572483_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e1c5b10e1572483_0 new file mode 100644 index 000000000..699c901ab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e1c5b10e1572483_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e2c280001b45383_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e2c280001b45383_0 new file mode 100644 index 000000000..98daabc7a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e2c280001b45383_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e2c956fa1b7d194_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e2c956fa1b7d194_0 new file mode 100644 index 000000000..b3f22f41c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e2c956fa1b7d194_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e2eb0e751e7e601_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e2eb0e751e7e601_0 new file mode 100644 index 000000000..50814d29a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e2eb0e751e7e601_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e2f69bf08a35f47_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e2f69bf08a35f47_0 new file mode 100644 index 000000000..e83be753a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e2f69bf08a35f47_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e3bd7733bd1cafc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e3bd7733bd1cafc_0 new file mode 100644 index 000000000..f9dcf2358 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e3bd7733bd1cafc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e47606b1d90dac4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e47606b1d90dac4_0 new file mode 100644 index 000000000..0d06caf4b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e47606b1d90dac4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e7578be8672d5be_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e7578be8672d5be_0 new file mode 100644 index 000000000..9fdd5478d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e7578be8672d5be_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e788ea1791ba91b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e788ea1791ba91b_0 new file mode 100644 index 000000000..83aff7353 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e788ea1791ba91b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e90897d79852691_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e90897d79852691_0 new file mode 100644 index 000000000..7cb5d5da6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e90897d79852691_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e925c3eb1d823c3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e925c3eb1d823c3_0 new file mode 100644 index 000000000..18e5fb667 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6e925c3eb1d823c3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ea159fb46932991_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ea159fb46932991_0 new file mode 100644 index 000000000..e5fb5d0ec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ea159fb46932991_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6eab1cddddb023d5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6eab1cddddb023d5_0 new file mode 100644 index 000000000..73c5a984c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6eab1cddddb023d5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ec8a47db4857efb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ec8a47db4857efb_0 new file mode 100644 index 000000000..c1692db32 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ec8a47db4857efb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ecff411ebdd076c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ecff411ebdd076c_0 new file mode 100644 index 000000000..e0416e7ac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ecff411ebdd076c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ecff411ebdd076c_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ecff411ebdd076c_s new file mode 100644 index 000000000..1b2029577 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ecff411ebdd076c_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6edcad492920db3a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6edcad492920db3a_0 new file mode 100644 index 000000000..6b767e464 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6edcad492920db3a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ef6cbf5a2cecfb2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ef6cbf5a2cecfb2_0 new file mode 100644 index 000000000..5f82cab49 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ef6cbf5a2cecfb2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f026e6f608c4708_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f026e6f608c4708_0 new file mode 100644 index 000000000..0da3ceb4e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f026e6f608c4708_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f1118d3030ab3a7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f1118d3030ab3a7_0 new file mode 100644 index 000000000..11f60551c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f1118d3030ab3a7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f1639ed2a80277e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f1639ed2a80277e_0 new file mode 100644 index 000000000..f11603a8f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f1639ed2a80277e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f1dad2c3d5d0dd2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f1dad2c3d5d0dd2_0 new file mode 100644 index 000000000..b6c4e26ec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f1dad2c3d5d0dd2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f2917efc7df223a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f2917efc7df223a_0 new file mode 100644 index 000000000..e18eda4ae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f2917efc7df223a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f2a02070c7638f2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f2a02070c7638f2_0 new file mode 100644 index 000000000..74f8b24e5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f2a02070c7638f2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f4a437364951298_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f4a437364951298_0 new file mode 100644 index 000000000..4c9a0b74c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f4a437364951298_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f5d5c9748a6f73d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f5d5c9748a6f73d_0 new file mode 100644 index 000000000..5fd1628d6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f5d5c9748a6f73d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f61f90abe075aab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f61f90abe075aab_0 new file mode 100644 index 000000000..74fc69bba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f61f90abe075aab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f6269379946c8b0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f6269379946c8b0_0 new file mode 100644 index 000000000..133112347 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f6269379946c8b0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f66470f71811eb4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f66470f71811eb4_0 new file mode 100644 index 000000000..868b6405d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f66470f71811eb4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f6c827eff56ddd2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f6c827eff56ddd2_0 new file mode 100644 index 000000000..64ded5b8f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f6c827eff56ddd2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f7002c8e7699164_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f7002c8e7699164_0 new file mode 100644 index 000000000..feb43d7df Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f7002c8e7699164_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f7a3fa3e5893fc3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f7a3fa3e5893fc3_0 new file mode 100644 index 000000000..eae5f62f8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6f7a3fa3e5893fc3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6faee0af219c8942_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6faee0af219c8942_0 new file mode 100644 index 000000000..a9e5cd88b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6faee0af219c8942_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6fb6a936ab877b8f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6fb6a936ab877b8f_0 new file mode 100644 index 000000000..bb21cc995 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6fb6a936ab877b8f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6fbbe90963dfa1e5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6fbbe90963dfa1e5_0 new file mode 100644 index 000000000..a2e60ba04 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6fbbe90963dfa1e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6fcbcfa1772dca6a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6fcbcfa1772dca6a_0 new file mode 100644 index 000000000..77c00da70 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6fcbcfa1772dca6a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6fd7b5f0734b0c16_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6fd7b5f0734b0c16_0 index e57b1df35..7fd694d04 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6fd7b5f0734b0c16_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6fd7b5f0734b0c16_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6fe0e56152ad3540_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6fe0e56152ad3540_0 new file mode 100644 index 000000000..ec2411767 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6fe0e56152ad3540_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6fef487fee39c4d7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6fef487fee39c4d7_0 new file mode 100644 index 000000000..d5ffee16f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6fef487fee39c4d7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ff5954a47277ae8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ff5954a47277ae8_0 new file mode 100644 index 000000000..7efb04799 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/6ff5954a47277ae8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7019155ac17c6dc5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7019155ac17c6dc5_0 index b0e02d6af..f1988bbc0 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7019155ac17c6dc5_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7019155ac17c6dc5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7019e214358e9b3d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7019e214358e9b3d_0 new file mode 100644 index 000000000..5e5c02682 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7019e214358e9b3d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/70290c3a477c6428_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70290c3a477c6428_0 new file mode 100644 index 000000000..f77f35aae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70290c3a477c6428_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7047f149a9921ec2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7047f149a9921ec2_0 new file mode 100644 index 000000000..f3ba4335b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7047f149a9921ec2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7053eb5a8f43a1c9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7053eb5a8f43a1c9_0 new file mode 100644 index 000000000..b29fd49c4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7053eb5a8f43a1c9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/70553fd1d0cc7f12_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70553fd1d0cc7f12_0 new file mode 100644 index 000000000..320b62b62 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70553fd1d0cc7f12_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/705a282ec9fc48fc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/705a282ec9fc48fc_0 new file mode 100644 index 000000000..d6eebf565 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/705a282ec9fc48fc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/705e64f834f62c68_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/705e64f834f62c68_0 new file mode 100644 index 000000000..caa5a83f0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/705e64f834f62c68_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/70663cbe2359a64a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70663cbe2359a64a_0 new file mode 100644 index 000000000..d00324fb0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70663cbe2359a64a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/708cdc1da6cc26e0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/708cdc1da6cc26e0_0 new file mode 100644 index 000000000..3f0d30cb9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/708cdc1da6cc26e0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/708d45706a8cd7d8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/708d45706a8cd7d8_0 new file mode 100644 index 000000000..b6c9752d3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/708d45706a8cd7d8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7096261eeacbbb2a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7096261eeacbbb2a_0 new file mode 100644 index 000000000..5e6cab248 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7096261eeacbbb2a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/70a178104ed3a54e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70a178104ed3a54e_0 new file mode 100644 index 000000000..bd352566a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70a178104ed3a54e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/70a4b721b673fb8d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70a4b721b673fb8d_0 new file mode 100644 index 000000000..38f6070f3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70a4b721b673fb8d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/70afa5b20cf5ae60_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70afa5b20cf5ae60_0 new file mode 100644 index 000000000..e35a233d0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70afa5b20cf5ae60_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/70b840b125b9c5d9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70b840b125b9c5d9_0 new file mode 100644 index 000000000..b4cc9b066 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70b840b125b9c5d9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/70bdeb86d1dbd85e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70bdeb86d1dbd85e_0 new file mode 100644 index 000000000..ddae9bb4e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70bdeb86d1dbd85e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/70d96111b776ba72_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70d96111b776ba72_0 index ee69e4299..fa01812ab 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/70d96111b776ba72_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70d96111b776ba72_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/70e7a13f0ced84a8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70e7a13f0ced84a8_0 new file mode 100644 index 000000000..4a0088337 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/70e7a13f0ced84a8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/710ef93259a0ec90_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/710ef93259a0ec90_0 new file mode 100644 index 000000000..ae3c01ada Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/710ef93259a0ec90_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/710f8bdf94cf76f0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/710f8bdf94cf76f0_0 new file mode 100644 index 000000000..f5b837916 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/710f8bdf94cf76f0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7110e2c94aae8d53_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7110e2c94aae8d53_0 new file mode 100644 index 000000000..059654e15 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7110e2c94aae8d53_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/71207935ad3ba97e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/71207935ad3ba97e_0 new file mode 100644 index 000000000..6af29035f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/71207935ad3ba97e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7132c2adf6845c2a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7132c2adf6845c2a_0 new file mode 100644 index 000000000..195a28b0b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7132c2adf6845c2a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/713d195e93382dd6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/713d195e93382dd6_0 new file mode 100644 index 000000000..87c902861 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/713d195e93382dd6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/71456aaafae361b0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/71456aaafae361b0_0 new file mode 100644 index 000000000..eadf6471c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/71456aaafae361b0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/714fd46ad994efaf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/714fd46ad994efaf_0 new file mode 100644 index 000000000..9c5d9860a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/714fd46ad994efaf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/719278d70cd8376f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/719278d70cd8376f_0 new file mode 100644 index 000000000..89d8d78c5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/719278d70cd8376f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7192dca9203617c2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7192dca9203617c2_0 new file mode 100644 index 000000000..eba7b374e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7192dca9203617c2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/719c79d3672052a1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/719c79d3672052a1_0 new file mode 100644 index 000000000..8b5a4db26 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/719c79d3672052a1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/71db8ff444397b67_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/71db8ff444397b67_0 new file mode 100644 index 000000000..e00f35dae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/71db8ff444397b67_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/71edf91a2fbd7074_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/71edf91a2fbd7074_0 new file mode 100644 index 000000000..504f8d72c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/71edf91a2fbd7074_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/71edfec539679b33_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/71edfec539679b33_0 new file mode 100644 index 000000000..b1245731f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/71edfec539679b33_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/720570f0b8e57a09_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/720570f0b8e57a09_0 new file mode 100644 index 000000000..44a3e257c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/720570f0b8e57a09_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7206e54bdc328877_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7206e54bdc328877_0 new file mode 100644 index 000000000..487ca4be0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7206e54bdc328877_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7222fbd7327ac098_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7222fbd7327ac098_0 new file mode 100644 index 000000000..2e2260786 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7222fbd7327ac098_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/72360e7bdb761ee4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/72360e7bdb761ee4_0 new file mode 100644 index 000000000..eb153cae4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/72360e7bdb761ee4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/724869c3eae5124b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/724869c3eae5124b_0 new file mode 100644 index 000000000..d02e670c9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/724869c3eae5124b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/724ec264e6b8cf05_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/724ec264e6b8cf05_0 new file mode 100644 index 000000000..7c9ec3b02 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/724ec264e6b8cf05_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/72653631d836acb8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/72653631d836acb8_0 new file mode 100644 index 000000000..9e4532986 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/72653631d836acb8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7268bfc22ca535e6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7268bfc22ca535e6_0 new file mode 100644 index 000000000..2943d4776 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7268bfc22ca535e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/728c5f41d1ce4273_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/728c5f41d1ce4273_0 new file mode 100644 index 000000000..f7972d5e7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/728c5f41d1ce4273_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/729fe95800eaca7a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/729fe95800eaca7a_0 new file mode 100644 index 000000000..16aa5e151 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/729fe95800eaca7a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/72a3e98d67a973cf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/72a3e98d67a973cf_0 new file mode 100644 index 000000000..b2b203e15 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/72a3e98d67a973cf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/72a41f6a864e3652_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/72a41f6a864e3652_0 new file mode 100644 index 000000000..3b3368fdd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/72a41f6a864e3652_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/72a466a120fa329f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/72a466a120fa329f_0 new file mode 100644 index 000000000..1ff8e1487 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/72a466a120fa329f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/72ca7d1ea647fe84_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/72ca7d1ea647fe84_0 new file mode 100644 index 000000000..e0f7db73c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/72ca7d1ea647fe84_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/72d171fb0e2782a4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/72d171fb0e2782a4_0 new file mode 100644 index 000000000..ee95fe339 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/72d171fb0e2782a4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7310a568eea50c7a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7310a568eea50c7a_0 new file mode 100644 index 000000000..0966bb499 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7310a568eea50c7a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/731826df9becf374_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/731826df9becf374_0 new file mode 100644 index 000000000..c5171f3e7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/731826df9becf374_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/731f41843b536914_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/731f41843b536914_0 new file mode 100644 index 000000000..862c63ee1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/731f41843b536914_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7328cb8f4dbebb6c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7328cb8f4dbebb6c_0 new file mode 100644 index 000000000..c7b3c38cb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7328cb8f4dbebb6c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/734d82249335cab6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/734d82249335cab6_0 new file mode 100644 index 000000000..6ad045ea7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/734d82249335cab6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/737be8c963e9c16b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/737be8c963e9c16b_0 new file mode 100644 index 000000000..e700d8619 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/737be8c963e9c16b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/737e320114a03f7d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/737e320114a03f7d_0 new file mode 100644 index 000000000..2a6fceed8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/737e320114a03f7d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/738480b4f4e33722_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/738480b4f4e33722_0 new file mode 100644 index 000000000..1b525a1c9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/738480b4f4e33722_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/738b0616b4e8389d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/738b0616b4e8389d_0 new file mode 100644 index 000000000..7b59ef603 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/738b0616b4e8389d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/739795543f02610c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/739795543f02610c_0 index 5e4479332..ca973573f 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/739795543f02610c_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/739795543f02610c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7397b528a8cf2cf0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7397b528a8cf2cf0_0 new file mode 100644 index 000000000..9b1228bb6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7397b528a8cf2cf0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/73ae7979ba334f50_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/73ae7979ba334f50_0 new file mode 100644 index 000000000..229424e74 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/73ae7979ba334f50_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/73d15c4ac84ac1db_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/73d15c4ac84ac1db_0 new file mode 100644 index 000000000..26e1acab0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/73d15c4ac84ac1db_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/73eb7bb89f47e657_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/73eb7bb89f47e657_0 new file mode 100644 index 000000000..6186245f2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/73eb7bb89f47e657_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/73fcf962dd76533a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/73fcf962dd76533a_0 new file mode 100644 index 000000000..a507d53ba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/73fcf962dd76533a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/74073c8b601e046f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/74073c8b601e046f_0 new file mode 100644 index 000000000..2abec3543 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/74073c8b601e046f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7421969b35aecab5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7421969b35aecab5_0 new file mode 100644 index 000000000..0e7673b9f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7421969b35aecab5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/742d433e644c335b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/742d433e644c335b_0 new file mode 100644 index 000000000..23cf27832 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/742d433e644c335b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/745950c23b820ebf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/745950c23b820ebf_0 new file mode 100644 index 000000000..f8fb73f13 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/745950c23b820ebf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/746995d795b448e5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/746995d795b448e5_0 new file mode 100644 index 000000000..e5ccd65b9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/746995d795b448e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/747b9ee7d13ea636_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/747b9ee7d13ea636_0 new file mode 100644 index 000000000..eb2a75d03 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/747b9ee7d13ea636_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/749597a060580c29_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/749597a060580c29_0 new file mode 100644 index 000000000..6a105519e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/749597a060580c29_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7495f90e38dd3c18_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7495f90e38dd3c18_0 new file mode 100644 index 000000000..2abe671c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7495f90e38dd3c18_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/749663677941ffb2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/749663677941ffb2_0 new file mode 100644 index 000000000..20b82175f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/749663677941ffb2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7498be8bcae0373b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7498be8bcae0373b_0 new file mode 100644 index 000000000..97b5ef530 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7498be8bcae0373b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/749ac5c51ff3f70d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/749ac5c51ff3f70d_0 new file mode 100644 index 000000000..a9478c079 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/749ac5c51ff3f70d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/74b1683e084f902d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/74b1683e084f902d_0 new file mode 100644 index 000000000..9df474a14 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/74b1683e084f902d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/74b9016097928f82_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/74b9016097928f82_0 new file mode 100644 index 000000000..80fb529d3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/74b9016097928f82_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/74c3249db595f7ea_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/74c3249db595f7ea_0 new file mode 100644 index 000000000..20e3d7ce4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/74c3249db595f7ea_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/74d2aec8dd0a1b39_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/74d2aec8dd0a1b39_0 new file mode 100644 index 000000000..058cabbce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/74d2aec8dd0a1b39_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/74e70fae00e9e7a7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/74e70fae00e9e7a7_0 new file mode 100644 index 000000000..99c4eb7d1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/74e70fae00e9e7a7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/74eecf0504fa5bc1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/74eecf0504fa5bc1_0 new file mode 100644 index 000000000..75574c9bd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/74eecf0504fa5bc1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/74f4708a5ecc4ced_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/74f4708a5ecc4ced_0 index 593bda74a..65a349127 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/74f4708a5ecc4ced_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/74f4708a5ecc4ced_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7523c933c3de0642_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7523c933c3de0642_0 new file mode 100644 index 000000000..8a1274898 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7523c933c3de0642_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7524895b4fbc4eaa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7524895b4fbc4eaa_0 new file mode 100644 index 000000000..03417f8f2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7524895b4fbc4eaa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/754f41c3b8a73033_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/754f41c3b8a73033_0 new file mode 100644 index 000000000..bc9d24991 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/754f41c3b8a73033_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/754fe04265e5076e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/754fe04265e5076e_0 new file mode 100644 index 000000000..18b7e96aa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/754fe04265e5076e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/756ea1a6d445e86e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/756ea1a6d445e86e_0 new file mode 100644 index 000000000..939d51032 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/756ea1a6d445e86e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/75702044e7f44697_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/75702044e7f44697_0 new file mode 100644 index 000000000..d204b299f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/75702044e7f44697_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/758247460c8e3525_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/758247460c8e3525_0 new file mode 100644 index 000000000..51497425e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/758247460c8e3525_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/759e15afce9720cf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/759e15afce9720cf_0 new file mode 100644 index 000000000..3e14c6381 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/759e15afce9720cf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/75b18775be7fa788_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/75b18775be7fa788_0 new file mode 100644 index 000000000..1b3ea1804 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/75b18775be7fa788_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/75b2695aa2db1939_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/75b2695aa2db1939_0 new file mode 100644 index 000000000..fa4498ad8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/75b2695aa2db1939_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/75bd72f469ab0be3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/75bd72f469ab0be3_0 index b4b8181a1..d596f1189 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/75bd72f469ab0be3_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/75bd72f469ab0be3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/75ce7fd695800e0c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/75ce7fd695800e0c_0 new file mode 100644 index 000000000..9307a0d36 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/75ce7fd695800e0c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/75daba8e69682f44_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/75daba8e69682f44_0 new file mode 100644 index 000000000..1765e00ec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/75daba8e69682f44_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/75ef335d7c89c15f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/75ef335d7c89c15f_0 new file mode 100644 index 000000000..8e7a0be90 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/75ef335d7c89c15f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/763238d23bc0ff81_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/763238d23bc0ff81_0 new file mode 100644 index 000000000..9bb8bfcf4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/763238d23bc0ff81_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7643810c63fc6dd8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7643810c63fc6dd8_0 new file mode 100644 index 000000000..09338c31f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7643810c63fc6dd8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/76482f157648c6a3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76482f157648c6a3_0 new file mode 100644 index 000000000..8e7a47995 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76482f157648c6a3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/76502bb45666e484_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76502bb45666e484_0 new file mode 100644 index 000000000..66a5a6445 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76502bb45666e484_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/765a21ee66b19106_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/765a21ee66b19106_0 new file mode 100644 index 000000000..c61f7ccfa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/765a21ee66b19106_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/765aa579e1663164_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/765aa579e1663164_0 new file mode 100644 index 000000000..93028aa14 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/765aa579e1663164_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7671e8d2fb59da85_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7671e8d2fb59da85_0 new file mode 100644 index 000000000..17d4d25d3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7671e8d2fb59da85_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7677114f3468ba93_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7677114f3468ba93_0 new file mode 100644 index 000000000..4ec8e648a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7677114f3468ba93_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/76791a2ba8214889_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76791a2ba8214889_0 new file mode 100644 index 000000000..a8eb63d3f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76791a2ba8214889_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/76807700f0dde8cb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76807700f0dde8cb_0 new file mode 100644 index 000000000..7133302d9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76807700f0dde8cb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/76885743485d9a48_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76885743485d9a48_0 new file mode 100644 index 000000000..42db3ab05 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76885743485d9a48_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/76912d2c0da0b38a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76912d2c0da0b38a_0 new file mode 100644 index 000000000..3d3f5125f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76912d2c0da0b38a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/76a7d5cc06c9d9d2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76a7d5cc06c9d9d2_0 new file mode 100644 index 000000000..4233ba777 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76a7d5cc06c9d9d2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/76b5844aeb4bcc8a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76b5844aeb4bcc8a_0 new file mode 100644 index 000000000..0dcde17c7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76b5844aeb4bcc8a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/76cac071fef2a8c2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76cac071fef2a8c2_0 new file mode 100644 index 000000000..901dbec6b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76cac071fef2a8c2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/76cfb9063c3dc6a7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76cfb9063c3dc6a7_0 new file mode 100644 index 000000000..972d4fa46 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76cfb9063c3dc6a7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/76d40bfce028b495_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76d40bfce028b495_0 new file mode 100644 index 000000000..e649e59e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76d40bfce028b495_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/76d61e3243b70782_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76d61e3243b70782_0 new file mode 100644 index 000000000..e32235a84 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76d61e3243b70782_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/76d8537c98954e4e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76d8537c98954e4e_0 new file mode 100644 index 000000000..6d49f4a60 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76d8537c98954e4e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/76ec35c9ef3c827a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76ec35c9ef3c827a_0 new file mode 100644 index 000000000..5da4ea1f7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76ec35c9ef3c827a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/76fb75e63b0776e6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76fb75e63b0776e6_0 new file mode 100644 index 000000000..d033605f6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76fb75e63b0776e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/76fcc7fc51ecb831_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76fcc7fc51ecb831_0 new file mode 100644 index 000000000..2f5c39a29 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/76fcc7fc51ecb831_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7700ac569f6d40fc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7700ac569f6d40fc_0 new file mode 100644 index 000000000..171538b07 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7700ac569f6d40fc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/771859efb9bfe7f0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/771859efb9bfe7f0_0 new file mode 100644 index 000000000..c95203d0f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/771859efb9bfe7f0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/771e75505b74f7df_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/771e75505b74f7df_0 new file mode 100644 index 000000000..5831288fb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/771e75505b74f7df_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7720cd142beb2741_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7720cd142beb2741_0 new file mode 100644 index 000000000..9fb02b935 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7720cd142beb2741_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7727262b7329fe40_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7727262b7329fe40_0 new file mode 100644 index 000000000..b85b4ffb3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7727262b7329fe40_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7728ff5741e44888_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7728ff5741e44888_0 new file mode 100644 index 000000000..8b38c4abc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7728ff5741e44888_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/77293c7857313b07_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/77293c7857313b07_0 new file mode 100644 index 000000000..1dfbb5008 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/77293c7857313b07_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7730323ba24074e3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7730323ba24074e3_0 new file mode 100644 index 000000000..2ae47fcf2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7730323ba24074e3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/773eaed55c17dd16_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/773eaed55c17dd16_0 new file mode 100644 index 000000000..0f8a710e5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/773eaed55c17dd16_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/773ed7169c67e659_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/773ed7169c67e659_0 new file mode 100644 index 000000000..74df9a1cc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/773ed7169c67e659_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7769ff6a1d052b0b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7769ff6a1d052b0b_0 new file mode 100644 index 000000000..562b418b9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7769ff6a1d052b0b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7770c9e1c2098c8c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7770c9e1c2098c8c_0 new file mode 100644 index 000000000..60d35c9d3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7770c9e1c2098c8c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7771f21438d22054_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7771f21438d22054_0 new file mode 100644 index 000000000..db2939111 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7771f21438d22054_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/777931ae7eafff73_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/777931ae7eafff73_0 new file mode 100644 index 000000000..3b19d40ce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/777931ae7eafff73_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/778a6ed84046a62f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/778a6ed84046a62f_0 new file mode 100644 index 000000000..cc5ac3809 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/778a6ed84046a62f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/77aa501e4cc75ee2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/77aa501e4cc75ee2_0 new file mode 100644 index 000000000..9b6ad5827 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/77aa501e4cc75ee2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/77c2cae1f3eb2e24_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/77c2cae1f3eb2e24_0 new file mode 100644 index 000000000..029c5b1de Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/77c2cae1f3eb2e24_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/784150ac13952f32_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/784150ac13952f32_0 new file mode 100644 index 000000000..7e5ec6eea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/784150ac13952f32_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/78441595498c061f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/78441595498c061f_0 new file mode 100644 index 000000000..f92dd2c66 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/78441595498c061f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/784d012140fb058b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/784d012140fb058b_0 new file mode 100644 index 000000000..f38a9d465 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/784d012140fb058b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/785d2622cc7939b0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/785d2622cc7939b0_0 new file mode 100644 index 000000000..5edf7a847 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/785d2622cc7939b0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/78678fcead5ab061_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/78678fcead5ab061_0 new file mode 100644 index 000000000..df417ad8d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/78678fcead5ab061_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/78934aac627ae011_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/78934aac627ae011_0 new file mode 100644 index 000000000..23feeb8d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/78934aac627ae011_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/78c0669b112bb1b7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/78c0669b112bb1b7_0 new file mode 100644 index 000000000..0d5f94a38 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/78c0669b112bb1b7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/78d3c4fa9427da93_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/78d3c4fa9427da93_0 new file mode 100644 index 000000000..62e4fdbf8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/78d3c4fa9427da93_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/78d76ab45f105c7d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/78d76ab45f105c7d_0 new file mode 100644 index 000000000..d23792428 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/78d76ab45f105c7d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/78fe3a302f951762_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/78fe3a302f951762_0 new file mode 100644 index 000000000..111ebb11c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/78fe3a302f951762_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/790dc5404df9fdca_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/790dc5404df9fdca_0 new file mode 100644 index 000000000..156d23d6b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/790dc5404df9fdca_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/79116bcdc7871edf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/79116bcdc7871edf_0 new file mode 100644 index 000000000..33cb922eb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/79116bcdc7871edf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/79159ffbf37f44aa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/79159ffbf37f44aa_0 new file mode 100644 index 000000000..efe614860 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/79159ffbf37f44aa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/793b035c41e1b01a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/793b035c41e1b01a_0 index b6736193c..98689f5db 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/793b035c41e1b01a_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/793b035c41e1b01a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7946dae67824d9f1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7946dae67824d9f1_0 new file mode 100644 index 000000000..86a65409a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7946dae67824d9f1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7947d2bc7b210cd9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7947d2bc7b210cd9_0 new file mode 100644 index 000000000..41b7072d0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7947d2bc7b210cd9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/794c968d46fdb4b8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/794c968d46fdb4b8_0 new file mode 100644 index 000000000..c403420fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/794c968d46fdb4b8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/795c012d823ddea1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/795c012d823ddea1_0 new file mode 100644 index 000000000..ad10df0e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/795c012d823ddea1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7960c9a33091c840_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7960c9a33091c840_0 new file mode 100644 index 000000000..902a2f755 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7960c9a33091c840_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7961625ae45ac190_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7961625ae45ac190_0 index fce8a381d..bec9a9d86 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7961625ae45ac190_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7961625ae45ac190_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/799dd41c6d95dc18_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/799dd41c6d95dc18_0 new file mode 100644 index 000000000..2e3b172a8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/799dd41c6d95dc18_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/79d685fdba266f4d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/79d685fdba266f4d_0 new file mode 100644 index 000000000..219e1aad0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/79d685fdba266f4d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/79da22e899be187f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/79da22e899be187f_0 new file mode 100644 index 000000000..3970800bc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/79da22e899be187f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/79e86978de3ea30c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/79e86978de3ea30c_0 new file mode 100644 index 000000000..c9de677a2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/79e86978de3ea30c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a0b1dcb8e5c6810_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a0b1dcb8e5c6810_0 new file mode 100644 index 000000000..5f066753b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a0b1dcb8e5c6810_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a12a91288c33088_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a12a91288c33088_0 new file mode 100644 index 000000000..ba75c672c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a12a91288c33088_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a2035146e8f6c41_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a2035146e8f6c41_0 new file mode 100644 index 000000000..36194b8a8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a2035146e8f6c41_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a213102eb597241_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a213102eb597241_0 new file mode 100644 index 000000000..842b8e034 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a213102eb597241_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a2373ef67b15b25_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a2373ef67b15b25_0 new file mode 100644 index 000000000..621c805d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a2373ef67b15b25_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a24e2403ac975e8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a24e2403ac975e8_0 new file mode 100644 index 000000000..7c5a04c7f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a24e2403ac975e8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a289fea0f6f8979_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a289fea0f6f8979_0 new file mode 100644 index 000000000..6104a01bc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a289fea0f6f8979_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a6068823da019cc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a6068823da019cc_0 new file mode 100644 index 000000000..875858c72 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a6068823da019cc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a989126f140672f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a989126f140672f_0 new file mode 100644 index 000000000..810dd8304 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7a989126f140672f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7aa31b59bf5c245a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7aa31b59bf5c245a_0 new file mode 100644 index 000000000..050765bc0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7aa31b59bf5c245a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ad2a3d579c8e031_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ad2a3d579c8e031_0 new file mode 100644 index 000000000..278e0632e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ad2a3d579c8e031_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ad45e128a14ddb8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ad45e128a14ddb8_0 new file mode 100644 index 000000000..b2f392d6c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ad45e128a14ddb8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7af4f87d7b731113_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7af4f87d7b731113_0 new file mode 100644 index 000000000..38bdb7f72 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7af4f87d7b731113_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7b01fb5b6456c9ba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7b01fb5b6456c9ba_0 new file mode 100644 index 000000000..712273f6b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7b01fb5b6456c9ba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7b1c26e116dd9c50_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7b1c26e116dd9c50_0 new file mode 100644 index 000000000..cb7df090b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7b1c26e116dd9c50_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7b2432d44fb5c68a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7b2432d44fb5c68a_0 new file mode 100644 index 000000000..32badbca4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7b2432d44fb5c68a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7b6a72a9a99ab646_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7b6a72a9a99ab646_0 index c80bcb823..4520f119f 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7b6a72a9a99ab646_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7b6a72a9a99ab646_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7b82b69bca40d6e5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7b82b69bca40d6e5_0 new file mode 100644 index 000000000..f3b6558ba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7b82b69bca40d6e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bbe251fa8e8189c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bbe251fa8e8189c_0 new file mode 100644 index 000000000..ab00f0418 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bbe251fa8e8189c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bc6ae201c953818_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bc6ae201c953818_0 new file mode 100644 index 000000000..96008b779 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bc6ae201c953818_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bcc32426f7c2167_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bcc32426f7c2167_0 new file mode 100644 index 000000000..c502083bf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bcc32426f7c2167_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bd0448793a5b9ee_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bd0448793a5b9ee_0 new file mode 100644 index 000000000..f266e7998 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bd0448793a5b9ee_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bd7f5302ae09b42_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bd7f5302ae09b42_0 new file mode 100644 index 000000000..6e593502c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bd7f5302ae09b42_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bf7a742b8df590b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bf7a742b8df590b_0 new file mode 100644 index 000000000..fa9609d8e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bf7a742b8df590b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bf83c4a1f9e8f40_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bf83c4a1f9e8f40_0 new file mode 100644 index 000000000..0b4c37fee Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bf83c4a1f9e8f40_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bfb5c29fd6ad2a5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bfb5c29fd6ad2a5_0 new file mode 100644 index 000000000..2b0635673 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7bfb5c29fd6ad2a5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c032d25ad2b0ec4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c032d25ad2b0ec4_0 new file mode 100644 index 000000000..266552b29 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c032d25ad2b0ec4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c0cdc5a5e3509cc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c0cdc5a5e3509cc_0 new file mode 100644 index 000000000..b501b8f2b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c0cdc5a5e3509cc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c120a8c45bbad88_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c120a8c45bbad88_0 new file mode 100644 index 000000000..747e12906 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c120a8c45bbad88_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c52f51a27392205_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c52f51a27392205_0 new file mode 100644 index 000000000..76ac4d6b7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c52f51a27392205_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c55c6ee8c291a67_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c55c6ee8c291a67_0 new file mode 100644 index 000000000..fd97754f8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c55c6ee8c291a67_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c5bc5646f263c98_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c5bc5646f263c98_0 new file mode 100644 index 000000000..e0f4676f8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c5bc5646f263c98_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c61d6b1fa03b616_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c61d6b1fa03b616_0 new file mode 100644 index 000000000..da0c742d4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c61d6b1fa03b616_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c6a1249c539682a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c6a1249c539682a_0 new file mode 100644 index 000000000..91cc17f51 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c6a1249c539682a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c7134383836dbd0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c7134383836dbd0_0 new file mode 100644 index 000000000..57b4a1f11 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c7134383836dbd0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c789040a9036c5d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c789040a9036c5d_0 new file mode 100644 index 000000000..e2b40b6d1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c789040a9036c5d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c91f89b0b680eb7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c91f89b0b680eb7_0 new file mode 100644 index 000000000..decbb674c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c91f89b0b680eb7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c9c3ac1500fec0e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c9c3ac1500fec0e_0 index edf8ae1b0..378213db7 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c9c3ac1500fec0e_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7c9c3ac1500fec0e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ca25d2eaa9a82c5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ca25d2eaa9a82c5_0 new file mode 100644 index 000000000..06f111aea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ca25d2eaa9a82c5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ca2b44011c51561_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ca2b44011c51561_0 new file mode 100644 index 000000000..81292e41f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ca2b44011c51561_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7cb5d9a1727df687_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7cb5d9a1727df687_0 new file mode 100644 index 000000000..7acea7882 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7cb5d9a1727df687_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7cbb3946aeeabab8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7cbb3946aeeabab8_0 new file mode 100644 index 000000000..773fd1cf2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7cbb3946aeeabab8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7cc24285d9202065_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7cc24285d9202065_0 new file mode 100644 index 000000000..37fd5bc24 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7cc24285d9202065_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7cc3b77a82b94dee_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7cc3b77a82b94dee_0 new file mode 100644 index 000000000..47c49249d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7cc3b77a82b94dee_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7cde97526aa1373f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7cde97526aa1373f_0 new file mode 100644 index 000000000..958974e7f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7cde97526aa1373f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d00c50c9a1f2c59_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d00c50c9a1f2c59_0 new file mode 100644 index 000000000..97f018abc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d00c50c9a1f2c59_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d1bd23d301e1192_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d1bd23d301e1192_0 new file mode 100644 index 000000000..f8bc2ec71 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d1bd23d301e1192_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d1c73238aa96d07_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d1c73238aa96d07_0 new file mode 100644 index 000000000..61ed5172a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d1c73238aa96d07_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d26b06f0ba3786f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d26b06f0ba3786f_0 new file mode 100644 index 000000000..c78ee49f3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d26b06f0ba3786f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d2b2887637600fc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d2b2887637600fc_0 new file mode 100644 index 000000000..135408c89 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d2b2887637600fc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d3ee2246b597a25_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d3ee2246b597a25_0 new file mode 100644 index 000000000..5dae49261 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d3ee2246b597a25_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d767aee7bb07fd8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d767aee7bb07fd8_0 index 13f77890f..210b7a215 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d767aee7bb07fd8_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d767aee7bb07fd8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d77be2cc0a43a9d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d77be2cc0a43a9d_0 new file mode 100644 index 000000000..a60746020 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d77be2cc0a43a9d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d907571475af310_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d907571475af310_0 new file mode 100644 index 000000000..31ae11806 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d907571475af310_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d9285e05c2607c3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d9285e05c2607c3_0 new file mode 100644 index 000000000..1942c4dc9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d9285e05c2607c3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d988dc237a5eb23_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d988dc237a5eb23_0 new file mode 100644 index 000000000..fd9b0be05 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7d988dc237a5eb23_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7dbacf57c9f9bc31_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7dbacf57c9f9bc31_0 new file mode 100644 index 000000000..039b34f1f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7dbacf57c9f9bc31_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7dc3313316e2e6d7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7dc3313316e2e6d7_0 new file mode 100644 index 000000000..9c61636ce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7dc3313316e2e6d7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7dd9e1c90180fdaa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7dd9e1c90180fdaa_0 new file mode 100644 index 000000000..8d3871da1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7dd9e1c90180fdaa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7dffd940b062b47d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7dffd940b062b47d_0 new file mode 100644 index 000000000..3abae1620 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7dffd940b062b47d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e00565ae05d40f7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e00565ae05d40f7_0 new file mode 100644 index 000000000..369366e74 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e00565ae05d40f7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e26bc743ece7e37_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e26bc743ece7e37_0 new file mode 100644 index 000000000..4ed6f14b5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e26bc743ece7e37_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e4e65d2a2c9e626_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e4e65d2a2c9e626_0 new file mode 100644 index 000000000..45f16b24e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e4e65d2a2c9e626_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e4fc33a469e05ab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e4fc33a469e05ab_0 new file mode 100644 index 000000000..e4ffc92ec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e4fc33a469e05ab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e5c39df0c54f8fb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e5c39df0c54f8fb_0 index dd0548ffa..55ed1a9d7 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e5c39df0c54f8fb_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e5c39df0c54f8fb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e841a80bf554dfd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e841a80bf554dfd_0 new file mode 100644 index 000000000..2c692876e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e841a80bf554dfd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e94a87a3ccb287c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e94a87a3ccb287c_0 new file mode 100644 index 000000000..cad4d6dc9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7e94a87a3ccb287c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7eb14b604da3fc60_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7eb14b604da3fc60_0 new file mode 100644 index 000000000..5ceb7e60d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7eb14b604da3fc60_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ec54fd8fa26442c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ec54fd8fa26442c_0 new file mode 100644 index 000000000..decece3e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ec54fd8fa26442c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ec616f0f7c83427_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ec616f0f7c83427_0 new file mode 100644 index 000000000..666991006 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ec616f0f7c83427_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ee5aeac5f9f73f7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ee5aeac5f9f73f7_0 new file mode 100644 index 000000000..e0d8ff11f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7ee5aeac5f9f73f7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f01068971f01eaf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f01068971f01eaf_0 new file mode 100644 index 000000000..63cbc912d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f01068971f01eaf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f1ef9732551fa57_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f1ef9732551fa57_0 new file mode 100644 index 000000000..7ba377c62 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f1ef9732551fa57_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f22ebb2aae31fea_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f22ebb2aae31fea_0 new file mode 100644 index 000000000..678cd7e2f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f22ebb2aae31fea_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f2e60f1aed7d51b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f2e60f1aed7d51b_0 index 756ef5b19..aeb46b13f 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f2e60f1aed7d51b_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f2e60f1aed7d51b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f4b317559121c76_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f4b317559121c76_0 new file mode 100644 index 000000000..00539ef4b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f4b317559121c76_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f505213dd2fdea9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f505213dd2fdea9_0 new file mode 100644 index 000000000..5c504b608 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f505213dd2fdea9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f5f7c0bab21e6e2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f5f7c0bab21e6e2_0 index ea871b8db..381a522ee 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f5f7c0bab21e6e2_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f5f7c0bab21e6e2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f712285e48c9433_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f712285e48c9433_0 new file mode 100644 index 000000000..f11ecabbe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f712285e48c9433_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f7bd11796f16da1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f7bd11796f16da1_0 new file mode 100644 index 000000000..42aa81b51 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f7bd11796f16da1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f93abf9fb8713d6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f93abf9fb8713d6_0 new file mode 100644 index 000000000..449e1cb9a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7f93abf9fb8713d6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fa5c360630c2a1c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fa5c360630c2a1c_0 new file mode 100644 index 000000000..0c7c03044 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fa5c360630c2a1c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fa916cf33a6b7e3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fa916cf33a6b7e3_0 new file mode 100644 index 000000000..b55b874ff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fa916cf33a6b7e3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fb01643f3244014_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fb01643f3244014_0 new file mode 100644 index 000000000..0cea74452 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fb01643f3244014_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fc0b3c0cfc3ef92_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fc0b3c0cfc3ef92_0 new file mode 100644 index 000000000..a95f90f73 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fc0b3c0cfc3ef92_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fccf2a0c58111ef_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fccf2a0c58111ef_0 new file mode 100644 index 000000000..cf95b2d9d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fccf2a0c58111ef_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fdde312d2aa70a1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fdde312d2aa70a1_0 new file mode 100644 index 000000000..1598b937d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fdde312d2aa70a1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fff6fdfea9e2cb7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fff6fdfea9e2cb7_0 new file mode 100644 index 000000000..c6efad2ba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/7fff6fdfea9e2cb7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8031667beea423e8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8031667beea423e8_0 new file mode 100644 index 000000000..967881b8c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8031667beea423e8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8055bb1ad50b65bb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8055bb1ad50b65bb_0 new file mode 100644 index 000000000..cfcd512fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8055bb1ad50b65bb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8075f3fdf8e5e2db_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8075f3fdf8e5e2db_0 new file mode 100644 index 000000000..da76cd9b0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8075f3fdf8e5e2db_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/808483dd12684ebb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/808483dd12684ebb_0 new file mode 100644 index 000000000..b0b70e010 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/808483dd12684ebb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/80924a2b19dc210c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/80924a2b19dc210c_0 new file mode 100644 index 000000000..5b8ca9966 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/80924a2b19dc210c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/80b1bf44480a2c4a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/80b1bf44480a2c4a_0 new file mode 100644 index 000000000..12348b5a9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/80b1bf44480a2c4a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/80c3538fa2ed21df_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/80c3538fa2ed21df_0 new file mode 100644 index 000000000..e623a8d74 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/80c3538fa2ed21df_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/80d52e8d74995998_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/80d52e8d74995998_0 new file mode 100644 index 000000000..29694882f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/80d52e8d74995998_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8109426957bc9389_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8109426957bc9389_0 new file mode 100644 index 000000000..cc45a7b41 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8109426957bc9389_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8115010b81bd1853_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8115010b81bd1853_0 new file mode 100644 index 000000000..98a654978 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8115010b81bd1853_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/81256a89c2fd505b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/81256a89c2fd505b_0 new file mode 100644 index 000000000..fdfbd6e74 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/81256a89c2fd505b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/812bb47a94beb937_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/812bb47a94beb937_0 new file mode 100644 index 000000000..1e22a6d29 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/812bb47a94beb937_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/813734a7a26c90a1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/813734a7a26c90a1_0 index fadbacd60..8441fca40 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/813734a7a26c90a1_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/813734a7a26c90a1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/819a5d0792dc68fa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/819a5d0792dc68fa_0 new file mode 100644 index 000000000..711f33196 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/819a5d0792dc68fa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/819d4f96b4e205b5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/819d4f96b4e205b5_0 new file mode 100644 index 000000000..ccb2d8aa8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/819d4f96b4e205b5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/81a35a669a308b56_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/81a35a669a308b56_0 new file mode 100644 index 000000000..9a756b05b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/81a35a669a308b56_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/81b2da727cae9c62_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/81b2da727cae9c62_0 new file mode 100644 index 000000000..63bc627e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/81b2da727cae9c62_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/81c0c4e8e955fda4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/81c0c4e8e955fda4_0 new file mode 100644 index 000000000..9aed5bd74 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/81c0c4e8e955fda4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/81d5356fd9ba5360_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/81d5356fd9ba5360_0 new file mode 100644 index 000000000..99d2aec6c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/81d5356fd9ba5360_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/81d9029102c24165_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/81d9029102c24165_0 index f8ef53569..36b57239e 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/81d9029102c24165_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/81d9029102c24165_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/81d92a462767eaee_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/81d92a462767eaee_0 new file mode 100644 index 000000000..6f8a8c52a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/81d92a462767eaee_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/81e5bf5566d7b22f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/81e5bf5566d7b22f_0 new file mode 100644 index 000000000..052111608 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/81e5bf5566d7b22f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/81fd08af9d3ffc89_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/81fd08af9d3ffc89_0 new file mode 100644 index 000000000..6eb11950d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/81fd08af9d3ffc89_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/82013d8be41a1d71_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/82013d8be41a1d71_0 new file mode 100644 index 000000000..91744cc5b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/82013d8be41a1d71_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/821a36724e43fbe0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/821a36724e43fbe0_0 new file mode 100644 index 000000000..916184fd8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/821a36724e43fbe0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/821a36724e43fbe0_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/821a36724e43fbe0_s new file mode 100644 index 000000000..79215c467 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/821a36724e43fbe0_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/821a3e2511e50982_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/821a3e2511e50982_0 new file mode 100644 index 000000000..9a25d4aaf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/821a3e2511e50982_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/824183a3cb9cbbfd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/824183a3cb9cbbfd_0 new file mode 100644 index 000000000..5f2ebae35 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/824183a3cb9cbbfd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/824278c9fbbe790f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/824278c9fbbe790f_0 new file mode 100644 index 000000000..b62d140f4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/824278c9fbbe790f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/824da10cce69359e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/824da10cce69359e_0 new file mode 100644 index 000000000..fdfe966dd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/824da10cce69359e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/826e0be54cc7fc92_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/826e0be54cc7fc92_0 new file mode 100644 index 000000000..d754f49fd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/826e0be54cc7fc92_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/827c028b380ef07e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/827c028b380ef07e_0 new file mode 100644 index 000000000..9d19ee886 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/827c028b380ef07e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/827e090afd9019a9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/827e090afd9019a9_0 new file mode 100644 index 000000000..d435b5632 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/827e090afd9019a9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/828410eccc505c9e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/828410eccc505c9e_0 new file mode 100644 index 000000000..c3022d1bf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/828410eccc505c9e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/82a219cf659bf4f3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/82a219cf659bf4f3_0 new file mode 100644 index 000000000..d7a4c34b9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/82a219cf659bf4f3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/82bc2f815bf49aff_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/82bc2f815bf49aff_0 new file mode 100644 index 000000000..833575e2e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/82bc2f815bf49aff_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/82bea95eb3213c82_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/82bea95eb3213c82_0 new file mode 100644 index 000000000..7375c1032 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/82bea95eb3213c82_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/82cb7d8c3f8277e8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/82cb7d8c3f8277e8_0 new file mode 100644 index 000000000..1f39541d0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/82cb7d8c3f8277e8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/82cea8f759b8e351_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/82cea8f759b8e351_0 new file mode 100644 index 000000000..280bf4fcb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/82cea8f759b8e351_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/82dbf4db587500b9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/82dbf4db587500b9_0 new file mode 100644 index 000000000..1eef4bcbe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/82dbf4db587500b9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/830a071ba700a6ab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/830a071ba700a6ab_0 new file mode 100644 index 000000000..4e1598b18 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/830a071ba700a6ab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/83180fad4b9c86d7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83180fad4b9c86d7_0 new file mode 100644 index 000000000..5724c039e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83180fad4b9c86d7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/83234e28ad51ecc0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83234e28ad51ecc0_0 new file mode 100644 index 000000000..fef49467b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83234e28ad51ecc0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/832dca5a8f51397a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/832dca5a8f51397a_0 new file mode 100644 index 000000000..55cef3a14 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/832dca5a8f51397a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/833434eb1b8ee385_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/833434eb1b8ee385_0 new file mode 100644 index 000000000..a1bc5ec69 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/833434eb1b8ee385_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/834906ee4111f737_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/834906ee4111f737_0 new file mode 100644 index 000000000..239eb08fb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/834906ee4111f737_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8351eb9338e51a3e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8351eb9338e51a3e_0 new file mode 100644 index 000000000..b6ab2d661 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8351eb9338e51a3e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/835625b13b6fa774_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/835625b13b6fa774_0 new file mode 100644 index 000000000..e8e98a720 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/835625b13b6fa774_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/83570694ad9828fe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83570694ad9828fe_0 new file mode 100644 index 000000000..488014ce0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83570694ad9828fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/83703e134556d0f9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83703e134556d0f9_0 new file mode 100644 index 000000000..a9a702443 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83703e134556d0f9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/838733c705f474ce_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/838733c705f474ce_0 new file mode 100644 index 000000000..a65bf09f5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/838733c705f474ce_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/83a143c71a712e77_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83a143c71a712e77_0 new file mode 100644 index 000000000..4a089ef2b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83a143c71a712e77_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/83af3329fbf2aee5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83af3329fbf2aee5_0 new file mode 100644 index 000000000..69365ac50 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83af3329fbf2aee5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/83b987b25738e9d8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83b987b25738e9d8_0 new file mode 100644 index 000000000..09572b3f7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83b987b25738e9d8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/83bb5ff9d8249b3c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83bb5ff9d8249b3c_0 new file mode 100644 index 000000000..a035b553c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83bb5ff9d8249b3c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/83cdefe2b158be01_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83cdefe2b158be01_0 new file mode 100644 index 000000000..06723ed48 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83cdefe2b158be01_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/83e723d2d78e8a19_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83e723d2d78e8a19_0 new file mode 100644 index 000000000..a1f287cb4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83e723d2d78e8a19_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/83eae32445df47e1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83eae32445df47e1_0 new file mode 100644 index 000000000..cd6106b1c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/83eae32445df47e1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8407fadb24babb63_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8407fadb24babb63_0 new file mode 100644 index 000000000..75477cffe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8407fadb24babb63_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/840ccce7dd892e2b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/840ccce7dd892e2b_0 new file mode 100644 index 000000000..ebdfbbb81 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/840ccce7dd892e2b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/840f28cb99669980_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/840f28cb99669980_0 new file mode 100644 index 000000000..c7e520cc5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/840f28cb99669980_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8422d6aa66b3ba36_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8422d6aa66b3ba36_0 new file mode 100644 index 000000000..905686999 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8422d6aa66b3ba36_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/842415d39630890e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/842415d39630890e_0 new file mode 100644 index 000000000..242470066 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/842415d39630890e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8431ee365eebea92_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8431ee365eebea92_0 new file mode 100644 index 000000000..4488637a2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8431ee365eebea92_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8479d00d8bc0452d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8479d00d8bc0452d_0 new file mode 100644 index 000000000..6a2c25440 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8479d00d8bc0452d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/847b25a5f473c9f8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/847b25a5f473c9f8_0 new file mode 100644 index 000000000..4f69cf168 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/847b25a5f473c9f8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/848a6f1755f988c8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/848a6f1755f988c8_0 new file mode 100644 index 000000000..eb61830ef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/848a6f1755f988c8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/848bf2f34edc7194_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/848bf2f34edc7194_0 new file mode 100644 index 000000000..aa4709b2a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/848bf2f34edc7194_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/84a637798ab2f475_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/84a637798ab2f475_0 new file mode 100644 index 000000000..e66386acc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/84a637798ab2f475_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/84ac0f382c4e1c54_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/84ac0f382c4e1c54_0 new file mode 100644 index 000000000..0211632ac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/84ac0f382c4e1c54_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/84aea96c32f0fd07_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/84aea96c32f0fd07_0 new file mode 100644 index 000000000..9716a268e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/84aea96c32f0fd07_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/84e429c22b435bf2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/84e429c22b435bf2_0 new file mode 100644 index 000000000..8db417ba3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/84e429c22b435bf2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/84e441cd78264d33_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/84e441cd78264d33_0 new file mode 100644 index 000000000..7cc7d3c21 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/84e441cd78264d33_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/84faedfaa8af4982_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/84faedfaa8af4982_0 new file mode 100644 index 000000000..a4c020a8d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/84faedfaa8af4982_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/84fb8aca38b2b128_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/84fb8aca38b2b128_0 new file mode 100644 index 000000000..6650f584f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/84fb8aca38b2b128_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/850b73e3345ba824_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/850b73e3345ba824_0 new file mode 100644 index 000000000..b66b0689e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/850b73e3345ba824_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/853f9b66b4147ad2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/853f9b66b4147ad2_0 new file mode 100644 index 000000000..f14ea8196 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/853f9b66b4147ad2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/85574690ce18eae6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85574690ce18eae6_0 new file mode 100644 index 000000000..6fbec7051 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85574690ce18eae6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/856c8344f15b89c5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/856c8344f15b89c5_0 new file mode 100644 index 000000000..db7b091ce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/856c8344f15b89c5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8571edf353356a86_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8571edf353356a86_0 new file mode 100644 index 000000000..89868e653 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8571edf353356a86_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8581c5657a80c311_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8581c5657a80c311_0 index 3f433fc09..48e0c9415 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8581c5657a80c311_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8581c5657a80c311_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/85846048d380d8bb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85846048d380d8bb_0 new file mode 100644 index 000000000..70ae655ce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85846048d380d8bb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/858cfcef844ab497_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/858cfcef844ab497_0 index 08eb4271d..c4a74546f 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/858cfcef844ab497_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/858cfcef844ab497_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/85a9e640c6955774_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85a9e640c6955774_0 new file mode 100644 index 000000000..e19e1c9e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85a9e640c6955774_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/85ab0d9c5167318e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85ab0d9c5167318e_0 new file mode 100644 index 000000000..245839a86 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85ab0d9c5167318e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/85b39fa41ac10a1f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85b39fa41ac10a1f_0 new file mode 100644 index 000000000..86bcdd14c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85b39fa41ac10a1f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/85c83b3fa77ef429_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85c83b3fa77ef429_0 new file mode 100644 index 000000000..c973fe440 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85c83b3fa77ef429_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/85de0005a69049e7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85de0005a69049e7_0 index 8e916d09a..cf26e264c 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/85de0005a69049e7_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85de0005a69049e7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/85e9f4f2f04f83e9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85e9f4f2f04f83e9_0 new file mode 100644 index 000000000..7d3f9e764 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85e9f4f2f04f83e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/85fde9da1906559e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85fde9da1906559e_0 new file mode 100644 index 000000000..940ba0c81 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85fde9da1906559e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/85fe15f911936b19_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85fe15f911936b19_0 new file mode 100644 index 000000000..ff046a3a9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/85fe15f911936b19_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/860b80a5bd830b25_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/860b80a5bd830b25_0 new file mode 100644 index 000000000..0a90b115d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/860b80a5bd830b25_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8611e0335deb812f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8611e0335deb812f_0 new file mode 100644 index 000000000..99a48e86a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8611e0335deb812f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/861ff2501ef833a1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/861ff2501ef833a1_0 new file mode 100644 index 000000000..136dd0428 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/861ff2501ef833a1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/863fd2133ca5fed6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/863fd2133ca5fed6_0 new file mode 100644 index 000000000..8103de649 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/863fd2133ca5fed6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8641b035d666a004_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8641b035d666a004_0 new file mode 100644 index 000000000..1a9f610c7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8641b035d666a004_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8644907bed098d27_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8644907bed098d27_0 new file mode 100644 index 000000000..d4f345296 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8644907bed098d27_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/865692b750937f9d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/865692b750937f9d_0 new file mode 100644 index 000000000..671dd744b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/865692b750937f9d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/86942a277001dfb5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/86942a277001dfb5_0 new file mode 100644 index 000000000..c6d18bcd5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/86942a277001dfb5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/86b078edc264d807_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/86b078edc264d807_0 new file mode 100644 index 000000000..fbcc982c1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/86b078edc264d807_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/86bd4c705253d50d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/86bd4c705253d50d_0 new file mode 100644 index 000000000..cf84bc8df Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/86bd4c705253d50d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/86ca781ebf6fc414_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/86ca781ebf6fc414_0 new file mode 100644 index 000000000..4e6bcb5e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/86ca781ebf6fc414_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/86cd9238a2dd50e8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/86cd9238a2dd50e8_0 new file mode 100644 index 000000000..a71a4c0bc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/86cd9238a2dd50e8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/86d9ee6cf964bd68_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/86d9ee6cf964bd68_0 new file mode 100644 index 000000000..c0b3bde75 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/86d9ee6cf964bd68_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/86e9d8388f3e31b3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/86e9d8388f3e31b3_0 new file mode 100644 index 000000000..bc9aa6c90 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/86e9d8388f3e31b3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/86f635b3710c08c7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/86f635b3710c08c7_0 new file mode 100644 index 000000000..233283e11 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/86f635b3710c08c7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/87128ecd90a1ac99_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/87128ecd90a1ac99_0 new file mode 100644 index 000000000..d2a768f57 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/87128ecd90a1ac99_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/871daf196a70f777_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/871daf196a70f777_0 new file mode 100644 index 000000000..37a4ead16 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/871daf196a70f777_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/872f8cdf6b5ae82d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/872f8cdf6b5ae82d_0 new file mode 100644 index 000000000..6e0234dd2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/872f8cdf6b5ae82d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/87404010fe46a7c0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/87404010fe46a7c0_0 index c9d0ef61c..4e06794be 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/87404010fe46a7c0_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/87404010fe46a7c0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8749cab85c3a3ace_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8749cab85c3a3ace_0 new file mode 100644 index 000000000..75a466284 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8749cab85c3a3ace_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/878e79b951a757dd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/878e79b951a757dd_0 new file mode 100644 index 000000000..311346466 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/878e79b951a757dd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/87b30110596d5aa1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/87b30110596d5aa1_0 new file mode 100644 index 000000000..3d474ab1a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/87b30110596d5aa1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/87c528da841a25f3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/87c528da841a25f3_0 new file mode 100644 index 000000000..5fefb0fdd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/87c528da841a25f3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/87d4103956cea180_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/87d4103956cea180_0 new file mode 100644 index 000000000..83a828396 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/87d4103956cea180_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/87fb70c679d863a7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/87fb70c679d863a7_0 new file mode 100644 index 000000000..3c4668108 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/87fb70c679d863a7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/881ea4dbb1f7dcf3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/881ea4dbb1f7dcf3_0 new file mode 100644 index 000000000..f6260b22e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/881ea4dbb1f7dcf3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/881f0f66ef673a37_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/881f0f66ef673a37_0 new file mode 100644 index 000000000..44c847f21 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/881f0f66ef673a37_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/88234480d343e74f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/88234480d343e74f_0 new file mode 100644 index 000000000..b7c37e4ba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/88234480d343e74f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/882c37c0c01d0156_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/882c37c0c01d0156_0 new file mode 100644 index 000000000..7fdc66303 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/882c37c0c01d0156_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/885412acad91f421_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/885412acad91f421_0 new file mode 100644 index 000000000..557c2581c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/885412acad91f421_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/885dabf732950cfb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/885dabf732950cfb_0 new file mode 100644 index 000000000..1aba3f639 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/885dabf732950cfb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/886083e97a5142c6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/886083e97a5142c6_0 new file mode 100644 index 000000000..888b29b60 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/886083e97a5142c6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/886e0ea22391db29_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/886e0ea22391db29_0 new file mode 100644 index 000000000..77e8639f9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/886e0ea22391db29_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8876d59bc5252b4a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8876d59bc5252b4a_0 new file mode 100644 index 000000000..8a67c7b16 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8876d59bc5252b4a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/887c673a56af61fe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/887c673a56af61fe_0 new file mode 100644 index 000000000..6d4714323 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/887c673a56af61fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/88836ff65550e1aa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/88836ff65550e1aa_0 new file mode 100644 index 000000000..d73feaf83 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/88836ff65550e1aa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/888594d937ffcd8a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/888594d937ffcd8a_0 new file mode 100644 index 000000000..f095d4bb4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/888594d937ffcd8a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/889020d9a32e1864_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/889020d9a32e1864_0 new file mode 100644 index 000000000..36aeecd5f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/889020d9a32e1864_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/88abcdb922b0314a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/88abcdb922b0314a_0 new file mode 100644 index 000000000..5d5cbb2fd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/88abcdb922b0314a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/88ac03ef152cd57c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/88ac03ef152cd57c_0 new file mode 100644 index 000000000..b1677501f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/88ac03ef152cd57c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/88b93427a0af0d74_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/88b93427a0af0d74_0 new file mode 100644 index 000000000..537b98210 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/88b93427a0af0d74_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/88cfd1626abc8d0c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/88cfd1626abc8d0c_0 new file mode 100644 index 000000000..402a2c75e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/88cfd1626abc8d0c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/88ef3379493bb7fd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/88ef3379493bb7fd_0 new file mode 100644 index 000000000..fb7192c3b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/88ef3379493bb7fd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/88f9b6c611c5562b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/88f9b6c611c5562b_0 new file mode 100644 index 000000000..9e8b83bd7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/88f9b6c611c5562b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8907a8abdd3f25d6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8907a8abdd3f25d6_0 new file mode 100644 index 000000000..d0cd4b7c1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8907a8abdd3f25d6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/890b739ce6239d9e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/890b739ce6239d9e_0 new file mode 100644 index 000000000..6043bb225 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/890b739ce6239d9e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/89136b9fd8b4d822_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89136b9fd8b4d822_0 new file mode 100644 index 000000000..536f76cd3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89136b9fd8b4d822_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8913788ec7f1d5f6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8913788ec7f1d5f6_0 new file mode 100644 index 000000000..3e248bc29 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8913788ec7f1d5f6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/89200fc5c24c2f20_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89200fc5c24c2f20_0 new file mode 100644 index 000000000..f9e927f02 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89200fc5c24c2f20_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/892fb5382c4d704d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/892fb5382c4d704d_0 new file mode 100644 index 000000000..c375e0873 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/892fb5382c4d704d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/893bf4ce93e96b82_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/893bf4ce93e96b82_0 new file mode 100644 index 000000000..72f93b584 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/893bf4ce93e96b82_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/893c3bdca68b30bb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/893c3bdca68b30bb_0 new file mode 100644 index 000000000..48beabe4b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/893c3bdca68b30bb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8960cda9d9338856_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8960cda9d9338856_0 new file mode 100644 index 000000000..167795532 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8960cda9d9338856_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/896bf9c7f958153a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/896bf9c7f958153a_0 new file mode 100644 index 000000000..6500e86ae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/896bf9c7f958153a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/89731c08b61ff30d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89731c08b61ff30d_0 new file mode 100644 index 000000000..05fdc3eaa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89731c08b61ff30d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8991535280b1298d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8991535280b1298d_0 new file mode 100644 index 000000000..567dba7e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8991535280b1298d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/89a07880618ed8e4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89a07880618ed8e4_0 new file mode 100644 index 000000000..d4c749599 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89a07880618ed8e4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/89ab394d98184fd4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89ab394d98184fd4_0 new file mode 100644 index 000000000..4b711657a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89ab394d98184fd4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/89b896533ac5c500_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89b896533ac5c500_0 new file mode 100644 index 000000000..92eed43fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89b896533ac5c500_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/89c002ed6fd3e61d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89c002ed6fd3e61d_0 new file mode 100644 index 000000000..ab583aaa3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89c002ed6fd3e61d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/89cab4712a2ed7b4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89cab4712a2ed7b4_0 new file mode 100644 index 000000000..9722b112f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89cab4712a2ed7b4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/89d7ffa45b6c01a2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89d7ffa45b6c01a2_0 new file mode 100644 index 000000000..70cf8c2bd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89d7ffa45b6c01a2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/89e6ad4b34e4f1ae_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89e6ad4b34e4f1ae_0 new file mode 100644 index 000000000..a97e11aa4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89e6ad4b34e4f1ae_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/89e7a1bb74849e67_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89e7a1bb74849e67_0 new file mode 100644 index 000000000..eb1740015 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/89e7a1bb74849e67_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a0438255a65bfea_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a0438255a65bfea_0 new file mode 100644 index 000000000..dcfcc704f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a0438255a65bfea_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a062c549e8c2ca3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a062c549e8c2ca3_0 new file mode 100644 index 000000000..453f48708 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a062c549e8c2ca3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a0a78f518fb5a7f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a0a78f518fb5a7f_0 new file mode 100644 index 000000000..e3e335477 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a0a78f518fb5a7f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a1aa08a0aa1fcb8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a1aa08a0aa1fcb8_0 new file mode 100644 index 000000000..49b761316 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a1aa08a0aa1fcb8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a24410f3c8d58f7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a24410f3c8d58f7_0 new file mode 100644 index 000000000..d629825fb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a24410f3c8d58f7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a25c073f959cf57_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a25c073f959cf57_0 new file mode 100644 index 000000000..e75a0e249 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a25c073f959cf57_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a35bc11966811a0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a35bc11966811a0_0 new file mode 100644 index 000000000..2effab607 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a35bc11966811a0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a4e24d60ab6e8a0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a4e24d60ab6e8a0_0 new file mode 100644 index 000000000..47a810d0f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a4e24d60ab6e8a0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a56eb64bef9b90e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a56eb64bef9b90e_0 new file mode 100644 index 000000000..255a3e74b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a56eb64bef9b90e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a63d0a77a85ba7a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a63d0a77a85ba7a_0 new file mode 100644 index 000000000..e963799b5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a63d0a77a85ba7a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a73b495fe59a5bf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a73b495fe59a5bf_0 new file mode 100644 index 000000000..a00d2b08e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a73b495fe59a5bf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a9754f06e6fbfd1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a9754f06e6fbfd1_0 new file mode 100644 index 000000000..a4f272b11 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8a9754f06e6fbfd1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8aaa8da85288f2f3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8aaa8da85288f2f3_0 new file mode 100644 index 000000000..aeeded474 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8aaa8da85288f2f3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ab5e396a7066f36_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ab5e396a7066f36_0 new file mode 100644 index 000000000..57eee0675 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ab5e396a7066f36_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ac1b69923d12c63_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ac1b69923d12c63_0 new file mode 100644 index 000000000..ec3e0ed5b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ac1b69923d12c63_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ac5782204a95107_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ac5782204a95107_0 new file mode 100644 index 000000000..729428f6c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ac5782204a95107_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ac8cfb2d4f3fa5a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ac8cfb2d4f3fa5a_0 new file mode 100644 index 000000000..dc0e11b4c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ac8cfb2d4f3fa5a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ad83ac41d33c549_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ad83ac41d33c549_0 new file mode 100644 index 000000000..7c1aa6244 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ad83ac41d33c549_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ad8662b63e7718c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ad8662b63e7718c_0 new file mode 100644 index 000000000..859cb1b1f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ad8662b63e7718c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ae69fbff2547fb5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ae69fbff2547fb5_0 new file mode 100644 index 000000000..6036f82cb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ae69fbff2547fb5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ae77d021ddc9d4d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ae77d021ddc9d4d_0 new file mode 100644 index 000000000..be97cc6dd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ae77d021ddc9d4d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8af35d20051d8881_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8af35d20051d8881_0 new file mode 100644 index 000000000..5564ed64c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8af35d20051d8881_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8af66152d0619ef9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8af66152d0619ef9_0 new file mode 100644 index 000000000..53125bb0b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8af66152d0619ef9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b012cca6fe2fd97_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b012cca6fe2fd97_0 new file mode 100644 index 000000000..f3ac18d41 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b012cca6fe2fd97_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b0da8d90bd800d1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b0da8d90bd800d1_0 new file mode 100644 index 000000000..f9d0edbc6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b0da8d90bd800d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b13f5ae41ad762d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b13f5ae41ad762d_0 new file mode 100644 index 000000000..1053148b2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b13f5ae41ad762d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b15c46e9a3e3680_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b15c46e9a3e3680_0 new file mode 100644 index 000000000..0b25dac9a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b15c46e9a3e3680_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b2924209da0105b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b2924209da0105b_0 new file mode 100644 index 000000000..9aecfd9ee Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b2924209da0105b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b5bb0805e2d0922_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b5bb0805e2d0922_0 new file mode 100644 index 000000000..9eb9712ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b5bb0805e2d0922_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b84a3da5fe1a9bc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b84a3da5fe1a9bc_0 index d537534fb..a4853e4f0 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b84a3da5fe1a9bc_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b84a3da5fe1a9bc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b87e7d276524bcb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b87e7d276524bcb_0 new file mode 100644 index 000000000..49ab1858e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8b87e7d276524bcb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8bb1bc774872479b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8bb1bc774872479b_0 new file mode 100644 index 000000000..0a82f17bc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8bb1bc774872479b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8bc281f5fc5ee418_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8bc281f5fc5ee418_0 new file mode 100644 index 000000000..1b2871e36 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8bc281f5fc5ee418_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8bc9d76713568482_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8bc9d76713568482_0 new file mode 100644 index 000000000..091c66eb5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8bc9d76713568482_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8bd4be6ef27e5067_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8bd4be6ef27e5067_0 new file mode 100644 index 000000000..d25cfc1df Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8bd4be6ef27e5067_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8bde0a2c3c02fd54_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8bde0a2c3c02fd54_0 new file mode 100644 index 000000000..aef647e8d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8bde0a2c3c02fd54_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8be3821f4bb437a0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8be3821f4bb437a0_0 new file mode 100644 index 000000000..676f9f117 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8be3821f4bb437a0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c072a6191924fd9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c072a6191924fd9_0 new file mode 100644 index 000000000..03b084fc2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c072a6191924fd9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c100c80e735634c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c100c80e735634c_0 new file mode 100644 index 000000000..f79d6dc83 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c100c80e735634c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c1d226d00380a3f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c1d226d00380a3f_0 new file mode 100644 index 000000000..78cfdd5e9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c1d226d00380a3f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c2c06d0cf2ebbb5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c2c06d0cf2ebbb5_0 new file mode 100644 index 000000000..a0de0e5b2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c2c06d0cf2ebbb5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c3c392c4ff0ba25_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c3c392c4ff0ba25_0 index cd998a314..cfe6b80fa 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c3c392c4ff0ba25_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c3c392c4ff0ba25_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c45aaace7b324b9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c45aaace7b324b9_0 new file mode 100644 index 000000000..4361fac3d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c45aaace7b324b9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c4cc8e9b6d8a360_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c4cc8e9b6d8a360_0 new file mode 100644 index 000000000..b26f81bf1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c4cc8e9b6d8a360_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c5b57bb6cd2e65c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c5b57bb6cd2e65c_0 new file mode 100644 index 000000000..e78b6afd4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c5b57bb6cd2e65c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c61ef179c8f34ac_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c61ef179c8f34ac_0 new file mode 100644 index 000000000..289565415 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c61ef179c8f34ac_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c7a2a0a993bcb1f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c7a2a0a993bcb1f_0 new file mode 100644 index 000000000..bf041fe54 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8c7a2a0a993bcb1f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ca3344ae2d09038_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ca3344ae2d09038_0 new file mode 100644 index 000000000..3ab2f1a73 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ca3344ae2d09038_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8cbafe09817ef156_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8cbafe09817ef156_0 new file mode 100644 index 000000000..1ded78e18 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8cbafe09817ef156_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ce53cf004730c7e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ce53cf004730c7e_0 new file mode 100644 index 000000000..364838eb8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ce53cf004730c7e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ced5c13010be785_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ced5c13010be785_0 new file mode 100644 index 000000000..e4e74e9c5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ced5c13010be785_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8d13d460e51f3abd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8d13d460e51f3abd_0 new file mode 100644 index 000000000..98cb56e68 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8d13d460e51f3abd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8d28bd3b95d9c6e3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8d28bd3b95d9c6e3_0 new file mode 100644 index 000000000..a46d8e1c8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8d28bd3b95d9c6e3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8d38af2d8b7f5560_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8d38af2d8b7f5560_0 new file mode 100644 index 000000000..145caff07 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8d38af2d8b7f5560_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8d4aa6dc9d061fcb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8d4aa6dc9d061fcb_0 index 9199dbcbd..97d0c568b 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8d4aa6dc9d061fcb_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8d4aa6dc9d061fcb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8dbb3ec8b2caa6e4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8dbb3ec8b2caa6e4_0 new file mode 100644 index 000000000..8a23439cb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8dbb3ec8b2caa6e4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8dd7fef71baf1bc1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8dd7fef71baf1bc1_0 new file mode 100644 index 000000000..5b5583c67 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8dd7fef71baf1bc1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ddb0490188c9399_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ddb0490188c9399_0 new file mode 100644 index 000000000..1205e3b1e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ddb0490188c9399_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8defb8d4e5ff3962_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8defb8d4e5ff3962_0 new file mode 100644 index 000000000..04e7eac01 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8defb8d4e5ff3962_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8df7da2b3dfd61c9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8df7da2b3dfd61c9_0 new file mode 100644 index 000000000..33bc46e32 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8df7da2b3dfd61c9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e05e63f22755714_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e05e63f22755714_0 new file mode 100644 index 000000000..6143bd0c7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e05e63f22755714_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e0b7d617e7c3593_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e0b7d617e7c3593_0 index 942cb3f92..e3dcd7fff 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e0b7d617e7c3593_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e0b7d617e7c3593_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e152dba4c61443d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e152dba4c61443d_0 new file mode 100644 index 000000000..6121270d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e152dba4c61443d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e496f86e7cc657e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e496f86e7cc657e_0 new file mode 100644 index 000000000..47df67038 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e496f86e7cc657e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e4c6bca738748ea_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e4c6bca738748ea_0 new file mode 100644 index 000000000..d68ec863b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e4c6bca738748ea_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e4dd09684346cbf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e4dd09684346cbf_0 new file mode 100644 index 000000000..2d5349f22 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e4dd09684346cbf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e75d79e57dc6851_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e75d79e57dc6851_0 new file mode 100644 index 000000000..2b866f673 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e75d79e57dc6851_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e7df11f730b2c44_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e7df11f730b2c44_0 new file mode 100644 index 000000000..98d6a6713 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e7df11f730b2c44_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e83e785ea1e5fa8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e83e785ea1e5fa8_0 new file mode 100644 index 000000000..bf445ad5c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e83e785ea1e5fa8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e90c52e97c68714_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e90c52e97c68714_0 new file mode 100644 index 000000000..a8da33212 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8e90c52e97c68714_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ebdfcb13bfb9ea0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ebdfcb13bfb9ea0_0 new file mode 100644 index 000000000..60e6bc153 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ebdfcb13bfb9ea0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ec8687862c94007_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ec8687862c94007_0 new file mode 100644 index 000000000..cf1d93894 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ec8687862c94007_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ed976a61e0d3b94_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ed976a61e0d3b94_0 new file mode 100644 index 000000000..8828a7b31 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ed976a61e0d3b94_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8edef6e8c94fac0c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8edef6e8c94fac0c_0 new file mode 100644 index 000000000..4b299cc66 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8edef6e8c94fac0c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8eea3fbddff42247_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8eea3fbddff42247_0 new file mode 100644 index 000000000..70a05b1e2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8eea3fbddff42247_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ef65f8db26536d4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ef65f8db26536d4_0 new file mode 100644 index 000000000..8dde44940 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8ef65f8db26536d4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f0886b36d707e63_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f0886b36d707e63_0 new file mode 100644 index 000000000..be70f59b1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f0886b36d707e63_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f0d8084ad86a798_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f0d8084ad86a798_0 index 2180cdc4d..ebcd9c3a9 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f0d8084ad86a798_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f0d8084ad86a798_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f22797fbc2dc07e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f22797fbc2dc07e_0 new file mode 100644 index 000000000..664828b42 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f22797fbc2dc07e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f28eb1749224327_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f28eb1749224327_0 new file mode 100644 index 000000000..1f4243304 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f28eb1749224327_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f411494d288086d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f411494d288086d_0 new file mode 100644 index 000000000..f04e35ff0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f411494d288086d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f4234634473cc60_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f4234634473cc60_0 index 34294a63f..3829e07a4 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f4234634473cc60_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f4234634473cc60_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f4d59dc7552ebe1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f4d59dc7552ebe1_0 new file mode 100644 index 000000000..7f7bb2e13 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f4d59dc7552ebe1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f511397b8abd9d6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f511397b8abd9d6_0 new file mode 100644 index 000000000..f6a90d92a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f511397b8abd9d6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f52c01d7ac9420c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f52c01d7ac9420c_0 new file mode 100644 index 000000000..49e535b55 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f52c01d7ac9420c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f5834b06db0cfe8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f5834b06db0cfe8_0 new file mode 100644 index 000000000..08e58bfb1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f5834b06db0cfe8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f5887700d401eba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f5887700d401eba_0 index cd2d681f6..2956de60f 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f5887700d401eba_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f5887700d401eba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f734457e9804511_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f734457e9804511_0 new file mode 100644 index 000000000..32b07ba3c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f734457e9804511_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f87a9e1a1a18a51_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f87a9e1a1a18a51_0 new file mode 100644 index 000000000..fe5448610 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8f87a9e1a1a18a51_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8fb62aa7a304c04b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8fb62aa7a304c04b_0 new file mode 100644 index 000000000..80d01b00c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8fb62aa7a304c04b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8fd01c9d1c7a7b79_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8fd01c9d1c7a7b79_0 new file mode 100644 index 000000000..e6865351e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8fd01c9d1c7a7b79_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8fd445230bb01130_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8fd445230bb01130_0 new file mode 100644 index 000000000..ba12428c9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8fd445230bb01130_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8fe0bc5f44d4df03_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8fe0bc5f44d4df03_0 new file mode 100644 index 000000000..ce0a2a8af Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8fe0bc5f44d4df03_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/8fe704abb7b155b8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8fe704abb7b155b8_0 new file mode 100644 index 000000000..751736dec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/8fe704abb7b155b8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/900db8ec76091916_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/900db8ec76091916_0 new file mode 100644 index 000000000..676c0f4a8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/900db8ec76091916_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9035a36f04d4263e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9035a36f04d4263e_0 new file mode 100644 index 000000000..72c6fe913 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9035a36f04d4263e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/904a0428ed2c3684_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/904a0428ed2c3684_0 new file mode 100644 index 000000000..24a6eaaeb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/904a0428ed2c3684_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/904e36080a8f9c1a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/904e36080a8f9c1a_0 new file mode 100644 index 000000000..256f1b65e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/904e36080a8f9c1a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/908aa2f5cbef7814_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/908aa2f5cbef7814_0 new file mode 100644 index 000000000..fe5d03a67 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/908aa2f5cbef7814_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/909fd8c9d6fe0e44_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/909fd8c9d6fe0e44_0 new file mode 100644 index 000000000..0a86f9eed Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/909fd8c9d6fe0e44_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/90ae5520aac98589_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/90ae5520aac98589_0 new file mode 100644 index 000000000..849b16d0d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/90ae5520aac98589_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/90c7c25b20be537e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/90c7c25b20be537e_0 new file mode 100644 index 000000000..11676d352 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/90c7c25b20be537e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/90ca84d86a69e0a4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/90ca84d86a69e0a4_0 new file mode 100644 index 000000000..ba821d052 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/90ca84d86a69e0a4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/90d2f923c0bbc7e1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/90d2f923c0bbc7e1_0 new file mode 100644 index 000000000..fcee1fde7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/90d2f923c0bbc7e1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/90f810cd029552bd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/90f810cd029552bd_0 new file mode 100644 index 000000000..2084a6802 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/90f810cd029552bd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/90ff3a7796026002_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/90ff3a7796026002_0 new file mode 100644 index 000000000..85b1352d2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/90ff3a7796026002_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9107121a1af7008e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9107121a1af7008e_0 new file mode 100644 index 000000000..79b6ac29c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9107121a1af7008e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/912225a3d081d329_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/912225a3d081d329_0 new file mode 100644 index 000000000..51ff9e642 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/912225a3d081d329_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/913cc3820d6bb713_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/913cc3820d6bb713_0 index 38739dd30..a0fb6ce4a 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/913cc3820d6bb713_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/913cc3820d6bb713_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/91409658efe1a5ab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/91409658efe1a5ab_0 new file mode 100644 index 000000000..6b239f4ab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/91409658efe1a5ab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/914b355321129c7e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/914b355321129c7e_0 new file mode 100644 index 000000000..52ce6822e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/914b355321129c7e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/914b38dc157f9ecd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/914b38dc157f9ecd_0 new file mode 100644 index 000000000..9d08e1803 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/914b38dc157f9ecd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/915cc5774899d4b2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/915cc5774899d4b2_0 new file mode 100644 index 000000000..daf372f51 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/915cc5774899d4b2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9165a07d5753a55b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9165a07d5753a55b_0 new file mode 100644 index 000000000..cf23bc156 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9165a07d5753a55b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/919d6e8431cfe37d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/919d6e8431cfe37d_0 new file mode 100644 index 000000000..0bc1a5da3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/919d6e8431cfe37d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/91ac68343216c92f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/91ac68343216c92f_0 new file mode 100644 index 000000000..56c0732d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/91ac68343216c92f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/91bfa755bf1b4ea2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/91bfa755bf1b4ea2_0 new file mode 100644 index 000000000..8aaf3a2c7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/91bfa755bf1b4ea2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/91d643028ea94d0f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/91d643028ea94d0f_0 new file mode 100644 index 000000000..f8b781691 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/91d643028ea94d0f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/91e202c13b51c786_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/91e202c13b51c786_0 new file mode 100644 index 000000000..63137c104 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/91e202c13b51c786_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/91e5afb16024b80d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/91e5afb16024b80d_0 new file mode 100644 index 000000000..ff450819b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/91e5afb16024b80d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/91ee2c88ffca6cf4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/91ee2c88ffca6cf4_0 new file mode 100644 index 000000000..05ba32d54 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/91ee2c88ffca6cf4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9205399860b30f6c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9205399860b30f6c_0 new file mode 100644 index 000000000..f70f6af80 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9205399860b30f6c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/920891b63f4dab76_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/920891b63f4dab76_0 new file mode 100644 index 000000000..3dadd5b0d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/920891b63f4dab76_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9214891644e6b586_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9214891644e6b586_0 new file mode 100644 index 000000000..7f372ff26 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9214891644e6b586_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/922ba71b1d5aefc4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/922ba71b1d5aefc4_0 new file mode 100644 index 000000000..ae3981c09 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/922ba71b1d5aefc4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/922c83fd8a1f3f40_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/922c83fd8a1f3f40_0 new file mode 100644 index 000000000..cd307289a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/922c83fd8a1f3f40_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/922e7c791b8b72a3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/922e7c791b8b72a3_0 new file mode 100644 index 000000000..ac39dd88d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/922e7c791b8b72a3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/923308475fd2a706_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/923308475fd2a706_0 new file mode 100644 index 000000000..43439b30c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/923308475fd2a706_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9236df6764249697_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9236df6764249697_0 new file mode 100644 index 000000000..9f085fd87 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9236df6764249697_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/92538acb5c59c957_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92538acb5c59c957_0 new file mode 100644 index 000000000..ec738bd26 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92538acb5c59c957_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9253f44af1ee41c5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9253f44af1ee41c5_0 new file mode 100644 index 000000000..959a6ce39 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9253f44af1ee41c5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/92616a92026d8d81_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92616a92026d8d81_0 new file mode 100644 index 000000000..504183eda Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92616a92026d8d81_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/926c27d558baa529_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/926c27d558baa529_0 new file mode 100644 index 000000000..3d6d0c1a0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/926c27d558baa529_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/92769600620f24a8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92769600620f24a8_0 new file mode 100644 index 000000000..fb6433050 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92769600620f24a8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9282b7ae12f696b5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9282b7ae12f696b5_0 new file mode 100644 index 000000000..3440e2b3d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9282b7ae12f696b5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/928ebd04cc80f6aa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/928ebd04cc80f6aa_0 new file mode 100644 index 000000000..625adbcc0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/928ebd04cc80f6aa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/92ab6d6ff0318629_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92ab6d6ff0318629_0 new file mode 100644 index 000000000..1275840fc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92ab6d6ff0318629_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/92c2b8682e0c0792_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92c2b8682e0c0792_0 new file mode 100644 index 000000000..ab91faee8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92c2b8682e0c0792_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/92c5df9028f149a1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92c5df9028f149a1_0 new file mode 100644 index 000000000..beac1e123 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92c5df9028f149a1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/92c988f5b6a3e37d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92c988f5b6a3e37d_0 new file mode 100644 index 000000000..9f3e86f67 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92c988f5b6a3e37d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/92ceb42d4d650a7e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92ceb42d4d650a7e_0 new file mode 100644 index 000000000..593264955 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92ceb42d4d650a7e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/92d5877ff27ae2c7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92d5877ff27ae2c7_0 new file mode 100644 index 000000000..187f2ab6d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92d5877ff27ae2c7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/92dbfc706b01c6f6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92dbfc706b01c6f6_0 new file mode 100644 index 000000000..9e8c42f89 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92dbfc706b01c6f6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/92eef93ada7f8970_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92eef93ada7f8970_0 new file mode 100644 index 000000000..f4096e1cd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92eef93ada7f8970_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/92f53eda833c32e6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92f53eda833c32e6_0 new file mode 100644 index 000000000..e5bcae08e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92f53eda833c32e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/92fec32953eac1a8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92fec32953eac1a8_0 new file mode 100644 index 000000000..df90b6f14 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/92fec32953eac1a8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/930459c9ad0e3d3b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/930459c9ad0e3d3b_0 new file mode 100644 index 000000000..954e2d1be Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/930459c9ad0e3d3b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9309e341f6c2f2b6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9309e341f6c2f2b6_0 new file mode 100644 index 000000000..614a52149 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9309e341f6c2f2b6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/93154cfec53a2c95_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93154cfec53a2c95_0 new file mode 100644 index 000000000..47b727eb0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93154cfec53a2c95_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/931d89053bf52aec_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/931d89053bf52aec_0 new file mode 100644 index 000000000..891516ea7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/931d89053bf52aec_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9321c0d294cf6ed1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9321c0d294cf6ed1_0 new file mode 100644 index 000000000..7d9efb5ce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9321c0d294cf6ed1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/934d43c1052480df_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/934d43c1052480df_0 new file mode 100644 index 000000000..170eb5411 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/934d43c1052480df_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9360977038ddb7ca_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9360977038ddb7ca_0 new file mode 100644 index 000000000..8b7200b41 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9360977038ddb7ca_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/93628b887109e72f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93628b887109e72f_0 new file mode 100644 index 000000000..1ebceeaaa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93628b887109e72f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/936a918d7705b313_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/936a918d7705b313_0 new file mode 100644 index 000000000..13c15d473 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/936a918d7705b313_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9379fb689bc68eaa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9379fb689bc68eaa_0 new file mode 100644 index 000000000..9f1fb0b42 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9379fb689bc68eaa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/937e411b66e93fe0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/937e411b66e93fe0_0 new file mode 100644 index 000000000..9f0d4835b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/937e411b66e93fe0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/93807ad8d2d1cb7d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93807ad8d2d1cb7d_0 new file mode 100644 index 000000000..610fbfb4e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93807ad8d2d1cb7d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/939774d20d341fae_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/939774d20d341fae_0 new file mode 100644 index 000000000..fbbf9f6d8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/939774d20d341fae_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/93ad0463e8d1cadb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93ad0463e8d1cadb_0 new file mode 100644 index 000000000..58e466abf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93ad0463e8d1cadb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/93af0278908f0d71_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93af0278908f0d71_0 new file mode 100644 index 000000000..7b76cd06f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93af0278908f0d71_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/93b4ecabd5356b78_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93b4ecabd5356b78_0 new file mode 100644 index 000000000..b93d729c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93b4ecabd5356b78_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/93b6aa4e42722f0a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93b6aa4e42722f0a_0 new file mode 100644 index 000000000..7d3eac626 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93b6aa4e42722f0a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/93c6f6d6b36958da_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93c6f6d6b36958da_0 new file mode 100644 index 000000000..631f00493 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93c6f6d6b36958da_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/93cb2c60e7f64b43_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93cb2c60e7f64b43_0 new file mode 100644 index 000000000..95e56ba04 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93cb2c60e7f64b43_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/93d375f3a58932c8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93d375f3a58932c8_0 new file mode 100644 index 000000000..8901ad9ba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93d375f3a58932c8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/93d81321f8c35eab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93d81321f8c35eab_0 index 284100086..e03b12750 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/93d81321f8c35eab_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93d81321f8c35eab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/93dd0484f5eac6b3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93dd0484f5eac6b3_0 new file mode 100644 index 000000000..2feaeac49 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93dd0484f5eac6b3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/93dd5d4550b82eba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93dd5d4550b82eba_0 new file mode 100644 index 000000000..d3b11bc3d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93dd5d4550b82eba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/93f27837121e7418_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93f27837121e7418_0 new file mode 100644 index 000000000..7da9ee2b6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93f27837121e7418_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/93f7c616a1750606_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93f7c616a1750606_0 new file mode 100644 index 000000000..92201f207 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/93f7c616a1750606_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9433a5db37ba624f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9433a5db37ba624f_0 new file mode 100644 index 000000000..3dfacd1b2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9433a5db37ba624f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9445a3ff80d7f1e9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9445a3ff80d7f1e9_0 new file mode 100644 index 000000000..e8c1b1f1b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9445a3ff80d7f1e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9477ac01eec0d734_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9477ac01eec0d734_0 new file mode 100644 index 000000000..5251c8e07 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9477ac01eec0d734_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/94831021b2a0c726_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/94831021b2a0c726_0 new file mode 100644 index 000000000..2e7d7367e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/94831021b2a0c726_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/94dabb727b306fe4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/94dabb727b306fe4_0 new file mode 100644 index 000000000..33f8f6560 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/94dabb727b306fe4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/94f22bc4eb1541b8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/94f22bc4eb1541b8_0 index c043b35a6..216ecad17 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/94f22bc4eb1541b8_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/94f22bc4eb1541b8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/94f5f418d31cc948_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/94f5f418d31cc948_0 new file mode 100644 index 000000000..f5cdd3da9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/94f5f418d31cc948_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/95140d65c853940a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95140d65c853940a_0 new file mode 100644 index 000000000..f833f7d4c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95140d65c853940a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/952624a695b16a08_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/952624a695b16a08_0 new file mode 100644 index 000000000..cce7641df Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/952624a695b16a08_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9541028c9eebf364_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9541028c9eebf364_0 new file mode 100644 index 000000000..0ecedf982 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9541028c9eebf364_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/954778eb30a24dd3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/954778eb30a24dd3_0 new file mode 100644 index 000000000..b365ab318 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/954778eb30a24dd3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/955b1baf6857b90a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/955b1baf6857b90a_0 new file mode 100644 index 000000000..654daa3d0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/955b1baf6857b90a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/95632e1fca7f6b55_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95632e1fca7f6b55_0 new file mode 100644 index 000000000..bd643b23f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95632e1fca7f6b55_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/957994a9a27ff271_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/957994a9a27ff271_0 new file mode 100644 index 000000000..ab5c6df1e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/957994a9a27ff271_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/957a3514454552d0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/957a3514454552d0_0 new file mode 100644 index 000000000..f6bb07ac8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/957a3514454552d0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/958964c4a7cb4888_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/958964c4a7cb4888_0 new file mode 100644 index 000000000..b8da2a495 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/958964c4a7cb4888_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/95930929d8615d6b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95930929d8615d6b_0 new file mode 100644 index 000000000..445f67621 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95930929d8615d6b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/959fbfb2a1d16693_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/959fbfb2a1d16693_0 new file mode 100644 index 000000000..9cd295e78 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/959fbfb2a1d16693_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/95a7c2167c45e4fc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95a7c2167c45e4fc_0 new file mode 100644 index 000000000..66e95cc03 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95a7c2167c45e4fc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/95c5c069878437c7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95c5c069878437c7_0 new file mode 100644 index 000000000..38782eaa4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95c5c069878437c7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/95d6886275889081_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95d6886275889081_0 new file mode 100644 index 000000000..7f498ab21 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95d6886275889081_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/95e5cacfdc0cb187_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95e5cacfdc0cb187_0 new file mode 100644 index 000000000..bd5a0f46e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95e5cacfdc0cb187_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/95f2e746c818fee3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95f2e746c818fee3_0 new file mode 100644 index 000000000..565a8f3cc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95f2e746c818fee3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/95f7a15d1abbee57_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95f7a15d1abbee57_0 new file mode 100644 index 000000000..0d695b1b3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95f7a15d1abbee57_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/95fc53a3bf9f8876_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95fc53a3bf9f8876_0 new file mode 100644 index 000000000..5096b912d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/95fc53a3bf9f8876_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9614b3c7726e193f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9614b3c7726e193f_0 new file mode 100644 index 000000000..461f34817 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9614b3c7726e193f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9617234508bd6bb0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9617234508bd6bb0_0 new file mode 100644 index 000000000..1a27076b4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9617234508bd6bb0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/96298fb3a661c378_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/96298fb3a661c378_0 new file mode 100644 index 000000000..617459fd3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/96298fb3a661c378_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/962c189badd30f53_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/962c189badd30f53_0 index 885cdc22c..e04c73d65 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/962c189badd30f53_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/962c189badd30f53_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/96378a737be238ad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/96378a737be238ad_0 new file mode 100644 index 000000000..3d1749afe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/96378a737be238ad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/963fcb820d2c3e99_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/963fcb820d2c3e99_0 new file mode 100644 index 000000000..ad77e62c5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/963fcb820d2c3e99_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9663e44bad459468_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9663e44bad459468_0 new file mode 100644 index 000000000..bfd1173e5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9663e44bad459468_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9666b4f3b7b7d76a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9666b4f3b7b7d76a_0 new file mode 100644 index 000000000..cedcb24fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9666b4f3b7b7d76a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/967da66f21e4c3dc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/967da66f21e4c3dc_0 new file mode 100644 index 000000000..7035cb711 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/967da66f21e4c3dc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9684714fca134dff_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9684714fca134dff_0 new file mode 100644 index 000000000..5f038a780 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9684714fca134dff_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/969d13b837ab6b17_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/969d13b837ab6b17_0 new file mode 100644 index 000000000..6a0ede0db Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/969d13b837ab6b17_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/96c22a422cf78f7f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/96c22a422cf78f7f_0 new file mode 100644 index 000000000..0d9aa91f9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/96c22a422cf78f7f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/96c37fc27edf9a10_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/96c37fc27edf9a10_0 new file mode 100644 index 000000000..0f113bd78 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/96c37fc27edf9a10_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/96d5dcf4a77ae00b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/96d5dcf4a77ae00b_0 new file mode 100644 index 000000000..e88bd8df8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/96d5dcf4a77ae00b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/96db072122bcc655_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/96db072122bcc655_0 new file mode 100644 index 000000000..8d810c924 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/96db072122bcc655_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/96e4b2223d99d464_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/96e4b2223d99d464_0 new file mode 100644 index 000000000..329d95641 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/96e4b2223d99d464_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/96ed41b1bbe40f3b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/96ed41b1bbe40f3b_0 new file mode 100644 index 000000000..1cbf72516 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/96ed41b1bbe40f3b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/971f0cede7033aac_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/971f0cede7033aac_0 new file mode 100644 index 000000000..77ae7a354 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/971f0cede7033aac_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/972a2574e5294dcd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/972a2574e5294dcd_0 new file mode 100644 index 000000000..bcb8e549f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/972a2574e5294dcd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/974435b009601121_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/974435b009601121_0 new file mode 100644 index 000000000..5eca0dda6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/974435b009601121_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/97691833186643ab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/97691833186643ab_0 new file mode 100644 index 000000000..ee8f1d240 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/97691833186643ab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/977031d58fb4ea9e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/977031d58fb4ea9e_0 new file mode 100644 index 000000000..6bf3867d2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/977031d58fb4ea9e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/978df5f4cf68069b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/978df5f4cf68069b_0 new file mode 100644 index 000000000..4513b9a6a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/978df5f4cf68069b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/979b248034e2ceda_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/979b248034e2ceda_0 new file mode 100644 index 000000000..631f43326 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/979b248034e2ceda_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/97a9700d8f9cf0eb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/97a9700d8f9cf0eb_0 new file mode 100644 index 000000000..0fb9c817b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/97a9700d8f9cf0eb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/97abae15398b19b8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/97abae15398b19b8_0 new file mode 100644 index 000000000..524124ab7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/97abae15398b19b8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/97d04b7aee264ab2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/97d04b7aee264ab2_0 new file mode 100644 index 000000000..d3fb6e6f1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/97d04b7aee264ab2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/97d11ba247ed96f9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/97d11ba247ed96f9_0 new file mode 100644 index 000000000..41dff86b0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/97d11ba247ed96f9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/97d4e17cc17160ba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/97d4e17cc17160ba_0 new file mode 100644 index 000000000..6805df65b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/97d4e17cc17160ba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/97f99de759991ce8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/97f99de759991ce8_0 new file mode 100644 index 000000000..74380cf62 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/97f99de759991ce8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/98071b42771def04_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98071b42771def04_0 new file mode 100644 index 000000000..0abf36f3b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98071b42771def04_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/980e2007c885755c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/980e2007c885755c_0 new file mode 100644 index 000000000..69051891f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/980e2007c885755c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/982982a28e2aa6ce_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/982982a28e2aa6ce_0 new file mode 100644 index 000000000..26fd021d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/982982a28e2aa6ce_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/983a4d1932c915de_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/983a4d1932c915de_0 new file mode 100644 index 000000000..b2ac95c71 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/983a4d1932c915de_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/983f34c733f3330e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/983f34c733f3330e_0 new file mode 100644 index 000000000..ef82e9e51 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/983f34c733f3330e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/98579f3efdfc081a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98579f3efdfc081a_0 new file mode 100644 index 000000000..892d6394f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98579f3efdfc081a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/985f240d51e60955_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/985f240d51e60955_0 index 4cd1cb1cf..62bea90ff 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/985f240d51e60955_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/985f240d51e60955_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9862936b52a64f24_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9862936b52a64f24_0 new file mode 100644 index 000000000..c03387aaa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9862936b52a64f24_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9871fa06315be63b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9871fa06315be63b_0 new file mode 100644 index 000000000..b8027ac6a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9871fa06315be63b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9877c759ca665f1e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9877c759ca665f1e_0 new file mode 100644 index 000000000..c96a585de Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9877c759ca665f1e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/98783df6632ab511_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98783df6632ab511_0 new file mode 100644 index 000000000..3a712f3d1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98783df6632ab511_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/98802aabfffca9f6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98802aabfffca9f6_0 new file mode 100644 index 000000000..8ede29c14 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98802aabfffca9f6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/988972e70b0fc127_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/988972e70b0fc127_0 new file mode 100644 index 000000000..4612335d4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/988972e70b0fc127_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9897ffcccf3d9daf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9897ffcccf3d9daf_0 new file mode 100644 index 000000000..de7527e90 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9897ffcccf3d9daf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/98a9c2e0308b763c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98a9c2e0308b763c_0 new file mode 100644 index 000000000..c69c4a3a5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98a9c2e0308b763c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/98db44f948022828_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98db44f948022828_0 index c38538494..cc4dd98ab 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/98db44f948022828_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98db44f948022828_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/98e0e187307032cc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98e0e187307032cc_0 new file mode 100644 index 000000000..044f6b9ad Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98e0e187307032cc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/98e6de2a7b33f5f5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98e6de2a7b33f5f5_0 new file mode 100644 index 000000000..a16160bab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98e6de2a7b33f5f5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/98e70d38b8c48f2b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98e70d38b8c48f2b_0 new file mode 100644 index 000000000..3a6ec63bd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98e70d38b8c48f2b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/98eccc2fc953264a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98eccc2fc953264a_0 new file mode 100644 index 000000000..16b183b32 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98eccc2fc953264a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/98ed0081e8ab0abf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98ed0081e8ab0abf_0 new file mode 100644 index 000000000..ecacaede8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98ed0081e8ab0abf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/98f1029c605979b9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98f1029c605979b9_0 new file mode 100644 index 000000000..67fd5b22f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98f1029c605979b9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/98fce34a5970eac0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98fce34a5970eac0_0 new file mode 100644 index 000000000..990fa0ebb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/98fce34a5970eac0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/992cf47e78b711b0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/992cf47e78b711b0_0 new file mode 100644 index 000000000..0722d6310 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/992cf47e78b711b0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/992d0192ab940634_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/992d0192ab940634_0 new file mode 100644 index 000000000..7ab550c90 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/992d0192ab940634_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9932716dd960f3b7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9932716dd960f3b7_0 new file mode 100644 index 000000000..f18482797 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9932716dd960f3b7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9957b6a6838dcd9e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9957b6a6838dcd9e_0 new file mode 100644 index 000000000..f62b73510 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9957b6a6838dcd9e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9971139d8f32ca24_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9971139d8f32ca24_0 new file mode 100644 index 000000000..ac90f1e2c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9971139d8f32ca24_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/998d11752afd3d1e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/998d11752afd3d1e_0 new file mode 100644 index 000000000..5785a601e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/998d11752afd3d1e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9994eb572db46fc5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9994eb572db46fc5_0 new file mode 100644 index 000000000..de4b7b579 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9994eb572db46fc5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/999e106ff5ac99e6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/999e106ff5ac99e6_0 new file mode 100644 index 000000000..a2d16d5d2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/999e106ff5ac99e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/99b8ebcd5648a620_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/99b8ebcd5648a620_0 new file mode 100644 index 000000000..695f92343 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/99b8ebcd5648a620_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/99d12aa51e0ed194_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/99d12aa51e0ed194_0 new file mode 100644 index 000000000..351119392 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/99d12aa51e0ed194_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/99e180e540d67a0e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/99e180e540d67a0e_0 new file mode 100644 index 000000000..5f6cc8487 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/99e180e540d67a0e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/99fc261a1f1267e4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/99fc261a1f1267e4_0 new file mode 100644 index 000000000..df0dbe97a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/99fc261a1f1267e4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9a1d316d479461a6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9a1d316d479461a6_0 new file mode 100644 index 000000000..e0c2c2bc5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9a1d316d479461a6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9a2b823176c3991a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9a2b823176c3991a_0 new file mode 100644 index 000000000..94b8166f7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9a2b823176c3991a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9a43cea4e1b34e87_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9a43cea4e1b34e87_0 new file mode 100644 index 000000000..0ec677463 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9a43cea4e1b34e87_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9a56374538175c7f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9a56374538175c7f_0 new file mode 100644 index 000000000..8659d4737 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9a56374538175c7f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9a58339589029ebe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9a58339589029ebe_0 new file mode 100644 index 000000000..43aa50631 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9a58339589029ebe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9a58b571c5810620_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9a58b571c5810620_0 new file mode 100644 index 000000000..09580904e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9a58b571c5810620_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9aa4092646b99d79_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9aa4092646b99d79_0 new file mode 100644 index 000000000..519f84ec3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9aa4092646b99d79_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9aa7daf78588813e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9aa7daf78588813e_0 new file mode 100644 index 000000000..0590cc22b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9aa7daf78588813e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ac589c74a648908_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ac589c74a648908_0 new file mode 100644 index 000000000..a7e41d435 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ac589c74a648908_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ac6264dc6fd9d7b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ac6264dc6fd9d7b_0 new file mode 100644 index 000000000..5fd6a8a62 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ac6264dc6fd9d7b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ad69a4f483efc0f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ad69a4f483efc0f_0 new file mode 100644 index 000000000..7b38b41d0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ad69a4f483efc0f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ae0c147b7132dad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ae0c147b7132dad_0 new file mode 100644 index 000000000..8ee1e19c9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ae0c147b7132dad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ae1e296f9d0651e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ae1e296f9d0651e_0 new file mode 100644 index 000000000..812739eff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ae1e296f9d0651e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b00c798095523ad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b00c798095523ad_0 new file mode 100644 index 000000000..2af329cdc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b00c798095523ad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b18f2c05b10375e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b18f2c05b10375e_0 new file mode 100644 index 000000000..ab54751a5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b18f2c05b10375e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b23f46f9c430d89_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b23f46f9c430d89_0 new file mode 100644 index 000000000..b36ad6403 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b23f46f9c430d89_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b29615b19ccb0ce_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b29615b19ccb0ce_0 new file mode 100644 index 000000000..97af1688f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b29615b19ccb0ce_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b33d25453f0ea79_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b33d25453f0ea79_0 new file mode 100644 index 000000000..220ec8aa4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b33d25453f0ea79_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b422a69408ba488_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b422a69408ba488_0 new file mode 100644 index 000000000..79660025d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b422a69408ba488_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b49a712065c6255_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b49a712065c6255_0 new file mode 100644 index 000000000..b309f3908 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b49a712065c6255_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b697e281a016908_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b697e281a016908_0 new file mode 100644 index 000000000..a42539956 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9b697e281a016908_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9baf0756af22e159_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9baf0756af22e159_0 new file mode 100644 index 000000000..0f468e791 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9baf0756af22e159_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9bb3bdb7986ed947_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9bb3bdb7986ed947_0 new file mode 100644 index 000000000..48e3f8320 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9bb3bdb7986ed947_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9bd4dbca26ebef76_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9bd4dbca26ebef76_0 new file mode 100644 index 000000000..7b0793649 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9bd4dbca26ebef76_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9be873545b1151c6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9be873545b1151c6_0 new file mode 100644 index 000000000..1a8a174c4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9be873545b1151c6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9bf670340d89e4a2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9bf670340d89e4a2_0 new file mode 100644 index 000000000..fa38ceafb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9bf670340d89e4a2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c04f642bc4dba29_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c04f642bc4dba29_0 new file mode 100644 index 000000000..340111417 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c04f642bc4dba29_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c35a1677082d934_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c35a1677082d934_0 new file mode 100644 index 000000000..9beb4036b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c35a1677082d934_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c3c15989b120a2b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c3c15989b120a2b_0 new file mode 100644 index 000000000..2d7c53223 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c3c15989b120a2b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c512100323bc97d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c512100323bc97d_0 new file mode 100644 index 000000000..ebd83b5c7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c512100323bc97d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c5439c3af40338f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c5439c3af40338f_0 new file mode 100644 index 000000000..65e5312f5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c5439c3af40338f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c67fa9b5b516cad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c67fa9b5b516cad_0 new file mode 100644 index 000000000..8eb624f85 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c67fa9b5b516cad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c6868b1fd78a53a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c6868b1fd78a53a_0 new file mode 100644 index 000000000..7a694ee07 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c6868b1fd78a53a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c6f22ffb7364e2f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c6f22ffb7364e2f_0 new file mode 100644 index 000000000..54087814e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c6f22ffb7364e2f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c7abe66bfeb23bd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c7abe66bfeb23bd_0 new file mode 100644 index 000000000..a688aa49a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c7abe66bfeb23bd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c83df67c122de5f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c83df67c122de5f_0 new file mode 100644 index 000000000..853b5a331 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9c83df67c122de5f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9cbd908682ca944d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9cbd908682ca944d_0 new file mode 100644 index 000000000..26ad39653 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9cbd908682ca944d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9cc82273146606d7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9cc82273146606d7_0 new file mode 100644 index 000000000..4b559f47d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9cc82273146606d7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ced2e11510e5914_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ced2e11510e5914_0 new file mode 100644 index 000000000..4d345c7ad Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ced2e11510e5914_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d127391a52f77af_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d127391a52f77af_0 new file mode 100644 index 000000000..573b0906b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d127391a52f77af_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d1a4679029ab622_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d1a4679029ab622_0 new file mode 100644 index 000000000..6b10a4a84 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d1a4679029ab622_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d1fc9c30bab208d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d1fc9c30bab208d_0 new file mode 100644 index 000000000..6b06d76d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d1fc9c30bab208d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d25f61ec928836b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d25f61ec928836b_0 new file mode 100644 index 000000000..894907ad3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d25f61ec928836b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d29981cff40af6d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d29981cff40af6d_0 new file mode 100644 index 000000000..80bd00cba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d29981cff40af6d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d2b66f045119f23_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d2b66f045119f23_0 index 66172e7a6..e766c133e 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d2b66f045119f23_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d2b66f045119f23_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d376eaf63085e51_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d376eaf63085e51_0 new file mode 100644 index 000000000..c9e240604 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d376eaf63085e51_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d3a478d08e74dfb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d3a478d08e74dfb_0 new file mode 100644 index 000000000..76b69ebab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d3a478d08e74dfb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d457bc59a108603_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d457bc59a108603_0 new file mode 100644 index 000000000..d15687b31 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d457bc59a108603_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d4697ade19b0602_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d4697ade19b0602_0 new file mode 100644 index 000000000..0464f4a45 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d4697ade19b0602_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d59e536e32f9647_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d59e536e32f9647_0 new file mode 100644 index 000000000..d1b9e59fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d59e536e32f9647_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d62660ec1fc5235_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d62660ec1fc5235_0 new file mode 100644 index 000000000..7040f05ef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d62660ec1fc5235_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d660062a73f4998_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d660062a73f4998_0 new file mode 100644 index 000000000..74c307548 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d660062a73f4998_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d721dacc184f797_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d721dacc184f797_0 new file mode 100644 index 000000000..e646872d9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d721dacc184f797_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d95b1e1ab2eda61_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d95b1e1ab2eda61_0 new file mode 100644 index 000000000..c81b976e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d95b1e1ab2eda61_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d9bfa92e5ff9f90_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d9bfa92e5ff9f90_0 new file mode 100644 index 000000000..2845d1113 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d9bfa92e5ff9f90_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d9e8bbe8f0c44b0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d9e8bbe8f0c44b0_0 new file mode 100644 index 000000000..0daf8ac18 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9d9e8bbe8f0c44b0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9da0f1932128b250_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9da0f1932128b250_0 new file mode 100644 index 000000000..ba170d227 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9da0f1932128b250_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9db05a5501835375_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9db05a5501835375_0 new file mode 100644 index 000000000..a2b30b396 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9db05a5501835375_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9dc88b38bf1ebad2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9dc88b38bf1ebad2_0 new file mode 100644 index 000000000..b38ede839 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9dc88b38bf1ebad2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ddff62af67a59d5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ddff62af67a59d5_0 new file mode 100644 index 000000000..106aeba69 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ddff62af67a59d5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9de9cf50e5806356_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9de9cf50e5806356_0 new file mode 100644 index 000000000..0413b6532 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9de9cf50e5806356_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9df10047e25a9c7b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9df10047e25a9c7b_0 new file mode 100644 index 000000000..8300a7060 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9df10047e25a9c7b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9df2a79db703bc17_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9df2a79db703bc17_0 new file mode 100644 index 000000000..445c52687 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9df2a79db703bc17_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9df525f184896c9d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9df525f184896c9d_0 new file mode 100644 index 000000000..16cf78d9f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9df525f184896c9d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e0554e6fb3d91ab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e0554e6fb3d91ab_0 new file mode 100644 index 000000000..abfcc81ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e0554e6fb3d91ab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e4676d2e8d5739d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e4676d2e8d5739d_0 new file mode 100644 index 000000000..17e6a7dca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e4676d2e8d5739d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e57f0a18de47c6f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e57f0a18de47c6f_0 new file mode 100644 index 000000000..e015aadd7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e57f0a18de47c6f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e62c9e34f8df9f4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e62c9e34f8df9f4_0 new file mode 100644 index 000000000..c7e1faded Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e62c9e34f8df9f4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e691507e4a6a510_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e691507e4a6a510_0 new file mode 100644 index 000000000..7e8a5d218 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e691507e4a6a510_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e7cf2eaafd43cac_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e7cf2eaafd43cac_0 new file mode 100644 index 000000000..adfebe4d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e7cf2eaafd43cac_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e88c7f6610351d8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e88c7f6610351d8_0 new file mode 100644 index 000000000..5c06ef61c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9e88c7f6610351d8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ea830b68c4f374d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ea830b68c4f374d_0 new file mode 100644 index 000000000..1b732fc56 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ea830b68c4f374d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9eafa122303f8700_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9eafa122303f8700_0 new file mode 100644 index 000000000..20a86b921 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9eafa122303f8700_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ebb157d50ebf68b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ebb157d50ebf68b_0 new file mode 100644 index 000000000..964816053 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ebb157d50ebf68b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ec6be6f31b6784c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ec6be6f31b6784c_0 new file mode 100644 index 000000000..29e99a0aa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ec6be6f31b6784c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ef1d3d7739aa6ef_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ef1d3d7739aa6ef_0 new file mode 100644 index 000000000..42f23a532 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9ef1d3d7739aa6ef_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f140f08b9a36bb5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f140f08b9a36bb5_0 new file mode 100644 index 000000000..83607673e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f140f08b9a36bb5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f15d16bcf474032_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f15d16bcf474032_0 new file mode 100644 index 000000000..502ae4258 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f15d16bcf474032_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f2bd2337bc0ad9f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f2bd2337bc0ad9f_0 new file mode 100644 index 000000000..7c21989ba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f2bd2337bc0ad9f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f2fa1243a900684_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f2fa1243a900684_0 new file mode 100644 index 000000000..24cfda59d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f2fa1243a900684_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f3d1ab1bc10ccb3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f3d1ab1bc10ccb3_0 new file mode 100644 index 000000000..3b682f433 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f3d1ab1bc10ccb3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f40f2c86d042ac1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f40f2c86d042ac1_0 new file mode 100644 index 000000000..d72b6f009 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f40f2c86d042ac1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f4fc01cd15e5d15_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f4fc01cd15e5d15_0 new file mode 100644 index 000000000..85d1dcf73 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f4fc01cd15e5d15_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f5b40b82b4a6e25_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f5b40b82b4a6e25_0 new file mode 100644 index 000000000..a7f0e5281 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f5b40b82b4a6e25_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f676548b13a22a5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f676548b13a22a5_0 new file mode 100644 index 000000000..e6050a04a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f676548b13a22a5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f7e014757b45639_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f7e014757b45639_0 new file mode 100644 index 000000000..89c3fcd74 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f7e014757b45639_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f88530dd5fbf4c5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f88530dd5fbf4c5_0 new file mode 100644 index 000000000..565d137d8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f88530dd5fbf4c5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f9f7b1ffda68d2b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f9f7b1ffda68d2b_0 new file mode 100644 index 000000000..7899c8a2a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9f9f7b1ffda68d2b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9fa58f862035a4b8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9fa58f862035a4b8_0 new file mode 100644 index 000000000..f73b83ec8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9fa58f862035a4b8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9fb065007a9289ee_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9fb065007a9289ee_0 deleted file mode 100644 index 07f4ad54b..000000000 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9fb065007a9289ee_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9fb89748fcc13212_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9fb89748fcc13212_0 new file mode 100644 index 000000000..3babe778c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9fb89748fcc13212_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9fb8beda900f0bf6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9fb8beda900f0bf6_0 new file mode 100644 index 000000000..05ce37df5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9fb8beda900f0bf6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9fda6463365cbdb2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9fda6463365cbdb2_0 new file mode 100644 index 000000000..f75460fb5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9fda6463365cbdb2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9fe3ab3c10daa106_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9fe3ab3c10daa106_0 new file mode 100644 index 000000000..7664fee51 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9fe3ab3c10daa106_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/9feaa809e1abddfb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9feaa809e1abddfb_0 new file mode 100644 index 000000000..0c6eacfed Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/9feaa809e1abddfb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a01c69ace1f7b7fe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a01c69ace1f7b7fe_0 new file mode 100644 index 000000000..422d3277a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a01c69ace1f7b7fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a01dfd10acbd80cb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a01dfd10acbd80cb_0 new file mode 100644 index 000000000..b427aa051 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a01dfd10acbd80cb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a01efdb4b8d79fce_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a01efdb4b8d79fce_0 new file mode 100644 index 000000000..79eb1a365 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a01efdb4b8d79fce_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a022c79d97b67b92_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a022c79d97b67b92_0 new file mode 100644 index 000000000..4e0afa9cf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a022c79d97b67b92_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a0333e09c144c1e2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a0333e09c144c1e2_0 new file mode 100644 index 000000000..0b84f8d89 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a0333e09c144c1e2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a03b42664d1745e4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a03b42664d1745e4_0 new file mode 100644 index 000000000..fb4d91a57 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a03b42664d1745e4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a04afe49647981f2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a04afe49647981f2_0 new file mode 100644 index 000000000..1262643d3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a04afe49647981f2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a04fa10c4432bcaf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a04fa10c4432bcaf_0 new file mode 100644 index 000000000..b8c16dcfc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a04fa10c4432bcaf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a090cbe2406cb874_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a090cbe2406cb874_0 new file mode 100644 index 000000000..8c49c7ff1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a090cbe2406cb874_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a09447979b4670ad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a09447979b4670ad_0 new file mode 100644 index 000000000..159c84358 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a09447979b4670ad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a0f77f0bbb8ec1b3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a0f77f0bbb8ec1b3_0 new file mode 100644 index 000000000..abc1ccfae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a0f77f0bbb8ec1b3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a0f800913afffb4e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a0f800913afffb4e_0 new file mode 100644 index 000000000..d9bb2ff79 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a0f800913afffb4e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a0f8c19250f75b65_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a0f8c19250f75b65_0 new file mode 100644 index 000000000..1643cc4d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a0f8c19250f75b65_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a110974e200d4d81_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a110974e200d4d81_0 new file mode 100644 index 000000000..6ffdb0370 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a110974e200d4d81_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a12429c7db66b068_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a12429c7db66b068_0 new file mode 100644 index 000000000..fdecd2c59 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a12429c7db66b068_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a124cd4b68658295_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a124cd4b68658295_0 new file mode 100644 index 000000000..f0c6cf63b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a124cd4b68658295_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1384d4ee318d2a5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1384d4ee318d2a5_0 new file mode 100644 index 000000000..9c3429739 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1384d4ee318d2a5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a16bc473e0e6ef06_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a16bc473e0e6ef06_0 new file mode 100644 index 000000000..e6bff8327 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a16bc473e0e6ef06_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a17acfbc899383b8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a17acfbc899383b8_0 new file mode 100644 index 000000000..9dc9f6519 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a17acfbc899383b8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a18684fcc0819c75_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a18684fcc0819c75_0 new file mode 100644 index 000000000..ca4a60e43 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a18684fcc0819c75_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a18ddf2168230fba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a18ddf2168230fba_0 new file mode 100644 index 000000000..12e24fe16 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a18ddf2168230fba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1a34a0c1336dc7d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1a34a0c1336dc7d_0 new file mode 100644 index 000000000..cfb79415f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1a34a0c1336dc7d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1a56727f1ee31ee_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1a56727f1ee31ee_0 new file mode 100644 index 000000000..a000a278f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1a56727f1ee31ee_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1b608beed7341b5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1b608beed7341b5_0 new file mode 100644 index 000000000..6e4d55bce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1b608beed7341b5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1bdc08839a9281b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1bdc08839a9281b_0 new file mode 100644 index 000000000..89df0709a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1bdc08839a9281b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1d0a64a1194d543_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1d0a64a1194d543_0 new file mode 100644 index 000000000..f9b60107a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1d0a64a1194d543_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1f287058e67894c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1f287058e67894c_0 new file mode 100644 index 000000000..251289183 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a1f287058e67894c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2181266e7df16d5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2181266e7df16d5_0 new file mode 100644 index 000000000..98a607568 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2181266e7df16d5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2243722175e8f04_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2243722175e8f04_0 new file mode 100644 index 000000000..3fa6badaf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2243722175e8f04_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2246c7a25f1c4cc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2246c7a25f1c4cc_0 new file mode 100644 index 000000000..188bf76e9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2246c7a25f1c4cc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a23f37ede0e461df_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a23f37ede0e461df_0 new file mode 100644 index 000000000..f7f015c42 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a23f37ede0e461df_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a26b07f9b9d6d219_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a26b07f9b9d6d219_0 new file mode 100644 index 000000000..eefd00a44 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a26b07f9b9d6d219_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a27e7c8637b44715_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a27e7c8637b44715_0 new file mode 100644 index 000000000..5c4bde8e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a27e7c8637b44715_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a28afb7e07c83b0d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a28afb7e07c83b0d_0 new file mode 100644 index 000000000..6c5925800 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a28afb7e07c83b0d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2a98b3303543c84_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2a98b3303543c84_0 new file mode 100644 index 000000000..b132fc42e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2a98b3303543c84_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2c793d4ccb3be10_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2c793d4ccb3be10_0 new file mode 100644 index 000000000..42978244a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2c793d4ccb3be10_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2defbf9237c49d5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2defbf9237c49d5_0 new file mode 100644 index 000000000..bdadb4a94 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2defbf9237c49d5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2e9ce3b35370ae9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2e9ce3b35370ae9_0 new file mode 100644 index 000000000..9e95cca81 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2e9ce3b35370ae9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2ec0a7f8034fc81_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2ec0a7f8034fc81_0 new file mode 100644 index 000000000..91d7913f2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2ec0a7f8034fc81_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2f461928e34f787_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2f461928e34f787_0 new file mode 100644 index 000000000..766f6ebdd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2f461928e34f787_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2fac98632f99e0a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2fac98632f99e0a_0 new file mode 100644 index 000000000..047055fc1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a2fac98632f99e0a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3089d3802709b81_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3089d3802709b81_0 new file mode 100644 index 000000000..ba6386f91 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3089d3802709b81_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a33af46b0027749d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a33af46b0027749d_0 new file mode 100644 index 000000000..e3c45f93c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a33af46b0027749d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a33b27b3a15e58ec_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a33b27b3a15e58ec_0 new file mode 100644 index 000000000..dc3f8bdab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a33b27b3a15e58ec_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a34a49509671645c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a34a49509671645c_0 new file mode 100644 index 000000000..5a859fdee Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a34a49509671645c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a34d4f9310f81bbb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a34d4f9310f81bbb_0 new file mode 100644 index 000000000..c0ce145d4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a34d4f9310f81bbb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a34e042742293636_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a34e042742293636_0 new file mode 100644 index 000000000..79b3584d8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a34e042742293636_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3606f4503a99497_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3606f4503a99497_0 new file mode 100644 index 000000000..448df2202 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3606f4503a99497_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a388c5f4a65808d8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a388c5f4a65808d8_0 new file mode 100644 index 000000000..42c0e783b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a388c5f4a65808d8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a394d63839dd339b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a394d63839dd339b_0 new file mode 100644 index 000000000..ef5494578 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a394d63839dd339b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3a2bbab8034b206_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3a2bbab8034b206_0 new file mode 100644 index 000000000..e344fd51a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3a2bbab8034b206_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3b004694505b116_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3b004694505b116_0 new file mode 100644 index 000000000..f35984541 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3b004694505b116_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3bc7664d63d2e0a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3bc7664d63d2e0a_0 new file mode 100644 index 000000000..163357df6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3bc7664d63d2e0a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3ca69703f2da0d9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3ca69703f2da0d9_0 new file mode 100644 index 000000000..4546e8a02 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3ca69703f2da0d9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3d31800762ac28e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3d31800762ac28e_0 new file mode 100644 index 000000000..269adccc5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3d31800762ac28e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3d6b32d43bcebba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3d6b32d43bcebba_0 new file mode 100644 index 000000000..0f951a4e8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3d6b32d43bcebba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3df2a489e1914a3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3df2a489e1914a3_0 new file mode 100644 index 000000000..154560303 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3df2a489e1914a3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3e981bbec7e5f0f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3e981bbec7e5f0f_0 new file mode 100644 index 000000000..d3c07c9cb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3e981bbec7e5f0f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3f296eb44eab1bd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3f296eb44eab1bd_0 new file mode 100644 index 000000000..1c39304da Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3f296eb44eab1bd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3f35be6fc7c0215_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3f35be6fc7c0215_0 new file mode 100644 index 000000000..0c1a936f6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a3f35be6fc7c0215_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4015418a56db33a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4015418a56db33a_0 new file mode 100644 index 000000000..646966b06 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4015418a56db33a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a41daac52cf6d412_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a41daac52cf6d412_0 new file mode 100644 index 000000000..5805db41a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a41daac52cf6d412_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a42c372056499495_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a42c372056499495_0 new file mode 100644 index 000000000..bffd18104 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a42c372056499495_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a43bb95884ce0268_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a43bb95884ce0268_0 new file mode 100644 index 000000000..1c6a66fbc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a43bb95884ce0268_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4674a092e3e471f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4674a092e3e471f_0 index 7d8fed0c1..79128c093 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4674a092e3e471f_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4674a092e3e471f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4675ada0fc2cf59_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4675ada0fc2cf59_0 new file mode 100644 index 000000000..826799880 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4675ada0fc2cf59_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a47beeff60c7bca3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a47beeff60c7bca3_0 new file mode 100644 index 000000000..22d6aef4e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a47beeff60c7bca3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a484980cbdf27979_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a484980cbdf27979_0 new file mode 100644 index 000000000..eae56d91e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a484980cbdf27979_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4a8dc4baa20fce6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4a8dc4baa20fce6_0 new file mode 100644 index 000000000..6de93ec9a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4a8dc4baa20fce6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4aac42066218863_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4aac42066218863_0 new file mode 100644 index 000000000..9503779f6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4aac42066218863_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4af8ac85583ced5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4af8ac85583ced5_0 new file mode 100644 index 000000000..6fbfbd80d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4af8ac85583ced5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4c759441f58859a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4c759441f58859a_0 new file mode 100644 index 000000000..8c01a9d6d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4c759441f58859a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4e41eaa1a4a22e9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4e41eaa1a4a22e9_0 new file mode 100644 index 000000000..c75355ac4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4e41eaa1a4a22e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4e42c22a23c1653_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4e42c22a23c1653_0 new file mode 100644 index 000000000..e289b7aaa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4e42c22a23c1653_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4f0047c9670cb3d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4f0047c9670cb3d_0 new file mode 100644 index 000000000..6ce7f5420 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a4f0047c9670cb3d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a526b3a072292cc9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a526b3a072292cc9_0 new file mode 100644 index 000000000..183059efc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a526b3a072292cc9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a52e0f6398debd3a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a52e0f6398debd3a_0 new file mode 100644 index 000000000..3d09f5895 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a52e0f6398debd3a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a53295f935a672fe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a53295f935a672fe_0 new file mode 100644 index 000000000..f84a1b334 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a53295f935a672fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a54fd83206b35f58_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a54fd83206b35f58_0 new file mode 100644 index 000000000..794e151e7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a54fd83206b35f58_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a55bc82cc82ccb14_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a55bc82cc82ccb14_0 new file mode 100644 index 000000000..5bea20202 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a55bc82cc82ccb14_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a55dacb165f28f3f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a55dacb165f28f3f_0 new file mode 100644 index 000000000..d07c925ba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a55dacb165f28f3f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5629e4ee29ce96c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5629e4ee29ce96c_0 new file mode 100644 index 000000000..bb77595ea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5629e4ee29ce96c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a578a92f693ee84c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a578a92f693ee84c_0 new file mode 100644 index 000000000..171252129 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a578a92f693ee84c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a57abf9c44462eac_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a57abf9c44462eac_0 new file mode 100644 index 000000000..0cfc9ba57 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a57abf9c44462eac_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a57b5f301f8b2fee_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a57b5f301f8b2fee_0 new file mode 100644 index 000000000..3bd645091 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a57b5f301f8b2fee_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a57c069e0ad8340b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a57c069e0ad8340b_0 new file mode 100644 index 000000000..06631bec5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a57c069e0ad8340b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a58145a084851933_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a58145a084851933_0 new file mode 100644 index 000000000..78827b8d2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a58145a084851933_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a58487a268001430_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a58487a268001430_0 new file mode 100644 index 000000000..33df3af39 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a58487a268001430_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a593e895fc2632a3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a593e895fc2632a3_0 new file mode 100644 index 000000000..40639bedb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a593e895fc2632a3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5a9acfca924b2f1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5a9acfca924b2f1_0 index 213ebfa89..fb6a47e83 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5a9acfca924b2f1_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5a9acfca924b2f1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5afb841419c3a23_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5afb841419c3a23_0 new file mode 100644 index 000000000..2f5ac7b8d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5afb841419c3a23_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5bc433b67c81f79_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5bc433b67c81f79_0 new file mode 100644 index 000000000..0afa20bec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5bc433b67c81f79_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5bfdd976e7a257a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5bfdd976e7a257a_0 new file mode 100644 index 000000000..14d9f15ec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5bfdd976e7a257a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5c085cf55ba0301_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5c085cf55ba0301_0 new file mode 100644 index 000000000..f3325a706 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5c085cf55ba0301_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5d1355909ac943f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5d1355909ac943f_0 new file mode 100644 index 000000000..0e0ea0f5d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5d1355909ac943f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5d37c4551500842_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5d37c4551500842_0 new file mode 100644 index 000000000..6960564c4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5d37c4551500842_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5e083173f8c7a17_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5e083173f8c7a17_0 new file mode 100644 index 000000000..dab770772 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a5e083173f8c7a17_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a601fbd28f2bf366_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a601fbd28f2bf366_0 new file mode 100644 index 000000000..e210cba42 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a601fbd28f2bf366_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a60fc3dd19d9e754_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a60fc3dd19d9e754_0 new file mode 100644 index 000000000..b301a6f79 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a60fc3dd19d9e754_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a611aa9a6b8b65db_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a611aa9a6b8b65db_0 new file mode 100644 index 000000000..65e400143 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a611aa9a6b8b65db_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a615bfc8cf830709_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a615bfc8cf830709_0 new file mode 100644 index 000000000..1ea5cb97a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a615bfc8cf830709_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a62825172732bc65_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a62825172732bc65_0 new file mode 100644 index 000000000..33d58bb3c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a62825172732bc65_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a67a5f220641ad22_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a67a5f220641ad22_0 new file mode 100644 index 000000000..afe4ec167 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a67a5f220641ad22_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a69369ff0b604ba7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a69369ff0b604ba7_0 new file mode 100644 index 000000000..e945cbbe2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a69369ff0b604ba7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a695750d6fb14e19_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a695750d6fb14e19_0 new file mode 100644 index 000000000..7503a79f7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a695750d6fb14e19_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a69ce117ed8b7979_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a69ce117ed8b7979_0 new file mode 100644 index 000000000..5a59ed035 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a69ce117ed8b7979_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a6aaa9db61b77d5a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a6aaa9db61b77d5a_0 new file mode 100644 index 000000000..f0520d61e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a6aaa9db61b77d5a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a6c2adf33b2c74dd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a6c2adf33b2c74dd_0 new file mode 100644 index 000000000..1c383f124 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a6c2adf33b2c74dd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a6cb63cfede1a87b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a6cb63cfede1a87b_0 new file mode 100644 index 000000000..d77f0a634 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a6cb63cfede1a87b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a6d62ac7f75d5ace_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a6d62ac7f75d5ace_0 new file mode 100644 index 000000000..4a3aa959b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a6d62ac7f75d5ace_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a70bd93e2f06b333_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a70bd93e2f06b333_0 new file mode 100644 index 000000000..4853c1abf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a70bd93e2f06b333_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a71293f8b9322f91_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a71293f8b9322f91_0 new file mode 100644 index 000000000..20ef5bf38 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a71293f8b9322f91_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a71fa3686bc86e64_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a71fa3686bc86e64_0 new file mode 100644 index 000000000..b597a51ad Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a71fa3686bc86e64_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a739da25d6d16fa7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a739da25d6d16fa7_0 new file mode 100644 index 000000000..677d175f4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a739da25d6d16fa7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7583e7ea4805e99_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7583e7ea4805e99_0 new file mode 100644 index 000000000..0949c58e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7583e7ea4805e99_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a759c38b0f6be02b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a759c38b0f6be02b_0 new file mode 100644 index 000000000..457ab7781 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a759c38b0f6be02b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a759ed99f456177d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a759ed99f456177d_0 new file mode 100644 index 000000000..54413b8a8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a759ed99f456177d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a75e910444a7ebbd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a75e910444a7ebbd_0 new file mode 100644 index 000000000..ffc7540cb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a75e910444a7ebbd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a76ead8b880b5185_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a76ead8b880b5185_0 index 5e65deea3..36ae09f6f 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a76ead8b880b5185_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a76ead8b880b5185_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a78778a51e1770db_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a78778a51e1770db_0 new file mode 100644 index 000000000..c8fc3915c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a78778a51e1770db_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a78b46706c58c14d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a78b46706c58c14d_0 new file mode 100644 index 000000000..528447282 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a78b46706c58c14d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7b68c1c98917321_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7b68c1c98917321_0 index 324cc5beb..aa05ab6f3 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7b68c1c98917321_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7b68c1c98917321_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7b7b8404426cf7c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7b7b8404426cf7c_0 index 9a3467aa2..ed4d1669f 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7b7b8404426cf7c_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7b7b8404426cf7c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7c9bc3b684ff043_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7c9bc3b684ff043_0 new file mode 100644 index 000000000..d695d4ac1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7c9bc3b684ff043_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7cf9f7c6d00baab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7cf9f7c6d00baab_0 new file mode 100644 index 000000000..acdb12ec2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7cf9f7c6d00baab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7e6c10ca1d54deb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7e6c10ca1d54deb_0 new file mode 100644 index 000000000..cb707fcd1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7e6c10ca1d54deb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7eb581f81b42cb9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7eb581f81b42cb9_0 new file mode 100644 index 000000000..2bc3be091 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7eb581f81b42cb9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7ed1c67cddb83af_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7ed1c67cddb83af_0 new file mode 100644 index 000000000..60f4cd0e3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a7ed1c67cddb83af_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a820595e0e71e8e8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a820595e0e71e8e8_0 new file mode 100644 index 000000000..08daa74cf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a820595e0e71e8e8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a82f4d40d2b9afbc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a82f4d40d2b9afbc_0 new file mode 100644 index 000000000..997f9f28c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a82f4d40d2b9afbc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a84c42f5e268f29c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a84c42f5e268f29c_0 new file mode 100644 index 000000000..dfa8a4b1a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a84c42f5e268f29c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a8a7d35302f00966_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a8a7d35302f00966_0 new file mode 100644 index 000000000..0bc24aeae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a8a7d35302f00966_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a8b7c876643d4ddf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a8b7c876643d4ddf_0 new file mode 100644 index 000000000..7ba82dfda Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a8b7c876643d4ddf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a8c2739dddeaa333_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a8c2739dddeaa333_0 new file mode 100644 index 000000000..0b76c7c5b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a8c2739dddeaa333_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a8ce25330640ef2f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a8ce25330640ef2f_0 new file mode 100644 index 000000000..3d80357a3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a8ce25330640ef2f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a8d4a4cb55e5eb14_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a8d4a4cb55e5eb14_0 new file mode 100644 index 000000000..54c80c133 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a8d4a4cb55e5eb14_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a8e7d15552b20fd2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a8e7d15552b20fd2_0 new file mode 100644 index 000000000..55fd7003d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a8e7d15552b20fd2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a900f41b4e67565a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a900f41b4e67565a_0 new file mode 100644 index 000000000..cc53dcce4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a900f41b4e67565a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9090a00d1c7c57a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9090a00d1c7c57a_0 new file mode 100644 index 000000000..819227fb9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9090a00d1c7c57a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a90ba65bee361974_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a90ba65bee361974_0 new file mode 100644 index 000000000..9c4c4eaa6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a90ba65bee361974_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a95be40ac69b091d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a95be40ac69b091d_0 new file mode 100644 index 000000000..660dc6e3a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a95be40ac69b091d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a95e52100c9ed961_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a95e52100c9ed961_0 new file mode 100644 index 000000000..77082bb66 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a95e52100c9ed961_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a97f5603e33567e0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a97f5603e33567e0_0 new file mode 100644 index 000000000..d431ffd53 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a97f5603e33567e0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a98e85c181bedfbe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a98e85c181bedfbe_0 new file mode 100644 index 000000000..13b8f659a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a98e85c181bedfbe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9a7de1eff135022_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9a7de1eff135022_0 new file mode 100644 index 000000000..f2d229fe6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9a7de1eff135022_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9c31ca156827d6b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9c31ca156827d6b_0 new file mode 100644 index 000000000..706b5e06b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9c31ca156827d6b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9ca5ec2ca624033_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9ca5ec2ca624033_0 new file mode 100644 index 000000000..b60fec56c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9ca5ec2ca624033_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9cb97c51098f964_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9cb97c51098f964_0 new file mode 100644 index 000000000..242141553 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9cb97c51098f964_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9d8b1fa50b262f8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9d8b1fa50b262f8_0 new file mode 100644 index 000000000..ac1f85141 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9d8b1fa50b262f8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9ed8eb2d53f45ac_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9ed8eb2d53f45ac_0 new file mode 100644 index 000000000..4107defaa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9ed8eb2d53f45ac_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9ededd75765e49a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9ededd75765e49a_0 new file mode 100644 index 000000000..30a2edb83 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9ededd75765e49a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9f5a66c4af9d05d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9f5a66c4af9d05d_0 new file mode 100644 index 000000000..ec1b7446d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/a9f5a66c4af9d05d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/aa0bf06384bcaa16_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aa0bf06384bcaa16_0 new file mode 100644 index 000000000..2a0836d0f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aa0bf06384bcaa16_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/aa29d8bac7072a88_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aa29d8bac7072a88_0 new file mode 100644 index 000000000..02431d482 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aa29d8bac7072a88_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/aa4dc8c2ff0f7a38_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aa4dc8c2ff0f7a38_0 new file mode 100644 index 000000000..15c96dc57 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aa4dc8c2ff0f7a38_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/aa5df5cfe29fd60d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aa5df5cfe29fd60d_0 new file mode 100644 index 000000000..e13e3f4d0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aa5df5cfe29fd60d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/aa880467aa061e46_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aa880467aa061e46_0 new file mode 100644 index 000000000..325bad002 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aa880467aa061e46_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/aaa3c1ed26409b1f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aaa3c1ed26409b1f_0 new file mode 100644 index 000000000..554c8f8f4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aaa3c1ed26409b1f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/aabd009c62f403d8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aabd009c62f403d8_0 new file mode 100644 index 000000000..9d216fa11 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aabd009c62f403d8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/aac9caa39aa761e5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aac9caa39aa761e5_0 new file mode 100644 index 000000000..ae583f16b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aac9caa39aa761e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/aacc35a47b9702fd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aacc35a47b9702fd_0 new file mode 100644 index 000000000..de7141733 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aacc35a47b9702fd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/aad9545f66f4454a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aad9545f66f4454a_0 new file mode 100644 index 000000000..e8ac14dd3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aad9545f66f4454a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/aadb7a3fb68764c0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aadb7a3fb68764c0_0 new file mode 100644 index 000000000..4c7096d27 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aadb7a3fb68764c0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/aaf1ba74c077a2cf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aaf1ba74c077a2cf_0 new file mode 100644 index 000000000..7c978bc35 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aaf1ba74c077a2cf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ab08dd76ed66b5d4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ab08dd76ed66b5d4_0 new file mode 100644 index 000000000..bf916fb98 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ab08dd76ed66b5d4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ab2664b95b34a521_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ab2664b95b34a521_0 new file mode 100644 index 000000000..1cd90a438 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ab2664b95b34a521_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ab552bb5e60048c3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ab552bb5e60048c3_0 new file mode 100644 index 000000000..7cf2ec3db Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ab552bb5e60048c3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ab6ebbe46366a7e2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ab6ebbe46366a7e2_0 new file mode 100644 index 000000000..9f94652c1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ab6ebbe46366a7e2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ab8ff405380478f7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ab8ff405380478f7_0 index 5eb893882..a72d40de4 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ab8ff405380478f7_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ab8ff405380478f7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ab948cd221b75401_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ab948cd221b75401_0 new file mode 100644 index 000000000..bacccd7b7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ab948cd221b75401_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/abad2fd9b1469081_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/abad2fd9b1469081_0 new file mode 100644 index 000000000..d47d75e2c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/abad2fd9b1469081_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/abc5e0286135e2db_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/abc5e0286135e2db_0 new file mode 100644 index 000000000..6fd47ba41 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/abc5e0286135e2db_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/abfb372359a56309_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/abfb372359a56309_0 new file mode 100644 index 000000000..d4e8e5556 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/abfb372359a56309_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/abfc0b0cb55230da_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/abfc0b0cb55230da_0 new file mode 100644 index 000000000..294914e40 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/abfc0b0cb55230da_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac108fd3e8c6acc9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac108fd3e8c6acc9_0 new file mode 100644 index 000000000..372387f94 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac108fd3e8c6acc9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac1d90604e2ad0a8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac1d90604e2ad0a8_0 new file mode 100644 index 000000000..657e6545a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac1d90604e2ad0a8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac38a9d9973252c6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac38a9d9973252c6_0 new file mode 100644 index 000000000..7b35914e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac38a9d9973252c6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac39baa8698d59a6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac39baa8698d59a6_0 new file mode 100644 index 000000000..6802bde23 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac39baa8698d59a6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac48cf6cbfb86bd8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac48cf6cbfb86bd8_0 new file mode 100644 index 000000000..8c410dc20 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac48cf6cbfb86bd8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac64830471af9095_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac64830471af9095_0 new file mode 100644 index 000000000..1de23163b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac64830471af9095_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac64a603a0ac5c5b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac64a603a0ac5c5b_0 new file mode 100644 index 000000000..0d188db2b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac64a603a0ac5c5b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac6fbbde8c414c50_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac6fbbde8c414c50_0 new file mode 100644 index 000000000..94392bffe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac6fbbde8c414c50_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac70a89065baeb7b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac70a89065baeb7b_0 new file mode 100644 index 000000000..7bdb15f6c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac70a89065baeb7b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac8ed7cd5b57104d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac8ed7cd5b57104d_0 new file mode 100644 index 000000000..24f7abe80 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac8ed7cd5b57104d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac9766cd3aa8d3d1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac9766cd3aa8d3d1_0 new file mode 100644 index 000000000..5f99eb170 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac9766cd3aa8d3d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac984ce8a54367d5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac984ce8a54367d5_0 new file mode 100644 index 000000000..55c3a40a1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac984ce8a54367d5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac9b79a02a2bd37e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac9b79a02a2bd37e_0 new file mode 100644 index 000000000..818d6fe5f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ac9b79a02a2bd37e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/acbfa960bc7eadce_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/acbfa960bc7eadce_0 new file mode 100644 index 000000000..d81e7f41b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/acbfa960bc7eadce_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/acc051abd8d06612_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/acc051abd8d06612_0 new file mode 100644 index 000000000..887237ac1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/acc051abd8d06612_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/acf686bb9c22e901_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/acf686bb9c22e901_0 new file mode 100644 index 000000000..e175d2fe4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/acf686bb9c22e901_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/acfb26dfb7b9eb4b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/acfb26dfb7b9eb4b_0 new file mode 100644 index 000000000..1c83a8225 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/acfb26dfb7b9eb4b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad088d6e36ce288d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad088d6e36ce288d_0 new file mode 100644 index 000000000..fa889966c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad088d6e36ce288d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad1824da7b4c1e9c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad1824da7b4c1e9c_0 new file mode 100644 index 000000000..d5ef032d0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad1824da7b4c1e9c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad37ac93b761b1ad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad37ac93b761b1ad_0 new file mode 100644 index 000000000..e539a19a3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad37ac93b761b1ad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad4140d4eac87a24_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad4140d4eac87a24_0 new file mode 100644 index 000000000..acf110984 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad4140d4eac87a24_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad47190b9c787fce_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad47190b9c787fce_0 new file mode 100644 index 000000000..670a94f9c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad47190b9c787fce_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad7efad385c83e91_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad7efad385c83e91_0 new file mode 100644 index 000000000..77dc567e9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad7efad385c83e91_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad81bf90bb4888ce_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad81bf90bb4888ce_0 new file mode 100644 index 000000000..a02d17b97 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad81bf90bb4888ce_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad8983d2dc9ab452_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad8983d2dc9ab452_0 new file mode 100644 index 000000000..3abd3a261 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad8983d2dc9ab452_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad9593ebe7f6bbff_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad9593ebe7f6bbff_0 new file mode 100644 index 000000000..043ebb7a3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad9593ebe7f6bbff_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad975e7c90235bed_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad975e7c90235bed_0 new file mode 100644 index 000000000..e7be25bd5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad975e7c90235bed_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad9a259189c41125_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad9a259189c41125_0 new file mode 100644 index 000000000..82fd04822 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad9a259189c41125_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad9d223a6e397bd1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad9d223a6e397bd1_0 new file mode 100644 index 000000000..d4da67bfb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ad9d223a6e397bd1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/adcbb7e297ca707a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/adcbb7e297ca707a_0 new file mode 100644 index 000000000..350d7116c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/adcbb7e297ca707a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/add3e34ddcb6542e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/add3e34ddcb6542e_0 index 97327af88..47520dfef 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/add3e34ddcb6542e_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/add3e34ddcb6542e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ade17796b4e66959_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ade17796b4e66959_0 new file mode 100644 index 000000000..09bb9cada Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ade17796b4e66959_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/adf8ebb11b8f4241_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/adf8ebb11b8f4241_0 new file mode 100644 index 000000000..583422328 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/adf8ebb11b8f4241_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/adfc7b52c5841b43_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/adfc7b52c5841b43_0 new file mode 100644 index 000000000..6dc92f760 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/adfc7b52c5841b43_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae0ece6dd557f5d1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae0ece6dd557f5d1_0 new file mode 100644 index 000000000..8adeccc86 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae0ece6dd557f5d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae184bb511ed785a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae184bb511ed785a_0 new file mode 100644 index 000000000..b0c631364 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae184bb511ed785a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae1a06746a059b28_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae1a06746a059b28_0 new file mode 100644 index 000000000..972a0ea64 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae1a06746a059b28_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae21e84bfc9b2ee4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae21e84bfc9b2ee4_0 new file mode 100644 index 000000000..db8b672f3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae21e84bfc9b2ee4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae63ef5daec8b26f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae63ef5daec8b26f_0 new file mode 100644 index 000000000..b986f5765 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae63ef5daec8b26f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae671c63f4021d46_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae671c63f4021d46_0 new file mode 100644 index 000000000..6ad113106 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae671c63f4021d46_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae6a3abb87f1b702_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae6a3abb87f1b702_0 new file mode 100644 index 000000000..db59813ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae6a3abb87f1b702_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae754f04adaf878b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae754f04adaf878b_0 new file mode 100644 index 000000000..153cd0120 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ae754f04adaf878b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/aea92ede80ab779e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aea92ede80ab779e_0 new file mode 100644 index 000000000..c4c3b86ea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aea92ede80ab779e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/aeaf5dc85e93c786_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aeaf5dc85e93c786_0 new file mode 100644 index 000000000..ff35e0b7d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aeaf5dc85e93c786_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/aedc6eefcb907a3d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aedc6eefcb907a3d_0 new file mode 100644 index 000000000..c42d6e710 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aedc6eefcb907a3d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/aee73a20cc36b2e9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aee73a20cc36b2e9_0 new file mode 100644 index 000000000..2b075406c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aee73a20cc36b2e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/aefe77a585176c6d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aefe77a585176c6d_0 new file mode 100644 index 000000000..e8182df9f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/aefe77a585176c6d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/af03816b83512ec0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af03816b83512ec0_0 new file mode 100644 index 000000000..bc89d03af Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af03816b83512ec0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/af085db2d5ed213f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af085db2d5ed213f_0 new file mode 100644 index 000000000..62226659e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af085db2d5ed213f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/af0b16e67219e4c3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af0b16e67219e4c3_0 new file mode 100644 index 000000000..19366be7a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af0b16e67219e4c3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/af211f3689a9918d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af211f3689a9918d_0 index 64ef2cc6e..5749348a4 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/af211f3689a9918d_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af211f3689a9918d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/af319dd89716f5f2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af319dd89716f5f2_0 new file mode 100644 index 000000000..fc74e166f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af319dd89716f5f2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/af39d59c9edf6e18_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af39d59c9edf6e18_0 new file mode 100644 index 000000000..c091addda Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af39d59c9edf6e18_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/af43379ee260702d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af43379ee260702d_0 new file mode 100644 index 000000000..fcb4b8e30 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af43379ee260702d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/af491cba9c0903f6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af491cba9c0903f6_0 new file mode 100644 index 000000000..8dbb776a8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af491cba9c0903f6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/af548b1bb7891bb8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af548b1bb7891bb8_0 new file mode 100644 index 000000000..6d73cb86b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af548b1bb7891bb8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/af5a5b0498d81fe9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af5a5b0498d81fe9_0 new file mode 100644 index 000000000..de9d4f072 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af5a5b0498d81fe9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/af5c58b4d219eb05_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af5c58b4d219eb05_0 index 74a8a303b..affffd219 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/af5c58b4d219eb05_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af5c58b4d219eb05_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/af802cdcbd911c0e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af802cdcbd911c0e_0 new file mode 100644 index 000000000..0546d3287 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/af802cdcbd911c0e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/afb3597f329a0d43_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/afb3597f329a0d43_0 new file mode 100644 index 000000000..d12d45865 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/afb3597f329a0d43_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/afb373b425c86c13_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/afb373b425c86c13_0 new file mode 100644 index 000000000..9d9eab0e8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/afb373b425c86c13_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/afbd7388f1db8c9e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/afbd7388f1db8c9e_0 new file mode 100644 index 000000000..109284cef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/afbd7388f1db8c9e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/afd1c6ebdb080599_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/afd1c6ebdb080599_0 new file mode 100644 index 000000000..9bbd8de67 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/afd1c6ebdb080599_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b016448526b908a2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b016448526b908a2_0 new file mode 100644 index 000000000..0e509077d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b016448526b908a2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b01bb09dd43f1090_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b01bb09dd43f1090_0 new file mode 100644 index 000000000..a47a898c4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b01bb09dd43f1090_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b020d4b1d98c50c7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b020d4b1d98c50c7_0 new file mode 100644 index 000000000..0bec0c844 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b020d4b1d98c50c7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b02c2714b0f0d07a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b02c2714b0f0d07a_0 new file mode 100644 index 000000000..4c0e5d7e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b02c2714b0f0d07a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b02cec90792d9519_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b02cec90792d9519_0 new file mode 100644 index 000000000..77ee21faa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b02cec90792d9519_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b02e1b1444294bcb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b02e1b1444294bcb_0 new file mode 100644 index 000000000..cc426e17a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b02e1b1444294bcb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b039fe5a50ac2a81_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b039fe5a50ac2a81_0 new file mode 100644 index 000000000..5824b0046 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b039fe5a50ac2a81_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b05d0e8475572cc9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b05d0e8475572cc9_0 new file mode 100644 index 000000000..31c0e0a31 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b05d0e8475572cc9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b06b097270662253_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b06b097270662253_0 new file mode 100644 index 000000000..10073366d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b06b097270662253_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b08174e39262c47e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b08174e39262c47e_0 new file mode 100644 index 000000000..26ca20f2f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b08174e39262c47e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b0908c301dde77e5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b0908c301dde77e5_0 new file mode 100644 index 000000000..0202fbe42 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b0908c301dde77e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b09105f834fa4f64_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b09105f834fa4f64_0 new file mode 100644 index 000000000..ea42fda01 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b09105f834fa4f64_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b09e4df873866fdf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b09e4df873866fdf_0 new file mode 100644 index 000000000..57053c713 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b09e4df873866fdf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b0a5e8f6aabb7e59_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b0a5e8f6aabb7e59_0 new file mode 100644 index 000000000..c9d4e2d96 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b0a5e8f6aabb7e59_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b0a6e9fba391c79b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b0a6e9fba391c79b_0 new file mode 100644 index 000000000..b0489e2dd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b0a6e9fba391c79b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b0e65a13640f881d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b0e65a13640f881d_0 new file mode 100644 index 000000000..b0cad527f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b0e65a13640f881d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b11fc098e8bb4f8d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b11fc098e8bb4f8d_0 new file mode 100644 index 000000000..51f1f9baf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b11fc098e8bb4f8d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b13b99f3fb408fd0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b13b99f3fb408fd0_0 new file mode 100644 index 000000000..436d38e19 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b13b99f3fb408fd0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b13e60fd51f34263_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b13e60fd51f34263_0 new file mode 100644 index 000000000..6c2c1abfd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b13e60fd51f34263_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b148c9871218d3d4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b148c9871218d3d4_0 new file mode 100644 index 000000000..713587ab5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b148c9871218d3d4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b18b3eddf9798bd9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b18b3eddf9798bd9_0 new file mode 100644 index 000000000..3631fa3df Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b18b3eddf9798bd9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b191e3bc44e4a825_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b191e3bc44e4a825_0 new file mode 100644 index 000000000..903e088b9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b191e3bc44e4a825_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b19beb6835306f4f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b19beb6835306f4f_0 new file mode 100644 index 000000000..8802a2e6b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b19beb6835306f4f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1a91df6d42580f0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1a91df6d42580f0_0 new file mode 100644 index 000000000..038b3243f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1a91df6d42580f0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1aa8aec7975ee79_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1aa8aec7975ee79_0 new file mode 100644 index 000000000..b03d1285e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1aa8aec7975ee79_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1c577ba17237e4f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1c577ba17237e4f_0 new file mode 100644 index 000000000..51464b94a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1c577ba17237e4f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1c596db61c86e80_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1c596db61c86e80_0 new file mode 100644 index 000000000..338d5947e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1c596db61c86e80_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1d886dd1f6a4425_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1d886dd1f6a4425_0 new file mode 100644 index 000000000..87c81c185 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1d886dd1f6a4425_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1ebbc36b0340469_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1ebbc36b0340469_0 new file mode 100644 index 000000000..a80e6312c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1ebbc36b0340469_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1f0d780981062e2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1f0d780981062e2_0 new file mode 100644 index 000000000..947ce85e3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1f0d780981062e2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1f9b7bef9538a72_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1f9b7bef9538a72_0 new file mode 100644 index 000000000..95a652679 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1f9b7bef9538a72_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1ffdfb5a1d9833c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1ffdfb5a1d9833c_0 new file mode 100644 index 000000000..1e475fbb6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b1ffdfb5a1d9833c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b20140ff57f6ec17_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b20140ff57f6ec17_0 new file mode 100644 index 000000000..91bc47f2e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b20140ff57f6ec17_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b212aee9b764eaf1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b212aee9b764eaf1_0 new file mode 100644 index 000000000..32698c5ad Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b212aee9b764eaf1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b214915116ff991e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b214915116ff991e_0 new file mode 100644 index 000000000..dfb240e22 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b214915116ff991e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b233b99db2b08fae_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b233b99db2b08fae_0 new file mode 100644 index 000000000..15540855f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b233b99db2b08fae_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b24120f0bde2ba76_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b24120f0bde2ba76_0 new file mode 100644 index 000000000..c6c1bcc1e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b24120f0bde2ba76_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b24252db48e81aeb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b24252db48e81aeb_0 new file mode 100644 index 000000000..64a4b2eb7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b24252db48e81aeb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b246049b86212169_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b246049b86212169_0 new file mode 100644 index 000000000..d77254553 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b246049b86212169_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b24e651c2513f4d2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b24e651c2513f4d2_0 new file mode 100644 index 000000000..05891e3d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b24e651c2513f4d2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b29af961c9cd8811_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b29af961c9cd8811_0 new file mode 100644 index 000000000..403ac78a5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b29af961c9cd8811_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b2a2da93ccdefe84_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b2a2da93ccdefe84_0 new file mode 100644 index 000000000..0500a398a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b2a2da93ccdefe84_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b2b50f9e0a9e8980_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b2b50f9e0a9e8980_0 new file mode 100644 index 000000000..c5e1670a8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b2b50f9e0a9e8980_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b2bc338e2512bcfc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b2bc338e2512bcfc_0 new file mode 100644 index 000000000..90173b2b6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b2bc338e2512bcfc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b2d2f9654f70f3e0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b2d2f9654f70f3e0_0 new file mode 100644 index 000000000..648488696 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b2d2f9654f70f3e0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b2ea6a3dec017ccb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b2ea6a3dec017ccb_0 new file mode 100644 index 000000000..15ffda2f9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b2ea6a3dec017ccb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b2f7c1fde0494131_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b2f7c1fde0494131_0 new file mode 100644 index 000000000..4f5ae92f0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b2f7c1fde0494131_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b301e9c7b87cc598_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b301e9c7b87cc598_0 new file mode 100644 index 000000000..bbfe8e4b8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b301e9c7b87cc598_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b302f4cbe3b823b4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b302f4cbe3b823b4_0 new file mode 100644 index 000000000..8dbefaecf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b302f4cbe3b823b4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3069b98f255189b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3069b98f255189b_0 new file mode 100644 index 000000000..f8ecbc2e2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3069b98f255189b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b307613eb890ac0c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b307613eb890ac0c_0 new file mode 100644 index 000000000..90fd13d8f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b307613eb890ac0c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b319b6bad5eea137_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b319b6bad5eea137_0 new file mode 100644 index 000000000..651c0a774 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b319b6bad5eea137_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b31abca124014d0d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b31abca124014d0d_0 new file mode 100644 index 000000000..2c17ffb34 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b31abca124014d0d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b32ebd4c1606c0d4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b32ebd4c1606c0d4_0 new file mode 100644 index 000000000..b8c5b4712 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b32ebd4c1606c0d4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3308ad9274ec16d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3308ad9274ec16d_0 new file mode 100644 index 000000000..fe703c025 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3308ad9274ec16d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b33aed945081b606_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b33aed945081b606_0 new file mode 100644 index 000000000..a14ffd9d0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b33aed945081b606_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3465439f17a9321_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3465439f17a9321_0 new file mode 100644 index 000000000..045f524d9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3465439f17a9321_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b34b4f15d6f530bf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b34b4f15d6f530bf_0 new file mode 100644 index 000000000..1df064c3b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b34b4f15d6f530bf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b34ff9514c53a13f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b34ff9514c53a13f_0 new file mode 100644 index 000000000..6b59d6074 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b34ff9514c53a13f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3861f062be99fce_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3861f062be99fce_0 new file mode 100644 index 000000000..b42414297 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3861f062be99fce_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b387901b1b8dde05_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b387901b1b8dde05_0 new file mode 100644 index 000000000..0bd7eb337 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b387901b1b8dde05_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3bb12b2b38e4364_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3bb12b2b38e4364_0 new file mode 100644 index 000000000..05ae848cd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3bb12b2b38e4364_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3bf9828f9c3a59a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3bf9828f9c3a59a_0 new file mode 100644 index 000000000..d5bb6f648 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3bf9828f9c3a59a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3c4f59da3ef84ad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3c4f59da3ef84ad_0 new file mode 100644 index 000000000..6742ddf02 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3c4f59da3ef84ad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3cc6d1251fbfdcc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3cc6d1251fbfdcc_0 new file mode 100644 index 000000000..93e2f01fd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3cc6d1251fbfdcc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3ceb8a6f70657d2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3ceb8a6f70657d2_0 new file mode 100644 index 000000000..f64633548 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3ceb8a6f70657d2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3de21327ef507be_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3de21327ef507be_0 new file mode 100644 index 000000000..9a48b381a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3de21327ef507be_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3e0a048a313ab4a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3e0a048a313ab4a_0 new file mode 100644 index 000000000..b8d71cbaf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b3e0a048a313ab4a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b402d918eb7688cd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b402d918eb7688cd_0 new file mode 100644 index 000000000..704adbc15 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b402d918eb7688cd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b411d692a7755b2b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b411d692a7755b2b_0 new file mode 100644 index 000000000..eef10a6e9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b411d692a7755b2b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b41f2ab6831309a4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b41f2ab6831309a4_0 new file mode 100644 index 000000000..829511918 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b41f2ab6831309a4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b43385ad9f6440e4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b43385ad9f6440e4_0 new file mode 100644 index 000000000..8f2898069 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b43385ad9f6440e4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b43f58f24803a470_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b43f58f24803a470_0 new file mode 100644 index 000000000..c76f4e103 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b43f58f24803a470_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b449085efe9dfd65_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b449085efe9dfd65_0 new file mode 100644 index 000000000..642456c30 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b449085efe9dfd65_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4554c2e5c700819_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4554c2e5c700819_0 new file mode 100644 index 000000000..5ee38e113 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4554c2e5c700819_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b458288bed5c2bb4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b458288bed5c2bb4_0 new file mode 100644 index 000000000..531e39884 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b458288bed5c2bb4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b45a9cb948ee5e5e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b45a9cb948ee5e5e_0 new file mode 100644 index 000000000..bec576ad1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b45a9cb948ee5e5e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b461e673c4c604a0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b461e673c4c604a0_0 new file mode 100644 index 000000000..7ba72e34b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b461e673c4c604a0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4629a402a6eff0e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4629a402a6eff0e_0 new file mode 100644 index 000000000..83dc3f460 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4629a402a6eff0e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b480dd80218ee5fd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b480dd80218ee5fd_0 new file mode 100644 index 000000000..65e662d2d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b480dd80218ee5fd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b48201846cd05a5b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b48201846cd05a5b_0 new file mode 100644 index 000000000..3699e4c01 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b48201846cd05a5b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b483b272b7b58125_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b483b272b7b58125_0 new file mode 100644 index 000000000..25cb9c4fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b483b272b7b58125_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4974071a9d3fa32_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4974071a9d3fa32_0 new file mode 100644 index 000000000..fb840a82a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4974071a9d3fa32_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4aab429337c63d2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4aab429337c63d2_0 new file mode 100644 index 000000000..40ea3ebf0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4aab429337c63d2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4afb0474e5f66b9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4afb0474e5f66b9_0 new file mode 100644 index 000000000..03ef60f28 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4afb0474e5f66b9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4bfef6369ab31e8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4bfef6369ab31e8_0 new file mode 100644 index 000000000..dd77ae814 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4bfef6369ab31e8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4c5c4260ff624bc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4c5c4260ff624bc_0 new file mode 100644 index 000000000..30522f503 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4c5c4260ff624bc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4d06a09c09b41e5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4d06a09c09b41e5_0 new file mode 100644 index 000000000..f829dc2ce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4d06a09c09b41e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4e0d819d90de976_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4e0d819d90de976_0 new file mode 100644 index 000000000..8ace19443 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4e0d819d90de976_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4eeebfffe9a003a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4eeebfffe9a003a_0 new file mode 100644 index 000000000..87840ea11 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4eeebfffe9a003a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4eef26d046f83c0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4eef26d046f83c0_0 new file mode 100644 index 000000000..faf9b2e59 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4eef26d046f83c0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4ef4625c3b57f65_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4ef4625c3b57f65_0 index b2f31ca8f..3c3213c2a 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4ef4625c3b57f65_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b4ef4625c3b57f65_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b50f63dad1582ec2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b50f63dad1582ec2_0 new file mode 100644 index 000000000..0dea3e18a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b50f63dad1582ec2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b513935fe8b07337_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b513935fe8b07337_0 new file mode 100644 index 000000000..5e4999fa0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b513935fe8b07337_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b517cdc810428c7b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b517cdc810428c7b_0 new file mode 100644 index 000000000..a60e90432 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b517cdc810428c7b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b51d0c95cd9fd486_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b51d0c95cd9fd486_0 new file mode 100644 index 000000000..4265e4d99 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b51d0c95cd9fd486_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b527928c0fa86add_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b527928c0fa86add_0 new file mode 100644 index 000000000..c7126fe92 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b527928c0fa86add_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b52bf998beeb4136_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b52bf998beeb4136_0 new file mode 100644 index 000000000..89d2fe4c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b52bf998beeb4136_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b52e96b52cadfffb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b52e96b52cadfffb_0 new file mode 100644 index 000000000..507e4e3e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b52e96b52cadfffb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b55f8a071998f116_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b55f8a071998f116_0 new file mode 100644 index 000000000..6ac63665e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b55f8a071998f116_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5766cfe6c0e06b2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5766cfe6c0e06b2_0 new file mode 100644 index 000000000..6b083db1b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5766cfe6c0e06b2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b58247ee3b1c8442_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b58247ee3b1c8442_0 new file mode 100644 index 000000000..c1ef4dd7f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b58247ee3b1c8442_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b58ecac3381b10a0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b58ecac3381b10a0_0 new file mode 100644 index 000000000..22f2d9ae8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b58ecac3381b10a0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b59cd8242aa66daf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b59cd8242aa66daf_0 new file mode 100644 index 000000000..27e297810 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b59cd8242aa66daf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5b5703e3de02cb3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5b5703e3de02cb3_0 new file mode 100644 index 000000000..ca3ff569c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5b5703e3de02cb3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5b641ddf8f2ab95_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5b641ddf8f2ab95_0 new file mode 100644 index 000000000..0c914199d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5b641ddf8f2ab95_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5d410579959dbca_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5d410579959dbca_0 new file mode 100644 index 000000000..4ed536ac2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5d410579959dbca_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5e515578558fda1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5e515578558fda1_0 new file mode 100644 index 000000000..a2c0de3e2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5e515578558fda1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5ec324822b3493b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5ec324822b3493b_0 new file mode 100644 index 000000000..7629c0747 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5ec324822b3493b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5ecbc525087fcce_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5ecbc525087fcce_0 new file mode 100644 index 000000000..de3e4bce2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b5ecbc525087fcce_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b6118ee473024cf0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b6118ee473024cf0_0 new file mode 100644 index 000000000..e30ca22d8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b6118ee473024cf0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b61fec5f6fecc833_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b61fec5f6fecc833_0 new file mode 100644 index 000000000..87f8c6819 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b61fec5f6fecc833_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b620428b2f2536e3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b620428b2f2536e3_0 new file mode 100644 index 000000000..e841c9c28 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b620428b2f2536e3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b66a2138f4616008_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b66a2138f4616008_0 new file mode 100644 index 000000000..fee7cf28b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b66a2138f4616008_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b66b0096914d6e07_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b66b0096914d6e07_0 new file mode 100644 index 000000000..6673a6a5b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b66b0096914d6e07_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b66b690cc5c463e0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b66b690cc5c463e0_0 new file mode 100644 index 000000000..175640ed8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b66b690cc5c463e0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b6813e696cce955b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b6813e696cce955b_0 new file mode 100644 index 000000000..8839e8c5a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b6813e696cce955b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b6b4692c6cff06d4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b6b4692c6cff06d4_0 new file mode 100644 index 000000000..b6291c61d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b6b4692c6cff06d4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b6d0250926257e71_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b6d0250926257e71_0 new file mode 100644 index 000000000..6070a2319 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b6d0250926257e71_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b6df7b23c39abbad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b6df7b23c39abbad_0 new file mode 100644 index 000000000..4f6156ba7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b6df7b23c39abbad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7125c63ee2ca835_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7125c63ee2ca835_0 new file mode 100644 index 000000000..20a73e5d0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7125c63ee2ca835_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b71378cf0cdedf8b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b71378cf0cdedf8b_0 new file mode 100644 index 000000000..adb8a9f05 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b71378cf0cdedf8b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7348f75c7617c6d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7348f75c7617c6d_0 new file mode 100644 index 000000000..de00ff6a5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7348f75c7617c6d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7436d7825b6eb1d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7436d7825b6eb1d_0 new file mode 100644 index 000000000..58532795e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7436d7825b6eb1d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7494b6b02f51066_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7494b6b02f51066_0 new file mode 100644 index 000000000..13f8a29af Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7494b6b02f51066_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b75536806a117baf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b75536806a117baf_0 new file mode 100644 index 000000000..8dbdd2c0b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b75536806a117baf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b75dae4e06ab5cfc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b75dae4e06ab5cfc_0 index caa0985d7..36de9b470 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b75dae4e06ab5cfc_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b75dae4e06ab5cfc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b767dedee7f57b23_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b767dedee7f57b23_0 new file mode 100644 index 000000000..6e8f60798 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b767dedee7f57b23_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b76f848d4e38f615_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b76f848d4e38f615_0 new file mode 100644 index 000000000..418af3caf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b76f848d4e38f615_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b77932b4c05e1f87_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b77932b4c05e1f87_0 new file mode 100644 index 000000000..b8c5f8175 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b77932b4c05e1f87_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b77b74d1de068ae1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b77b74d1de068ae1_0 new file mode 100644 index 000000000..7dd0b244a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b77b74d1de068ae1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7b04a7751856a44_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7b04a7751856a44_0 new file mode 100644 index 000000000..609ad80ab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7b04a7751856a44_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7b3be0074bffc80_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7b3be0074bffc80_0 new file mode 100644 index 000000000..9b3582b12 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7b3be0074bffc80_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7cd8ea745960bba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7cd8ea745960bba_0 new file mode 100644 index 000000000..dc279edaa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7cd8ea745960bba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7d64fad989bec3c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7d64fad989bec3c_0 new file mode 100644 index 000000000..03a7cab51 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7d64fad989bec3c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7f302edd2fb10d1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7f302edd2fb10d1_0 new file mode 100644 index 000000000..94775ad42 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b7f302edd2fb10d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b819d42129d1d83d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b819d42129d1d83d_0 new file mode 100644 index 000000000..70240c2ea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b819d42129d1d83d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b81f4b21cc68ee1e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b81f4b21cc68ee1e_0 new file mode 100644 index 000000000..5e0453b37 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b81f4b21cc68ee1e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b81f6d8eb3172cf1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b81f6d8eb3172cf1_0 new file mode 100644 index 000000000..df8625d69 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b81f6d8eb3172cf1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b820cc1b9f9099cd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b820cc1b9f9099cd_0 new file mode 100644 index 000000000..0853ab75c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b820cc1b9f9099cd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b82686cacd789dc5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b82686cacd789dc5_0 new file mode 100644 index 000000000..44facf410 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b82686cacd789dc5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b82a642d9cbca5d9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b82a642d9cbca5d9_0 new file mode 100644 index 000000000..369f3ed1f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b82a642d9cbca5d9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b831e5006f25d65e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b831e5006f25d65e_0 new file mode 100644 index 000000000..818b9c60d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b831e5006f25d65e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b846818b53f026a2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b846818b53f026a2_0 new file mode 100644 index 000000000..a74d4d8dd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b846818b53f026a2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b85eedb70bea7bec_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b85eedb70bea7bec_0 new file mode 100644 index 000000000..d2421d5d9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b85eedb70bea7bec_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b867b74a4dc72f52_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b867b74a4dc72f52_0 new file mode 100644 index 000000000..19e125560 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b867b74a4dc72f52_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b88f5a8194933e77_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b88f5a8194933e77_0 new file mode 100644 index 000000000..caca2a5ff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b88f5a8194933e77_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b898b15767fe9e4c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b898b15767fe9e4c_0 new file mode 100644 index 000000000..752a59de1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b898b15767fe9e4c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b8b03841b16e1e72_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b8b03841b16e1e72_0 new file mode 100644 index 000000000..a09977ce7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b8b03841b16e1e72_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b8f47cc79971904e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b8f47cc79971904e_0 new file mode 100644 index 000000000..624f90cdb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b8f47cc79971904e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b8fd9a0d60aba606_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b8fd9a0d60aba606_0 new file mode 100644 index 000000000..33b874fa5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b8fd9a0d60aba606_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b90af2695f101072_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b90af2695f101072_0 new file mode 100644 index 000000000..82a02d8be Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b90af2695f101072_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9113d5624ad5fba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9113d5624ad5fba_0 new file mode 100644 index 000000000..35df2f218 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9113d5624ad5fba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b915f96bdd05a84e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b915f96bdd05a84e_0 new file mode 100644 index 000000000..78214483c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b915f96bdd05a84e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b918ef500a95d74d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b918ef500a95d74d_0 new file mode 100644 index 000000000..cffa22282 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b918ef500a95d74d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b936fc70ff57dd52_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b936fc70ff57dd52_0 new file mode 100644 index 000000000..ad369a893 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b936fc70ff57dd52_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b93cbd7cca2fc40e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b93cbd7cca2fc40e_0 new file mode 100644 index 000000000..d9c2a4a3d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b93cbd7cca2fc40e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b95d719487ce7ee9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b95d719487ce7ee9_0 new file mode 100644 index 000000000..f8929b97c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b95d719487ce7ee9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b968e7481e61859a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b968e7481e61859a_0 new file mode 100644 index 000000000..80e727b60 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b968e7481e61859a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9741ce9221e109f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9741ce9221e109f_0 new file mode 100644 index 000000000..11fc57c98 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9741ce9221e109f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b99623e7500379df_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b99623e7500379df_0 new file mode 100644 index 000000000..bba8ce9a4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b99623e7500379df_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9a86548dd2255b4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9a86548dd2255b4_0 new file mode 100644 index 000000000..5cdc93062 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9a86548dd2255b4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9b07665b170fe2c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9b07665b170fe2c_0 new file mode 100644 index 000000000..e5ad37851 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9b07665b170fe2c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9b68ed4272249ed_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9b68ed4272249ed_0 new file mode 100644 index 000000000..972c7cd75 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9b68ed4272249ed_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9d36597d4671918_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9d36597d4671918_0 new file mode 100644 index 000000000..35eb45897 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9d36597d4671918_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9d9c72ea8468209_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9d9c72ea8468209_0 new file mode 100644 index 000000000..98096e3e8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9d9c72ea8468209_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9e3a48e4aead71c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9e3a48e4aead71c_0 new file mode 100644 index 000000000..0800473c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9e3a48e4aead71c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9f5f9f00e404fee_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9f5f9f00e404fee_0 new file mode 100644 index 000000000..5c9afb9e8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/b9f5f9f00e404fee_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba1403893e4b1caa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba1403893e4b1caa_0 new file mode 100644 index 000000000..4ebe5b69a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba1403893e4b1caa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba1f497ca1f02606_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba1f497ca1f02606_0 new file mode 100644 index 000000000..08f8639d2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba1f497ca1f02606_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba2212ea25ae07c9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba2212ea25ae07c9_0 new file mode 100644 index 000000000..01f892618 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba2212ea25ae07c9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba2dbd0b9c52be98_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba2dbd0b9c52be98_0 new file mode 100644 index 000000000..ebef3680d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba2dbd0b9c52be98_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba372815d17188d5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba372815d17188d5_0 new file mode 100644 index 000000000..7f488e5b0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba372815d17188d5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba5f6ea7ac39740d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba5f6ea7ac39740d_0 new file mode 100644 index 000000000..7ef522b3d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba5f6ea7ac39740d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba8ba99025a6545c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba8ba99025a6545c_0 new file mode 100644 index 000000000..c5afc0687 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba8ba99025a6545c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba98bb99ade3856c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba98bb99ade3856c_0 new file mode 100644 index 000000000..9666dfb24 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba98bb99ade3856c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba9cf4fe14607fe7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba9cf4fe14607fe7_0 new file mode 100644 index 000000000..061b9f46a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba9cf4fe14607fe7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba9f82291e90ba0b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba9f82291e90ba0b_0 new file mode 100644 index 000000000..45447db4e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ba9f82291e90ba0b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/baa2ba26bd69b10b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/baa2ba26bd69b10b_0 new file mode 100644 index 000000000..334dcf837 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/baa2ba26bd69b10b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bab676e72c356148_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bab676e72c356148_0 new file mode 100644 index 000000000..7ae2fa0cc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bab676e72c356148_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/babfdf7b7b24946e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/babfdf7b7b24946e_0 new file mode 100644 index 000000000..af9c817c8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/babfdf7b7b24946e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bad4a110099f2cf8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bad4a110099f2cf8_0 new file mode 100644 index 000000000..3210853e5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bad4a110099f2cf8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bad4c809f2e3e909_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bad4c809f2e3e909_0 new file mode 100644 index 000000000..bb0817017 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bad4c809f2e3e909_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bad935b629adacad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bad935b629adacad_0 new file mode 100644 index 000000000..c5034e9e3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bad935b629adacad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/badfb4710deb3106_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/badfb4710deb3106_0 new file mode 100644 index 000000000..ca40cef4c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/badfb4710deb3106_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bae57ec1a5faa0b3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bae57ec1a5faa0b3_0 new file mode 100644 index 000000000..98ea0f7f6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bae57ec1a5faa0b3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bae6d51326a999f1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bae6d51326a999f1_0 new file mode 100644 index 000000000..1a01c2304 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bae6d51326a999f1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/baeadd2472699b75_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/baeadd2472699b75_0 new file mode 100644 index 000000000..d9df43465 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/baeadd2472699b75_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/baeff83032086dea_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/baeff83032086dea_0 new file mode 100644 index 000000000..b3bffa7a9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/baeff83032086dea_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/baf014bcb49e1b3f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/baf014bcb49e1b3f_0 new file mode 100644 index 000000000..258084f78 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/baf014bcb49e1b3f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bafa2b2af8232df5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bafa2b2af8232df5_0 new file mode 100644 index 000000000..ab8623f59 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bafa2b2af8232df5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb1aec46d857a607_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb1aec46d857a607_0 new file mode 100644 index 000000000..11576dc04 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb1aec46d857a607_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb2a3fb3c1a82cb3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb2a3fb3c1a82cb3_0 new file mode 100644 index 000000000..6a1fff590 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb2a3fb3c1a82cb3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb35df9a6253d367_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb35df9a6253d367_0 new file mode 100644 index 000000000..e1fe5c3f4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb35df9a6253d367_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb5b8388e163236c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb5b8388e163236c_0 new file mode 100644 index 000000000..9d16c426c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb5b8388e163236c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb5f35df0c977dd8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb5f35df0c977dd8_0 new file mode 100644 index 000000000..be3b5fbfc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb5f35df0c977dd8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb7ab4ccfeadb2b2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb7ab4ccfeadb2b2_0 new file mode 100644 index 000000000..0479b5302 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb7ab4ccfeadb2b2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb8206171b2ae472_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb8206171b2ae472_0 new file mode 100644 index 000000000..12b671b08 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb8206171b2ae472_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb8c04df9868c13a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb8c04df9868c13a_0 new file mode 100644 index 000000000..0cacdff52 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb8c04df9868c13a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb9b89c59b85a45e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb9b89c59b85a45e_0 new file mode 100644 index 000000000..f0bac0da6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bb9b89c59b85a45e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bbd521f24ba0dbd6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bbd521f24ba0dbd6_0 new file mode 100644 index 000000000..11bb54a42 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bbd521f24ba0dbd6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bbe3a226d32e4abb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bbe3a226d32e4abb_0 new file mode 100644 index 000000000..9f5373139 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bbe3a226d32e4abb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bc083e3d6a629060_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bc083e3d6a629060_0 new file mode 100644 index 000000000..8c61f587e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bc083e3d6a629060_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bc3994c827067c2b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bc3994c827067c2b_0 new file mode 100644 index 000000000..dc5fc6947 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bc3994c827067c2b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bc732095fbd4b829_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bc732095fbd4b829_0 new file mode 100644 index 000000000..2908d8cd2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bc732095fbd4b829_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bc80ddc1c52e4bb1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bc80ddc1c52e4bb1_0 new file mode 100644 index 000000000..bb120ab0f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bc80ddc1c52e4bb1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bc83a7a557d992ff_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bc83a7a557d992ff_0 new file mode 100644 index 000000000..679758520 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bc83a7a557d992ff_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcc8022db269a679_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcc8022db269a679_0 new file mode 100644 index 000000000..f87dc04dc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcc8022db269a679_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcce36bf763749f1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcce36bf763749f1_0 new file mode 100644 index 000000000..201f3fed2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcce36bf763749f1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcd854fda86c515a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcd854fda86c515a_0 new file mode 100644 index 000000000..945ef7cb8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcd854fda86c515a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcdb29189bdc85e6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcdb29189bdc85e6_0 new file mode 100644 index 000000000..e89002edc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcdb29189bdc85e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcec4da37fd61d35_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcec4da37fd61d35_0 index 5dc4d430b..ec576c369 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcec4da37fd61d35_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcec4da37fd61d35_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcfc8a990bbfb541_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcfc8a990bbfb541_0 new file mode 100644 index 000000000..7801accc4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcfc8a990bbfb541_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcffa68ec40451e8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcffa68ec40451e8_0 new file mode 100644 index 000000000..9544f34a2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bcffa68ec40451e8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd0612507819f5a1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd0612507819f5a1_0 new file mode 100644 index 000000000..d1c97b89d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd0612507819f5a1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd0a08f260742336_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd0a08f260742336_0 new file mode 100644 index 000000000..786b8c63e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd0a08f260742336_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd0c027b0976263b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd0c027b0976263b_0 index 070c523c5..de6af62d6 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd0c027b0976263b_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd0c027b0976263b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd0e314f3d753c58_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd0e314f3d753c58_0 new file mode 100644 index 000000000..f4a3e784b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd0e314f3d753c58_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd21cbdcd4ed8efb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd21cbdcd4ed8efb_0 new file mode 100644 index 000000000..e9be78bee Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd21cbdcd4ed8efb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd2e4cc1b5207004_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd2e4cc1b5207004_0 new file mode 100644 index 000000000..6b2093982 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd2e4cc1b5207004_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd40f28cae996870_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd40f28cae996870_0 new file mode 100644 index 000000000..4ae49e45c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd40f28cae996870_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd5d8c316af03cd6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd5d8c316af03cd6_0 new file mode 100644 index 000000000..7108de827 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd5d8c316af03cd6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd6db3a0febd03e2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd6db3a0febd03e2_0 new file mode 100644 index 000000000..2e234a663 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd6db3a0febd03e2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd81efcf5784664e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd81efcf5784664e_0 new file mode 100644 index 000000000..0e75f2d15 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd81efcf5784664e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd8d245fb9658582_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd8d245fb9658582_0 new file mode 100644 index 000000000..c4899aa90 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bd8d245fb9658582_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bda4a309049fb9f9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bda4a309049fb9f9_0 new file mode 100644 index 000000000..2762247a1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bda4a309049fb9f9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bda8e68a649ab8f0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bda8e68a649ab8f0_0 new file mode 100644 index 000000000..b6b1f46a9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bda8e68a649ab8f0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bdc69df7cdf8874c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bdc69df7cdf8874c_0 new file mode 100644 index 000000000..96b2c635d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bdc69df7cdf8874c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bdcd6d1bd7fefe0c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bdcd6d1bd7fefe0c_0 new file mode 100644 index 000000000..b7cb16842 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bdcd6d1bd7fefe0c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bdda1d91c5489113_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bdda1d91c5489113_0 index f7da2a8ce..f4599a265 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bdda1d91c5489113_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bdda1d91c5489113_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bdeb5c0647766cf9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bdeb5c0647766cf9_0 new file mode 100644 index 000000000..8f1b18ed6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bdeb5c0647766cf9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/be015add96949d50_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be015add96949d50_0 new file mode 100644 index 000000000..268fe0b0e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be015add96949d50_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/be1c5fe089f236c9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be1c5fe089f236c9_0 new file mode 100644 index 000000000..0e315654f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be1c5fe089f236c9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/be1d29e382907223_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be1d29e382907223_0 new file mode 100644 index 000000000..4e10ba758 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be1d29e382907223_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/be1d29e382907223_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be1d29e382907223_s new file mode 100644 index 000000000..7642a71f3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be1d29e382907223_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/be2715e50235db9a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be2715e50235db9a_0 new file mode 100644 index 000000000..27437e540 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be2715e50235db9a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/be52d7d655835d82_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be52d7d655835d82_0 new file mode 100644 index 000000000..c53066815 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be52d7d655835d82_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/be6af9e4755018d3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be6af9e4755018d3_0 new file mode 100644 index 000000000..b6c7856e7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be6af9e4755018d3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/be779df29f6e7d34_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be779df29f6e7d34_0 new file mode 100644 index 000000000..7a9aa1bf3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be779df29f6e7d34_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/be89cc2a87529dc0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be89cc2a87529dc0_0 new file mode 100644 index 000000000..c4dbcdf5c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be89cc2a87529dc0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/be91b8421532a6c2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be91b8421532a6c2_0 new file mode 100644 index 000000000..86928f288 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/be91b8421532a6c2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bea83af6be2b4229_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bea83af6be2b4229_0 new file mode 100644 index 000000000..55de4beaa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bea83af6be2b4229_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bec18dad164c6d98_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bec18dad164c6d98_0 new file mode 100644 index 000000000..1f22ce246 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bec18dad164c6d98_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/becf776b9f963fd7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/becf776b9f963fd7_0 new file mode 100644 index 000000000..dd7286583 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/becf776b9f963fd7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bed4c4a85d93dd0c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bed4c4a85d93dd0c_0 index 0484791bf..6365c88dc 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bed4c4a85d93dd0c_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bed4c4a85d93dd0c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/beec15acd627a828_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/beec15acd627a828_0 new file mode 100644 index 000000000..9ec84de2a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/beec15acd627a828_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bef2ab79940dce2b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bef2ab79940dce2b_0 new file mode 100644 index 000000000..9c2043b16 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bef2ab79940dce2b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bef53c4341ef17c8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bef53c4341ef17c8_0 new file mode 100644 index 000000000..ebf8e6008 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bef53c4341ef17c8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/befe119fd0be8af4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/befe119fd0be8af4_0 new file mode 100644 index 000000000..fc5dcfaa4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/befe119fd0be8af4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf0f9f062ec11f7f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf0f9f062ec11f7f_0 new file mode 100644 index 000000000..534479bd1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf0f9f062ec11f7f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf20377344c1cda1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf20377344c1cda1_0 new file mode 100644 index 000000000..4155ef576 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf20377344c1cda1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf232b990273d616_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf232b990273d616_0 new file mode 100644 index 000000000..da08b1502 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf232b990273d616_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf270c0d0bb7622d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf270c0d0bb7622d_0 new file mode 100644 index 000000000..4c655f4a3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf270c0d0bb7622d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf2dea1ea7267cac_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf2dea1ea7267cac_0 new file mode 100644 index 000000000..f6ace40af Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf2dea1ea7267cac_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf54400bfb758692_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf54400bfb758692_0 new file mode 100644 index 000000000..caa67ae27 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf54400bfb758692_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf557d51f556d513_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf557d51f556d513_0 new file mode 100644 index 000000000..92d20f2d2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf557d51f556d513_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf5be47a92dc615c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf5be47a92dc615c_0 new file mode 100644 index 000000000..9e08246a1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf5be47a92dc615c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf6da2447f023427_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf6da2447f023427_0 new file mode 100644 index 000000000..2c9028d3f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf6da2447f023427_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf6e4ed5e1c9c594_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf6e4ed5e1c9c594_0 new file mode 100644 index 000000000..ae9adad06 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bf6e4ed5e1c9c594_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bfa88834db06697c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bfa88834db06697c_0 new file mode 100644 index 000000000..9dba5cbf1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bfa88834db06697c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bfc7e9a8e4668c90_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bfc7e9a8e4668c90_0 new file mode 100644 index 000000000..f9a2e35b3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bfc7e9a8e4668c90_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bfcd7020a73cffbd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bfcd7020a73cffbd_0 new file mode 100644 index 000000000..1212ca31c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bfcd7020a73cffbd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bfdd1fae6218d827_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bfdd1fae6218d827_0 new file mode 100644 index 000000000..a82421d62 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bfdd1fae6218d827_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/bff623840401d8b2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bff623840401d8b2_0 new file mode 100644 index 000000000..fa86fd6d6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/bff623840401d8b2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c01c3521f74474f6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c01c3521f74474f6_0 new file mode 100644 index 000000000..eebf34a44 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c01c3521f74474f6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c01c3521f74474f6_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c01c3521f74474f6_s new file mode 100644 index 000000000..2bc74c17c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c01c3521f74474f6_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c021fd7e9284555f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c021fd7e9284555f_0 new file mode 100644 index 000000000..7ebab8eb2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c021fd7e9284555f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c028aacb69a6ae20_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c028aacb69a6ae20_0 new file mode 100644 index 000000000..6d7f67c77 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c028aacb69a6ae20_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c02c9037ea33219d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c02c9037ea33219d_0 new file mode 100644 index 000000000..819e7f764 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c02c9037ea33219d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0446f400332b741_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0446f400332b741_0 new file mode 100644 index 000000000..d3b7bacee Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0446f400332b741_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0560ad19324e7f8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0560ad19324e7f8_0 new file mode 100644 index 000000000..e28f95206 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0560ad19324e7f8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c09875773815a3e9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c09875773815a3e9_0 new file mode 100644 index 000000000..6a8755067 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c09875773815a3e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0c0e1866189d746_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0c0e1866189d746_0 new file mode 100644 index 000000000..3b3935c63 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0c0e1866189d746_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0dba3875cf7edfa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0dba3875cf7edfa_0 new file mode 100644 index 000000000..d9f0987ee Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0dba3875cf7edfa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0e10889a573f3ed_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0e10889a573f3ed_0 new file mode 100644 index 000000000..72478f188 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0e10889a573f3ed_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0ef4af2a5e599ea_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0ef4af2a5e599ea_0 new file mode 100644 index 000000000..b595aa138 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0ef4af2a5e599ea_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0f6219d73b9eb7c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0f6219d73b9eb7c_0 new file mode 100644 index 000000000..3c4223827 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0f6219d73b9eb7c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0f6225b3611f2d9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0f6225b3611f2d9_0 new file mode 100644 index 000000000..b4023ce05 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c0f6225b3611f2d9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c11e42527faddfca_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c11e42527faddfca_0 new file mode 100644 index 000000000..03f4a93f2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c11e42527faddfca_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c15e27e1eccdf527_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c15e27e1eccdf527_0 new file mode 100644 index 000000000..1086a9e85 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c15e27e1eccdf527_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c161ae65d31cd377_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c161ae65d31cd377_0 new file mode 100644 index 000000000..429e99349 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c161ae65d31cd377_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1637aae34e3dc8b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1637aae34e3dc8b_0 new file mode 100644 index 000000000..e2b2b7f2d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1637aae34e3dc8b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c17c4a60d883f526_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c17c4a60d883f526_0 new file mode 100644 index 000000000..794a255d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c17c4a60d883f526_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c19a732bc54e6d46_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c19a732bc54e6d46_0 new file mode 100644 index 000000000..eaf5f3157 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c19a732bc54e6d46_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c19b4cd690aad1d1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c19b4cd690aad1d1_0 new file mode 100644 index 000000000..12739dccb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c19b4cd690aad1d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1aca9c8cc66d7e9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1aca9c8cc66d7e9_0 new file mode 100644 index 000000000..ae346cdaa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1aca9c8cc66d7e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1af427eac0f5a52_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1af427eac0f5a52_0 new file mode 100644 index 000000000..e85768cb5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1af427eac0f5a52_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1bbd4f84ad139bc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1bbd4f84ad139bc_0 new file mode 100644 index 000000000..5cfa70b96 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1bbd4f84ad139bc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1cc18975f5faeac_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1cc18975f5faeac_0 new file mode 100644 index 000000000..7da787d42 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1cc18975f5faeac_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1e45e151cdde5c6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1e45e151cdde5c6_0 new file mode 100644 index 000000000..b927a7c2a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1e45e151cdde5c6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1f40e7835a947b3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1f40e7835a947b3_0 new file mode 100644 index 000000000..7d9273800 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1f40e7835a947b3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1fb2861a0f069f4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1fb2861a0f069f4_0 index 06e4dd18b..ee3b77189 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1fb2861a0f069f4_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1fb2861a0f069f4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1fbcdd6e8bf5f67_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1fbcdd6e8bf5f67_0 new file mode 100644 index 000000000..cadbb69e3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c1fbcdd6e8bf5f67_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c226f8b98f612296_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c226f8b98f612296_0 new file mode 100644 index 000000000..2997c2449 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c226f8b98f612296_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c227add044dcbf2c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c227add044dcbf2c_0 new file mode 100644 index 000000000..6a2d01c1e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c227add044dcbf2c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c230f618c7876e94_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c230f618c7876e94_0 new file mode 100644 index 000000000..39225ab65 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c230f618c7876e94_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2329616142af359_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2329616142af359_0 new file mode 100644 index 000000000..be24bf724 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2329616142af359_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c233e222df459441_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c233e222df459441_0 new file mode 100644 index 000000000..1e2a51026 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c233e222df459441_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2422d9bd2e93c8a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2422d9bd2e93c8a_0 new file mode 100644 index 000000000..cf59e62a3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2422d9bd2e93c8a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c249b06b0b6b825a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c249b06b0b6b825a_0 new file mode 100644 index 000000000..d7dd2b8f7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c249b06b0b6b825a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c25351d2b2083241_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c25351d2b2083241_0 new file mode 100644 index 000000000..36e09cbf9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c25351d2b2083241_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c28745f5af5e5cc7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c28745f5af5e5cc7_0 new file mode 100644 index 000000000..ebd837d5d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c28745f5af5e5cc7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c29451dff7c86ddc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c29451dff7c86ddc_0 new file mode 100644 index 000000000..4718d8eb8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c29451dff7c86ddc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2a2a760a0cad35b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2a2a760a0cad35b_0 new file mode 100644 index 000000000..291806161 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2a2a760a0cad35b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2bcd729f5ec078b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2bcd729f5ec078b_0 new file mode 100644 index 000000000..597b85c97 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2bcd729f5ec078b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2c7241a93cbc6a7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2c7241a93cbc6a7_0 new file mode 100644 index 000000000..36de5dcb2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2c7241a93cbc6a7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2d23c4c3f49b7e6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2d23c4c3f49b7e6_0 new file mode 100644 index 000000000..4dc84fb77 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2d23c4c3f49b7e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2e3baed21cedb65_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2e3baed21cedb65_0 new file mode 100644 index 000000000..c66093e8c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2e3baed21cedb65_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2f40cbb46593435_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2f40cbb46593435_0 new file mode 100644 index 000000000..193a17acf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2f40cbb46593435_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2f4edf19a00ba5f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2f4edf19a00ba5f_0 new file mode 100644 index 000000000..41c1ad63b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2f4edf19a00ba5f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2f68449ee858b23_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2f68449ee858b23_0 new file mode 100644 index 000000000..51e68f05f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c2f68449ee858b23_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3096b316667629f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3096b316667629f_0 new file mode 100644 index 000000000..e95053a87 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3096b316667629f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c32193c2c58b4f94_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c32193c2c58b4f94_0 new file mode 100644 index 000000000..8ff6d82bf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c32193c2c58b4f94_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3220413104ab9da_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3220413104ab9da_0 index 540516f17..fe5a838da 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3220413104ab9da_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3220413104ab9da_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c354cf2601a1552d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c354cf2601a1552d_0 new file mode 100644 index 000000000..0c799ef16 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c354cf2601a1552d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c36087c866d2ae50_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c36087c866d2ae50_0 new file mode 100644 index 000000000..a4e472db9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c36087c866d2ae50_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3967b676772fee6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3967b676772fee6_0 new file mode 100644 index 000000000..fdec3ce56 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3967b676772fee6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3ad478e118066d6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3ad478e118066d6_0 new file mode 100644 index 000000000..867dac766 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3ad478e118066d6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3b0b57da169db80_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3b0b57da169db80_0 new file mode 100644 index 000000000..091e2ff69 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3b0b57da169db80_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3b982d60420f0a5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3b982d60420f0a5_0 new file mode 100644 index 000000000..0eac98e7b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3b982d60420f0a5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3c6509cd7943237_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3c6509cd7943237_0 new file mode 100644 index 000000000..833a65a12 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3c6509cd7943237_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3c9918bf7b31059_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3c9918bf7b31059_0 new file mode 100644 index 000000000..c964db670 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3c9918bf7b31059_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3cde2a9a8d1662a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3cde2a9a8d1662a_0 new file mode 100644 index 000000000..6c2c8146c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3cde2a9a8d1662a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3d0acc8acfd41b2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3d0acc8acfd41b2_0 new file mode 100644 index 000000000..9a91bd13c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3d0acc8acfd41b2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3d35f5709b5311d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3d35f5709b5311d_0 new file mode 100644 index 000000000..2f643ab88 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3d35f5709b5311d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3d65543ddd55ad4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3d65543ddd55ad4_0 new file mode 100644 index 000000000..501540c69 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3d65543ddd55ad4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3d65543ddd55ad4_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3d65543ddd55ad4_s new file mode 100644 index 000000000..96b7486e7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3d65543ddd55ad4_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3fc74d5dc347de5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3fc74d5dc347de5_0 new file mode 100644 index 000000000..b725e492f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c3fc74d5dc347de5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c414ad06a4e9753e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c414ad06a4e9753e_0 new file mode 100644 index 000000000..8aeb736a8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c414ad06a4e9753e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c45717c9a4b347a5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c45717c9a4b347a5_0 new file mode 100644 index 000000000..0dae71427 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c45717c9a4b347a5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4574d04c9b401e2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4574d04c9b401e2_0 new file mode 100644 index 000000000..ba64fe4c6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4574d04c9b401e2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c45e7ecbdfaa415f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c45e7ecbdfaa415f_0 new file mode 100644 index 000000000..a97337f70 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c45e7ecbdfaa415f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4602abb3ef97def_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4602abb3ef97def_0 new file mode 100644 index 000000000..16d783494 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4602abb3ef97def_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c472c3c918693070_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c472c3c918693070_0 new file mode 100644 index 000000000..0c9777ded Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c472c3c918693070_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c47740d74d794184_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c47740d74d794184_0 new file mode 100644 index 000000000..ed512658e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c47740d74d794184_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c47740d74d794184_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c47740d74d794184_s new file mode 100644 index 000000000..4856f3c36 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c47740d74d794184_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4853705ed0d0fe8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4853705ed0d0fe8_0 new file mode 100644 index 000000000..f635768b4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4853705ed0d0fe8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4855bb4c0ac2d0f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4855bb4c0ac2d0f_0 new file mode 100644 index 000000000..f92750dc4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4855bb4c0ac2d0f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4a791d60db946e6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4a791d60db946e6_0 new file mode 100644 index 000000000..cb069b569 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4a791d60db946e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4ae024b61de811f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4ae024b61de811f_0 new file mode 100644 index 000000000..a9cf8bf55 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4ae024b61de811f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4aff7e6e4409215_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4aff7e6e4409215_0 new file mode 100644 index 000000000..1e76a32c1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4aff7e6e4409215_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4b5335facd6829d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4b5335facd6829d_0 new file mode 100644 index 000000000..c41f1e734 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4b5335facd6829d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4d62e3d69bdf5ff_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4d62e3d69bdf5ff_0 new file mode 100644 index 000000000..6eb87fa6d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4d62e3d69bdf5ff_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4ed0761390c884c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4ed0761390c884c_0 new file mode 100644 index 000000000..9d7f6ab19 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4ed0761390c884c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4f5fab9c3c2a18b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4f5fab9c3c2a18b_0 new file mode 100644 index 000000000..d7529e12a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c4f5fab9c3c2a18b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5115fa7de75357a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5115fa7de75357a_0 new file mode 100644 index 000000000..2a4ee725e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5115fa7de75357a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c512e9f60b79aa9f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c512e9f60b79aa9f_0 new file mode 100644 index 000000000..1cf588605 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c512e9f60b79aa9f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5153ff3e1b85fb3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5153ff3e1b85fb3_0 new file mode 100644 index 000000000..29aca7a3a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5153ff3e1b85fb3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5164f11cb8c0b43_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5164f11cb8c0b43_0 new file mode 100644 index 000000000..f26d9865b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5164f11cb8c0b43_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5198d372ad95b44_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5198d372ad95b44_0 new file mode 100644 index 000000000..fc630392b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5198d372ad95b44_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5273a040d8eccec_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5273a040d8eccec_0 new file mode 100644 index 000000000..118bad3d0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5273a040d8eccec_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5275f256c9fc658_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5275f256c9fc658_0 new file mode 100644 index 000000000..372b8143b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5275f256c9fc658_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c554fb73c90dd981_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c554fb73c90dd981_0 new file mode 100644 index 000000000..49dff156c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c554fb73c90dd981_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c557236af52b683b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c557236af52b683b_0 new file mode 100644 index 000000000..8a5d40710 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c557236af52b683b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c56ed047b178a0e7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c56ed047b178a0e7_0 new file mode 100644 index 000000000..78b2bcd38 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c56ed047b178a0e7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5862ad9e6b224db_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5862ad9e6b224db_0 new file mode 100644 index 000000000..d0731e823 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5862ad9e6b224db_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c589e7cc4f983888_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c589e7cc4f983888_0 new file mode 100644 index 000000000..cc4689df4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c589e7cc4f983888_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c59428ef8f8acd7c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c59428ef8f8acd7c_0 new file mode 100644 index 000000000..2b1664e06 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c59428ef8f8acd7c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5e99d08a9ee3792_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5e99d08a9ee3792_0 new file mode 100644 index 000000000..c8db12639 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c5e99d08a9ee3792_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c60db0ad620c2186_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c60db0ad620c2186_0 new file mode 100644 index 000000000..79eb175bb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c60db0ad620c2186_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c613738db4f1ef4e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c613738db4f1ef4e_0 new file mode 100644 index 000000000..c6ba8d6bd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c613738db4f1ef4e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c61fbcde7b06326a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c61fbcde7b06326a_0 new file mode 100644 index 000000000..6188c5be8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c61fbcde7b06326a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c63230c776e59572_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c63230c776e59572_0 new file mode 100644 index 000000000..deeca3f5f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c63230c776e59572_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c63a99492ec1023b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c63a99492ec1023b_0 new file mode 100644 index 000000000..bd9db0f1f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c63a99492ec1023b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6463dc921d4dbe3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6463dc921d4dbe3_0 new file mode 100644 index 000000000..f3032fc5f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6463dc921d4dbe3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6591dd1c50119e7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6591dd1c50119e7_0 new file mode 100644 index 000000000..7e353e046 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6591dd1c50119e7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c672b94373f54b42_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c672b94373f54b42_0 new file mode 100644 index 000000000..43c6493b8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c672b94373f54b42_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c685509a72bf0978_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c685509a72bf0978_0 new file mode 100644 index 000000000..54bbf3960 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c685509a72bf0978_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c68ac16140095990_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c68ac16140095990_0 new file mode 100644 index 000000000..1547e5733 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c68ac16140095990_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6a4f4d4d3637cee_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6a4f4d4d3637cee_0 new file mode 100644 index 000000000..f9771dc6e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6a4f4d4d3637cee_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6bee3a519d4a8c7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6bee3a519d4a8c7_0 new file mode 100644 index 000000000..66f2ff2e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6bee3a519d4a8c7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6c9aa88c049ff15_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6c9aa88c049ff15_0 new file mode 100644 index 000000000..702e09908 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6c9aa88c049ff15_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6d0a21024e2cb0f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6d0a21024e2cb0f_0 new file mode 100644 index 000000000..0b3228618 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6d0a21024e2cb0f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6d926e3c4f11aa3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6d926e3c4f11aa3_0 new file mode 100644 index 000000000..5854dbdb4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c6d926e3c4f11aa3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c70f4bc0f6c41187_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c70f4bc0f6c41187_0 new file mode 100644 index 000000000..033b85c88 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c70f4bc0f6c41187_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c71546cb1fabdee2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c71546cb1fabdee2_0 new file mode 100644 index 000000000..9c661733c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c71546cb1fabdee2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c72020412360ae65_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c72020412360ae65_0 new file mode 100644 index 000000000..a5c2e2582 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c72020412360ae65_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c72187c314228650_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c72187c314228650_0 new file mode 100644 index 000000000..7dc24e589 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c72187c314228650_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c723647756b5efca_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c723647756b5efca_0 new file mode 100644 index 000000000..f780b4a4a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c723647756b5efca_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c72bca8da2a3b2a3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c72bca8da2a3b2a3_0 new file mode 100644 index 000000000..0b4ab82e6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c72bca8da2a3b2a3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c72cf4aac066bc83_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c72cf4aac066bc83_0 new file mode 100644 index 000000000..a0052e43e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c72cf4aac066bc83_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c72ebbb3c9a7eecd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c72ebbb3c9a7eecd_0 new file mode 100644 index 000000000..59ddb1980 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c72ebbb3c9a7eecd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c748dffd4d05ef79_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c748dffd4d05ef79_0 new file mode 100644 index 000000000..746b84b7c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c748dffd4d05ef79_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c761e497e19f4d75_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c761e497e19f4d75_0 new file mode 100644 index 000000000..8c33c0c12 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c761e497e19f4d75_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c787eb5d375c16b8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c787eb5d375c16b8_0 new file mode 100644 index 000000000..d132e91cb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c787eb5d375c16b8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c78e44b514668308_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c78e44b514668308_0 new file mode 100644 index 000000000..153332fbd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c78e44b514668308_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c794cf4043339a27_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c794cf4043339a27_0 new file mode 100644 index 000000000..50fafac2b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c794cf4043339a27_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c79ccf1ff5503ca4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c79ccf1ff5503ca4_0 new file mode 100644 index 000000000..ee8b28e16 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c79ccf1ff5503ca4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c79ea5b6af31efdb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c79ea5b6af31efdb_0 new file mode 100644 index 000000000..ed2aaf802 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c79ea5b6af31efdb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c7a627675a3f6319_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c7a627675a3f6319_0 new file mode 100644 index 000000000..30c1c10e3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c7a627675a3f6319_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c7cbe2d19f759ea3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c7cbe2d19f759ea3_0 new file mode 100644 index 000000000..9beb0e1aa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c7cbe2d19f759ea3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c7e3c1a8b1bbd0e5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c7e3c1a8b1bbd0e5_0 new file mode 100644 index 000000000..ab6a41ad3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c7e3c1a8b1bbd0e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c8011c4cfc66c228_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c8011c4cfc66c228_0 new file mode 100644 index 000000000..bc5446ec9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c8011c4cfc66c228_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c8172bf39cc57f1b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c8172bf39cc57f1b_0 new file mode 100644 index 000000000..edff45a8a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c8172bf39cc57f1b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c81f173603c73640_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c81f173603c73640_0 new file mode 100644 index 000000000..24ce66f2f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c81f173603c73640_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c82d0aeac71f1ae0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c82d0aeac71f1ae0_0 new file mode 100644 index 000000000..c47c83ca7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c82d0aeac71f1ae0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c83073c9e82ad70b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c83073c9e82ad70b_0 new file mode 100644 index 000000000..bc4225a73 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c83073c9e82ad70b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c8443d8a6ef74a7e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c8443d8a6ef74a7e_0 new file mode 100644 index 000000000..810190d03 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c8443d8a6ef74a7e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c84b4c34a0083758_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c84b4c34a0083758_0 new file mode 100644 index 000000000..70d2b7013 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c84b4c34a0083758_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c851cfb238b9d827_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c851cfb238b9d827_0 new file mode 100644 index 000000000..14d9d54c1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c851cfb238b9d827_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c85796509fe1ba9e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c85796509fe1ba9e_0 new file mode 100644 index 000000000..86368a5e2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c85796509fe1ba9e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c862be21c8a2dee9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c862be21c8a2dee9_0 new file mode 100644 index 000000000..d5d45db96 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c862be21c8a2dee9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c86e9d8f484a7c2c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c86e9d8f484a7c2c_0 new file mode 100644 index 000000000..044782ff3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c86e9d8f484a7c2c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c877488de4dd6f7f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c877488de4dd6f7f_0 new file mode 100644 index 000000000..1d2c2bd42 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c877488de4dd6f7f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c8875eb0b51ee980_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c8875eb0b51ee980_0 new file mode 100644 index 000000000..fbfc8ce73 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c8875eb0b51ee980_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c88e63f508bcd3ad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c88e63f508bcd3ad_0 new file mode 100644 index 000000000..6a44a340e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c88e63f508bcd3ad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c895835491097b15_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c895835491097b15_0 new file mode 100644 index 000000000..f1e251ddd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c895835491097b15_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c89ef9caff946ef5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c89ef9caff946ef5_0 new file mode 100644 index 000000000..9e38e10b5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c89ef9caff946ef5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c8d8798619745ca8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c8d8798619745ca8_0 new file mode 100644 index 000000000..86b0a1798 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c8d8798619745ca8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c8fd083d64cd11dd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c8fd083d64cd11dd_0 new file mode 100644 index 000000000..eba09f269 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c8fd083d64cd11dd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c90e5aac830e8205_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c90e5aac830e8205_0 new file mode 100644 index 000000000..1d07c1940 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c90e5aac830e8205_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c927198159b320e6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c927198159b320e6_0 new file mode 100644 index 000000000..ed1089ba5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c927198159b320e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c93c35f81897d0f8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c93c35f81897d0f8_0 new file mode 100644 index 000000000..0ae4ed323 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c93c35f81897d0f8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9435c8f13422132_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9435c8f13422132_0 new file mode 100644 index 000000000..aaf8bc74a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9435c8f13422132_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c94f3bfa5d9088ca_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c94f3bfa5d9088ca_0 new file mode 100644 index 000000000..357963a7a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c94f3bfa5d9088ca_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c95e802283d4cbd8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c95e802283d4cbd8_0 new file mode 100644 index 000000000..fc40db165 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c95e802283d4cbd8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c962c1ba995e235d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c962c1ba995e235d_0 new file mode 100644 index 000000000..328b29e73 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c962c1ba995e235d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c96a7ebc06a53c50_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c96a7ebc06a53c50_0 new file mode 100644 index 000000000..2d26d0216 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c96a7ebc06a53c50_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c96b74de4421bf76_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c96b74de4421bf76_0 new file mode 100644 index 000000000..194381e89 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c96b74de4421bf76_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c975e723f8ffd508_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c975e723f8ffd508_0 new file mode 100644 index 000000000..84e2be133 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c975e723f8ffd508_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c97d5b1ecde47273_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c97d5b1ecde47273_0 new file mode 100644 index 000000000..4c199318d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c97d5b1ecde47273_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c989980e8d2c045b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c989980e8d2c045b_0 new file mode 100644 index 000000000..d820cb0f4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c989980e8d2c045b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c99154b0e06eaadc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c99154b0e06eaadc_0 new file mode 100644 index 000000000..99041f171 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c99154b0e06eaadc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c99e5a4812ded38c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c99e5a4812ded38c_0 new file mode 100644 index 000000000..44a70a48e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c99e5a4812ded38c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9a050e45df21b48_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9a050e45df21b48_0 new file mode 100644 index 000000000..499e49143 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9a050e45df21b48_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9a16145d6b904cc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9a16145d6b904cc_0 new file mode 100644 index 000000000..aa98bad02 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9a16145d6b904cc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9a693e99b6b62cf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9a693e99b6b62cf_0 new file mode 100644 index 000000000..4f581a22d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9a693e99b6b62cf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9bb4e4ba1e8eff3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9bb4e4ba1e8eff3_0 new file mode 100644 index 000000000..d1208eb35 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9bb4e4ba1e8eff3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9cf74711a19fb55_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9cf74711a19fb55_0 new file mode 100644 index 000000000..ee9c780b6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9cf74711a19fb55_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9d4eb549bb31400_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9d4eb549bb31400_0 new file mode 100644 index 000000000..123596964 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9d4eb549bb31400_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9ec566216f9cbde_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9ec566216f9cbde_0 new file mode 100644 index 000000000..eb661a66f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9ec566216f9cbde_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9ec566216f9cbde_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9ec566216f9cbde_s new file mode 100644 index 000000000..d1c094346 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9ec566216f9cbde_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9fa5ef02880afc8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9fa5ef02880afc8_0 index 80ace8dc6..8825a2335 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9fa5ef02880afc8_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/c9fa5ef02880afc8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca3154ffdd31d028_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca3154ffdd31d028_0 new file mode 100644 index 000000000..3f42e500a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca3154ffdd31d028_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca340093d4c1354a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca340093d4c1354a_0 new file mode 100644 index 000000000..504539441 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca340093d4c1354a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca37ee8b9c0dcb25_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca37ee8b9c0dcb25_0 new file mode 100644 index 000000000..0a4bfe383 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca37ee8b9c0dcb25_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca426701598d6e16_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca426701598d6e16_0 new file mode 100644 index 000000000..be15f2dc0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca426701598d6e16_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca4c43bf40bacc7b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca4c43bf40bacc7b_0 new file mode 100644 index 000000000..5801d0c24 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca4c43bf40bacc7b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca52f1f0b33aca63_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca52f1f0b33aca63_0 new file mode 100644 index 000000000..52a64958f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca52f1f0b33aca63_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca66443fb996058e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca66443fb996058e_0 new file mode 100644 index 000000000..b78411f77 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca66443fb996058e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca6680e638453faa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca6680e638453faa_0 new file mode 100644 index 000000000..f755b892e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca6680e638453faa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca766b311de97e6c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca766b311de97e6c_0 new file mode 100644 index 000000000..f749d3f27 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca766b311de97e6c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca774a0eba11bfd2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca774a0eba11bfd2_0 new file mode 100644 index 000000000..7f9ede264 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca774a0eba11bfd2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca89ca2681302a3a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca89ca2681302a3a_0 new file mode 100644 index 000000000..ea1cbd072 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca89ca2681302a3a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca8f3e0e48421ed6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca8f3e0e48421ed6_0 new file mode 100644 index 000000000..e9501c388 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ca8f3e0e48421ed6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cabec65469fc2b5c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cabec65469fc2b5c_0 new file mode 100644 index 000000000..16deb0c13 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cabec65469fc2b5c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cabec6ca2b52ebde_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cabec6ca2b52ebde_0 new file mode 100644 index 000000000..7b5952456 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cabec6ca2b52ebde_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cac4e0def7c97870_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cac4e0def7c97870_0 new file mode 100644 index 000000000..00f5b9135 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cac4e0def7c97870_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cae47f6edf6e8f9f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cae47f6edf6e8f9f_0 new file mode 100644 index 000000000..c4f0c337b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cae47f6edf6e8f9f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cae7de1959e48559_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cae7de1959e48559_0 new file mode 100644 index 000000000..118760b14 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cae7de1959e48559_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb007818734d11ab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb007818734d11ab_0 new file mode 100644 index 000000000..64563661b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb007818734d11ab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb0c76d55ce67229_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb0c76d55ce67229_0 new file mode 100644 index 000000000..d244a4f65 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb0c76d55ce67229_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb15539a190c1133_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb15539a190c1133_0 new file mode 100644 index 000000000..599a73eb0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb15539a190c1133_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb3b0ab70e6dea4b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb3b0ab70e6dea4b_0 new file mode 100644 index 000000000..c977d4500 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb3b0ab70e6dea4b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb44046c78e2e8e7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb44046c78e2e8e7_0 new file mode 100644 index 000000000..4899b9050 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb44046c78e2e8e7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb44ce9d6f079535_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb44ce9d6f079535_0 new file mode 100644 index 000000000..53073e4e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb44ce9d6f079535_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb4620ab04528b7c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb4620ab04528b7c_0 new file mode 100644 index 000000000..b9ca151b8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb4620ab04528b7c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb55d45500b278fe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb55d45500b278fe_0 new file mode 100644 index 000000000..fde1adfeb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb55d45500b278fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb5a644fbb2f1568_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb5a644fbb2f1568_0 new file mode 100644 index 000000000..1609fffdb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb5a644fbb2f1568_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb5c5a27772074f1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb5c5a27772074f1_0 new file mode 100644 index 000000000..9cdb7c4f0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb5c5a27772074f1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb9798919b442125_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb9798919b442125_0 new file mode 100644 index 000000000..2d18d51a3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb9798919b442125_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb990579c7cae88e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb990579c7cae88e_0 new file mode 100644 index 000000000..3d7ef80fc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cb990579c7cae88e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cba921b01bc5a8e0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cba921b01bc5a8e0_0 new file mode 100644 index 000000000..603e274d1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cba921b01bc5a8e0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbb72f7b2123ff38_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbb72f7b2123ff38_0 new file mode 100644 index 000000000..30896e5e2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbb72f7b2123ff38_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbc51a14a74a582b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbc51a14a74a582b_0 new file mode 100644 index 000000000..901d0dacc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbc51a14a74a582b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbcfed51cbfe892b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbcfed51cbfe892b_0 new file mode 100644 index 000000000..132f1d81e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbcfed51cbfe892b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbd0fc884819df47_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbd0fc884819df47_0 index 91ce673ed..85449329d 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbd0fc884819df47_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbd0fc884819df47_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbe94d3ee928a675_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbe94d3ee928a675_0 new file mode 100644 index 000000000..de65b149c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbe94d3ee928a675_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbe9f680376f4c7a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbe9f680376f4c7a_0 new file mode 100644 index 000000000..f1b98d600 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbe9f680376f4c7a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbf2d8c6baf962b9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbf2d8c6baf962b9_0 new file mode 100644 index 000000000..d6123738f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cbf2d8c6baf962b9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc0192b0ff9d1148_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc0192b0ff9d1148_0 new file mode 100644 index 000000000..e09bc3b8c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc0192b0ff9d1148_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc01cb35a918d9dd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc01cb35a918d9dd_0 new file mode 100644 index 000000000..9f0c09428 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc01cb35a918d9dd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc0de75b256348f3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc0de75b256348f3_0 new file mode 100644 index 000000000..c7c9a9eb3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc0de75b256348f3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc135a32746114c9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc135a32746114c9_0 new file mode 100644 index 000000000..701910330 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc135a32746114c9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc34fc171f0c5c59_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc34fc171f0c5c59_0 new file mode 100644 index 000000000..0c9600054 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc34fc171f0c5c59_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc4b13a157b686eb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc4b13a157b686eb_0 new file mode 100644 index 000000000..707c63823 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc4b13a157b686eb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc4f894866e838db_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc4f894866e838db_0 new file mode 100644 index 000000000..7103ea1b6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc4f894866e838db_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc523b4de6184be6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc523b4de6184be6_0 index 734dcf0c9..f700febe6 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc523b4de6184be6_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc523b4de6184be6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc5bf625269d3266_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc5bf625269d3266_0 new file mode 100644 index 000000000..d650b485f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc5bf625269d3266_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc68a59ca77a231a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc68a59ca77a231a_0 new file mode 100644 index 000000000..e336cd39a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc68a59ca77a231a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc70d50000e9b312_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc70d50000e9b312_0 new file mode 100644 index 000000000..cade516c5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc70d50000e9b312_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc766e3f93536010_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc766e3f93536010_0 new file mode 100644 index 000000000..ddff2810f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc766e3f93536010_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc76fc97e357a4fa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc76fc97e357a4fa_0 new file mode 100644 index 000000000..08f9dd1c9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc76fc97e357a4fa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc7a229c484a0793_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc7a229c484a0793_0 new file mode 100644 index 000000000..ba73d6818 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cc7a229c484a0793_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ccaf3665b7d72345_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ccaf3665b7d72345_0 new file mode 100644 index 000000000..409f28bfa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ccaf3665b7d72345_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ccb114c893718f3f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ccb114c893718f3f_0 new file mode 100644 index 000000000..5036d6053 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ccb114c893718f3f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ccbd0f6a0014e0e2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ccbd0f6a0014e0e2_0 new file mode 100644 index 000000000..a844a290d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ccbd0f6a0014e0e2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cccd228100c440bf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cccd228100c440bf_0 new file mode 100644 index 000000000..66e82e271 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cccd228100c440bf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ccdd34399c8b393c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ccdd34399c8b393c_0 new file mode 100644 index 000000000..36b6c5b64 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ccdd34399c8b393c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ccf143552708fbff_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ccf143552708fbff_0 new file mode 100644 index 000000000..c2928ccee Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ccf143552708fbff_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ccfe134aefe58ec6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ccfe134aefe58ec6_0 new file mode 100644 index 000000000..3afb8806c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ccfe134aefe58ec6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd02b822a9e843fa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd02b822a9e843fa_0 new file mode 100644 index 000000000..edf728691 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd02b822a9e843fa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd1500ea9522da56_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd1500ea9522da56_0 new file mode 100644 index 000000000..963c4ffeb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd1500ea9522da56_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd1dc8503783937d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd1dc8503783937d_0 new file mode 100644 index 000000000..62192255c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd1dc8503783937d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd23c04afe8ea8c3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd23c04afe8ea8c3_0 new file mode 100644 index 000000000..086e4d63b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd23c04afe8ea8c3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd27c5c8bb139aa9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd27c5c8bb139aa9_0 new file mode 100644 index 000000000..76520c765 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd27c5c8bb139aa9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd2a67a77a6b7daf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd2a67a77a6b7daf_0 index 7b7f4acb6..0299351f8 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd2a67a77a6b7daf_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd2a67a77a6b7daf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd2ad3c3b8177f62_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd2ad3c3b8177f62_0 new file mode 100644 index 000000000..70bdee4f3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd2ad3c3b8177f62_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd3bc461eb3d23fa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd3bc461eb3d23fa_0 new file mode 100644 index 000000000..18a27180f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd3bc461eb3d23fa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd48b715f78fe7f5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd48b715f78fe7f5_0 new file mode 100644 index 000000000..19a5239a1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd48b715f78fe7f5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd64a14c7ded7f72_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd64a14c7ded7f72_0 new file mode 100644 index 000000000..32583ffbb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd64a14c7ded7f72_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd7a2a9f20479004_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd7a2a9f20479004_0 new file mode 100644 index 000000000..f6cf82d8c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd7a2a9f20479004_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd802d186e4a8baa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd802d186e4a8baa_0 new file mode 100644 index 000000000..73d8c8945 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd802d186e4a8baa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd81b7d295715b02_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd81b7d295715b02_0 new file mode 100644 index 000000000..4151aae8a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd81b7d295715b02_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd83368f42145252_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd83368f42145252_0 new file mode 100644 index 000000000..429f96e11 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd83368f42145252_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd948f9db79ad9a3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd948f9db79ad9a3_0 new file mode 100644 index 000000000..2d1a61794 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cd948f9db79ad9a3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cda0dcabee714a64_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cda0dcabee714a64_0 index c1c821ca4..a21abfb50 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cda0dcabee714a64_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cda0dcabee714a64_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cdabf5869c240e4b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cdabf5869c240e4b_0 new file mode 100644 index 000000000..3de5e5367 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cdabf5869c240e4b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cdd14cacef392676_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cdd14cacef392676_0 new file mode 100644 index 000000000..671728fcb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cdd14cacef392676_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cde8a0b9958c9a70_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cde8a0b9958c9a70_0 new file mode 100644 index 000000000..392e96646 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cde8a0b9958c9a70_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cded5f0b01f78687_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cded5f0b01f78687_0 new file mode 100644 index 000000000..813c07638 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cded5f0b01f78687_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cdf7d4a8ab9cf01c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cdf7d4a8ab9cf01c_0 new file mode 100644 index 000000000..071e8c088 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cdf7d4a8ab9cf01c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cdfd75fdda236a9a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cdfd75fdda236a9a_0 new file mode 100644 index 000000000..32aa32891 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cdfd75fdda236a9a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ce1d010086c194fa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ce1d010086c194fa_0 new file mode 100644 index 000000000..7bac7c440 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ce1d010086c194fa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ce312bbabdbb21fa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ce312bbabdbb21fa_0 new file mode 100644 index 000000000..38a4a46b5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ce312bbabdbb21fa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ce355a2b898ad01e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ce355a2b898ad01e_0 new file mode 100644 index 000000000..d9f616b8a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ce355a2b898ad01e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ce7f23b4336a183b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ce7f23b4336a183b_0 new file mode 100644 index 000000000..ad6c3c8a6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ce7f23b4336a183b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cea6abaec2faf56d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cea6abaec2faf56d_0 new file mode 100644 index 000000000..1d16a6944 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cea6abaec2faf56d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cea915c1b862ceca_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cea915c1b862ceca_0 new file mode 100644 index 000000000..9066b70d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cea915c1b862ceca_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ceadeae2f2d0cab3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ceadeae2f2d0cab3_0 new file mode 100644 index 000000000..d6200271f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ceadeae2f2d0cab3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ceaf86019684a30d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ceaf86019684a30d_0 new file mode 100644 index 000000000..f30beb90f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ceaf86019684a30d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ceb7456949135517_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ceb7456949135517_0 new file mode 100644 index 000000000..cba3982a1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ceb7456949135517_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ced5b877cd3e7159_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ced5b877cd3e7159_0 new file mode 100644 index 000000000..0addb11c4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ced5b877cd3e7159_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cee9b981988ae136_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cee9b981988ae136_0 new file mode 100644 index 000000000..1aad5611e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cee9b981988ae136_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf05004af3ff55d7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf05004af3ff55d7_0 new file mode 100644 index 000000000..a832c3ee0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf05004af3ff55d7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf1125badeee020e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf1125badeee020e_0 new file mode 100644 index 000000000..e9086f526 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf1125badeee020e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf2bb2f32bb75021_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf2bb2f32bb75021_0 new file mode 100644 index 000000000..4ae341506 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf2bb2f32bb75021_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf32c742f7fac540_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf32c742f7fac540_0 new file mode 100644 index 000000000..50079c963 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf32c742f7fac540_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf3351a6d6dde224_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf3351a6d6dde224_0 new file mode 100644 index 000000000..cfaf89644 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf3351a6d6dde224_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf41a672279e409f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf41a672279e409f_0 new file mode 100644 index 000000000..89a6b11bd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf41a672279e409f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf4834e4398e8f94_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf4834e4398e8f94_0 new file mode 100644 index 000000000..229652454 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf4834e4398e8f94_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf4ddaa03baa0b73_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf4ddaa03baa0b73_0 new file mode 100644 index 000000000..6c0e534c2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf4ddaa03baa0b73_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf5579170e579356_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf5579170e579356_0 new file mode 100644 index 000000000..e12573e04 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf5579170e579356_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf5b407b2d251999_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf5b407b2d251999_0 new file mode 100644 index 000000000..412f90b57 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf5b407b2d251999_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf63cb1f43142f39_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf63cb1f43142f39_0 new file mode 100644 index 000000000..cfa15ce33 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf63cb1f43142f39_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf6be2b72d3a8963_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf6be2b72d3a8963_0 new file mode 100644 index 000000000..4dc3c1fff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf6be2b72d3a8963_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf818610e815c7cc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf818610e815c7cc_0 new file mode 100644 index 000000000..a42e115ec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf818610e815c7cc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf87aa60a7115cd8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf87aa60a7115cd8_0 new file mode 100644 index 000000000..88b3c1bcc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf87aa60a7115cd8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf8b2e86202303c2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf8b2e86202303c2_0 new file mode 100644 index 000000000..bd2170f5f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf8b2e86202303c2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf8b5b0c9d94ec81_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf8b5b0c9d94ec81_0 new file mode 100644 index 000000000..c2c77d42a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf8b5b0c9d94ec81_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf96136dcec918c8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf96136dcec918c8_0 new file mode 100644 index 000000000..be2c0daef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cf96136dcec918c8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cfd00fa79fba0d6f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cfd00fa79fba0d6f_0 new file mode 100644 index 000000000..eadf43bb8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cfd00fa79fba0d6f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/cffc2ecfc9b13c38_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cffc2ecfc9b13c38_0 new file mode 100644 index 000000000..f33906346 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/cffc2ecfc9b13c38_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d029aac5cd668586_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d029aac5cd668586_0 new file mode 100644 index 000000000..5a40a8222 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d029aac5cd668586_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d02f2944767401b9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d02f2944767401b9_0 new file mode 100644 index 000000000..37302644e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d02f2944767401b9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d04010bd7409a12e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d04010bd7409a12e_0 new file mode 100644 index 000000000..76b7b3e87 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d04010bd7409a12e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d044417085d4b306_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d044417085d4b306_0 new file mode 100644 index 000000000..251979e79 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d044417085d4b306_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d04d8062ea466082_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d04d8062ea466082_0 new file mode 100644 index 000000000..df1bd324d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d04d8062ea466082_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d053b055ca1a0f54_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d053b055ca1a0f54_0 new file mode 100644 index 000000000..a977e2726 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d053b055ca1a0f54_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d05546434c726cda_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d05546434c726cda_0 new file mode 100644 index 000000000..8410d500c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d05546434c726cda_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d05aab38f316c6ff_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d05aab38f316c6ff_0 new file mode 100644 index 000000000..65a0d1102 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d05aab38f316c6ff_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d064f3218e9e61c9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d064f3218e9e61c9_0 new file mode 100644 index 000000000..a574da204 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d064f3218e9e61c9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d066a20e43b2a22d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d066a20e43b2a22d_0 new file mode 100644 index 000000000..1899ab05f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d066a20e43b2a22d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d06a0116ea8cb1bc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d06a0116ea8cb1bc_0 new file mode 100644 index 000000000..3a72971d1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d06a0116ea8cb1bc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d083186404bc243a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d083186404bc243a_0 new file mode 100644 index 000000000..243472479 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d083186404bc243a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d09251944934e81b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d09251944934e81b_0 new file mode 100644 index 000000000..3e42d4178 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d09251944934e81b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d095d2fcc93cf547_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d095d2fcc93cf547_0 new file mode 100644 index 000000000..57b81651e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d095d2fcc93cf547_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d09c80f3f34bed6b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d09c80f3f34bed6b_0 new file mode 100644 index 000000000..fc5905474 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d09c80f3f34bed6b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d0a75f154c65ca45_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d0a75f154c65ca45_0 new file mode 100644 index 000000000..dfe502929 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d0a75f154c65ca45_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d0b36c7fdcb06af2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d0b36c7fdcb06af2_0 new file mode 100644 index 000000000..c5a2654df Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d0b36c7fdcb06af2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d0b822b7b21c563d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d0b822b7b21c563d_0 new file mode 100644 index 000000000..2bf259bfe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d0b822b7b21c563d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d0bd81f2b035aa56_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d0bd81f2b035aa56_0 new file mode 100644 index 000000000..804ba9311 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d0bd81f2b035aa56_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d0cce613057b8317_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d0cce613057b8317_0 new file mode 100644 index 000000000..8cbc51f5b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d0cce613057b8317_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d11911218f5771ea_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d11911218f5771ea_0 new file mode 100644 index 000000000..8949a0598 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d11911218f5771ea_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d13f1ecdc1af99b8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d13f1ecdc1af99b8_0 new file mode 100644 index 000000000..0cde66145 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d13f1ecdc1af99b8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d14e055c6d8e1f09_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d14e055c6d8e1f09_0 new file mode 100644 index 000000000..38d500e2d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d14e055c6d8e1f09_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d15aeb6ba3718bda_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d15aeb6ba3718bda_0 new file mode 100644 index 000000000..574cecc8c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d15aeb6ba3718bda_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d15ec56ebf89b259_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d15ec56ebf89b259_0 new file mode 100644 index 000000000..4f41a66a3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d15ec56ebf89b259_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1682444482c5605_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1682444482c5605_0 new file mode 100644 index 000000000..8958aac92 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1682444482c5605_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d16dd47ac0a4928a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d16dd47ac0a4928a_0 new file mode 100644 index 000000000..ad7ba2baf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d16dd47ac0a4928a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d18e04f2ee5b2bfe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d18e04f2ee5b2bfe_0 new file mode 100644 index 000000000..d5e10c33b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d18e04f2ee5b2bfe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1a8ee8507387b8f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1a8ee8507387b8f_0 new file mode 100644 index 000000000..802dce031 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1a8ee8507387b8f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1b5ca94ae1a8699_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1b5ca94ae1a8699_0 new file mode 100644 index 000000000..5f4080995 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1b5ca94ae1a8699_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1b9c28603e35da6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1b9c28603e35da6_0 new file mode 100644 index 000000000..65a27f62c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1b9c28603e35da6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1bb5ea9b3e05ac4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1bb5ea9b3e05ac4_0 new file mode 100644 index 000000000..1ecd54711 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1bb5ea9b3e05ac4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1c0b4a9d0b0b4c5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1c0b4a9d0b0b4c5_0 new file mode 100644 index 000000000..855ec339b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1c0b4a9d0b0b4c5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1cb92c287d060ad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1cb92c287d060ad_0 new file mode 100644 index 000000000..c4175c934 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1cb92c287d060ad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1e0264e49877953_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1e0264e49877953_0 new file mode 100644 index 000000000..4f2d10358 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1e0264e49877953_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1e99dbdfd62c52e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1e99dbdfd62c52e_0 new file mode 100644 index 000000000..1129bebe5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1e99dbdfd62c52e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1eb3739afe6cfc2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1eb3739afe6cfc2_0 index 5f05da636..df61c9bd7 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1eb3739afe6cfc2_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1eb3739afe6cfc2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1f4f16b946e6c85_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1f4f16b946e6c85_0 new file mode 100644 index 000000000..008ffb319 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1f4f16b946e6c85_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1f8941968749b3a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1f8941968749b3a_0 new file mode 100644 index 000000000..af2b8370b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d1f8941968749b3a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d22a00621fb43003_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d22a00621fb43003_0 new file mode 100644 index 000000000..39d0d0726 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d22a00621fb43003_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d239ab801e00e54a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d239ab801e00e54a_0 new file mode 100644 index 000000000..60edd1cc6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d239ab801e00e54a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d25b53c3820c6e7b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d25b53c3820c6e7b_0 new file mode 100644 index 000000000..7f547795a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d25b53c3820c6e7b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d25f0a407b8f8d9f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d25f0a407b8f8d9f_0 index 5c021da68..508a7c412 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d25f0a407b8f8d9f_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d25f0a407b8f8d9f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2677d55f0aa2eef_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2677d55f0aa2eef_0 new file mode 100644 index 000000000..8b7bf69a1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2677d55f0aa2eef_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d292b74817c35211_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d292b74817c35211_0 new file mode 100644 index 000000000..b3fbc8eca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d292b74817c35211_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2ae55c2579c4fb7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2ae55c2579c4fb7_0 new file mode 100644 index 000000000..e7e0ebb64 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2ae55c2579c4fb7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2b00c2b2ae80978_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2b00c2b2ae80978_0 new file mode 100644 index 000000000..ee41ef773 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2b00c2b2ae80978_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2bebeda218eb1a7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2bebeda218eb1a7_0 new file mode 100644 index 000000000..11570a570 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2bebeda218eb1a7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2c06431aa03ddf5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2c06431aa03ddf5_0 new file mode 100644 index 000000000..3eb99912c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2c06431aa03ddf5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2d45d68bdd4d6c5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2d45d68bdd4d6c5_0 new file mode 100644 index 000000000..b0f832780 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2d45d68bdd4d6c5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2f81484e9648c07_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2f81484e9648c07_0 new file mode 100644 index 000000000..e1a898a65 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2f81484e9648c07_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2fd7125406433cd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2fd7125406433cd_0 new file mode 100644 index 000000000..4ff2f04d2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d2fd7125406433cd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3019cbfd2e7c057_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3019cbfd2e7c057_0 new file mode 100644 index 000000000..415dc03ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3019cbfd2e7c057_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d326601a85c39eda_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d326601a85c39eda_0 new file mode 100644 index 000000000..6d0ba851b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d326601a85c39eda_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d34f1c13651e87b7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d34f1c13651e87b7_0 new file mode 100644 index 000000000..fbeac3215 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d34f1c13651e87b7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3829242d1219047_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3829242d1219047_0 new file mode 100644 index 000000000..cdd789826 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3829242d1219047_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d38489526af9f433_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d38489526af9f433_0 new file mode 100644 index 000000000..07d3c6401 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d38489526af9f433_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d38acd8b9d1ce153_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d38acd8b9d1ce153_0 new file mode 100644 index 000000000..43b1251e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d38acd8b9d1ce153_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d39dcaabdabde3eb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d39dcaabdabde3eb_0 new file mode 100644 index 000000000..7b0bfd382 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d39dcaabdabde3eb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3a5c62f336a0d8e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3a5c62f336a0d8e_0 new file mode 100644 index 000000000..13be9325c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3a5c62f336a0d8e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3a9c5535aec54db_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3a9c5535aec54db_0 new file mode 100644 index 000000000..16ed76a91 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3a9c5535aec54db_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3aed29f8ca17e55_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3aed29f8ca17e55_0 new file mode 100644 index 000000000..5a4b7ccc8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3aed29f8ca17e55_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3c26c9cacd19d1f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3c26c9cacd19d1f_0 new file mode 100644 index 000000000..2851bccbd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3c26c9cacd19d1f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3ca5a40874c9d33_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3ca5a40874c9d33_0 new file mode 100644 index 000000000..29f1d7e95 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3ca5a40874c9d33_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3cda3d79d988ad1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3cda3d79d988ad1_0 new file mode 100644 index 000000000..8a22bbad2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3cda3d79d988ad1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3d8207ca0c56c11_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3d8207ca0c56c11_0 new file mode 100644 index 000000000..4a3716b8f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3d8207ca0c56c11_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3da6394259af25b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3da6394259af25b_0 new file mode 100644 index 000000000..5100014d9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3da6394259af25b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3db776930052972_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3db776930052972_0 new file mode 100644 index 000000000..71e0443d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3db776930052972_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3e407e4f394d822_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3e407e4f394d822_0 new file mode 100644 index 000000000..702aef4db Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3e407e4f394d822_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3ed20df90463fc9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3ed20df90463fc9_0 new file mode 100644 index 000000000..83c388df8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d3ed20df90463fc9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d405fd081da44801_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d405fd081da44801_0 new file mode 100644 index 000000000..a3ec5403e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d405fd081da44801_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d41862d17d361a17_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d41862d17d361a17_0 new file mode 100644 index 000000000..38d092e20 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d41862d17d361a17_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d428bce5e5936076_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d428bce5e5936076_0 new file mode 100644 index 000000000..844d1395d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d428bce5e5936076_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4315435023d665a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4315435023d665a_0 new file mode 100644 index 000000000..6f8edf860 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4315435023d665a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d435738dbe3f6895_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d435738dbe3f6895_0 new file mode 100644 index 000000000..b7cb3bc5f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d435738dbe3f6895_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d43df30b6ffd7da5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d43df30b6ffd7da5_0 new file mode 100644 index 000000000..7b9c9e140 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d43df30b6ffd7da5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4526bc572331d28_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4526bc572331d28_0 new file mode 100644 index 000000000..3fa2532ae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4526bc572331d28_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d46b8589f2a524d8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d46b8589f2a524d8_0 new file mode 100644 index 000000000..4722381db Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d46b8589f2a524d8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4830a8bad5fd5ca_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4830a8bad5fd5ca_0 new file mode 100644 index 000000000..aee570fa4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4830a8bad5fd5ca_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d48405f6c9367382_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d48405f6c9367382_0 new file mode 100644 index 000000000..010c18571 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d48405f6c9367382_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d48e96b1e6b1a2dc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d48e96b1e6b1a2dc_0 new file mode 100644 index 000000000..cc54d9594 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d48e96b1e6b1a2dc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d491b4c8445db4a3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d491b4c8445db4a3_0 new file mode 100644 index 000000000..9d439c61e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d491b4c8445db4a3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4a87b8b08305388_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4a87b8b08305388_0 new file mode 100644 index 000000000..2ab2f9ec4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4a87b8b08305388_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4ab4202bb1dd54a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4ab4202bb1dd54a_0 new file mode 100644 index 000000000..e1e8204f1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4ab4202bb1dd54a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4c29e778d7f5dae_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4c29e778d7f5dae_0 new file mode 100644 index 000000000..147deb678 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4c29e778d7f5dae_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4c3c73ea08592a2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4c3c73ea08592a2_0 new file mode 100644 index 000000000..5d1123e83 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4c3c73ea08592a2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4cb71d19cdaa9ed_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4cb71d19cdaa9ed_0 new file mode 100644 index 000000000..5a8e1a759 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4cb71d19cdaa9ed_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4cfcb631a5068ce_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4cfcb631a5068ce_0 new file mode 100644 index 000000000..6d679f927 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4cfcb631a5068ce_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4d316c8ccd5867e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4d316c8ccd5867e_0 new file mode 100644 index 000000000..ae1bd6794 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d4d316c8ccd5867e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d508087f98506792_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d508087f98506792_0 new file mode 100644 index 000000000..8b604255c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d508087f98506792_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5206b6976b4c19c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5206b6976b4c19c_0 new file mode 100644 index 000000000..cde9e46dc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5206b6976b4c19c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d536b2c8bf38b85d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d536b2c8bf38b85d_0 new file mode 100644 index 000000000..d45cbe1fc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d536b2c8bf38b85d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d55237f3901ea805_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d55237f3901ea805_0 new file mode 100644 index 000000000..7014ef72c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d55237f3901ea805_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d58f579b4cc62a7b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d58f579b4cc62a7b_0 new file mode 100644 index 000000000..cbde4f096 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d58f579b4cc62a7b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d592adf750b9b443_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d592adf750b9b443_0 new file mode 100644 index 000000000..6cf68335b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d592adf750b9b443_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5982c304aac492d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5982c304aac492d_0 new file mode 100644 index 000000000..7e011d478 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5982c304aac492d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d59986d604d42bc0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d59986d604d42bc0_0 index 5a04cdd15..aaab247c5 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d59986d604d42bc0_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d59986d604d42bc0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5ba3525cdd31b4c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5ba3525cdd31b4c_0 new file mode 100644 index 000000000..ebdd814a0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5ba3525cdd31b4c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5bbbf5a638f26df_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5bbbf5a638f26df_0 new file mode 100644 index 000000000..1394545c0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5bbbf5a638f26df_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5be4bc629e066c6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5be4bc629e066c6_0 new file mode 100644 index 000000000..4435dfae3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5be4bc629e066c6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5c48efa6f19f2e0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5c48efa6f19f2e0_0 new file mode 100644 index 000000000..9e27c7b13 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5c48efa6f19f2e0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5d03362ee39bf1a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5d03362ee39bf1a_0 new file mode 100644 index 000000000..637b3de99 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5d03362ee39bf1a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5d7fb0858b37d5c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5d7fb0858b37d5c_0 new file mode 100644 index 000000000..5a72b3ba9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5d7fb0858b37d5c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5dca5ca54ad0899_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5dca5ca54ad0899_0 new file mode 100644 index 000000000..ffca68536 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5dca5ca54ad0899_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5fb68db7e8d2609_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5fb68db7e8d2609_0 new file mode 100644 index 000000000..de40badef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5fb68db7e8d2609_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5fdea5d1107104a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5fdea5d1107104a_0 new file mode 100644 index 000000000..151746705 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d5fdea5d1107104a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d620e3d09d8cf60b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d620e3d09d8cf60b_0 new file mode 100644 index 000000000..e38ecf1b5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d620e3d09d8cf60b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d637a0a5703e9bcb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d637a0a5703e9bcb_0 new file mode 100644 index 000000000..ff7022fa8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d637a0a5703e9bcb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d637d450a4cea874_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d637d450a4cea874_0 new file mode 100644 index 000000000..a93d6948e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d637d450a4cea874_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d63d4c026e928e11_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d63d4c026e928e11_0 new file mode 100644 index 000000000..b17f956c5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d63d4c026e928e11_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d64588a5484e97ed_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d64588a5484e97ed_0 new file mode 100644 index 000000000..57da83386 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d64588a5484e97ed_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d645b38a746a72df_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d645b38a746a72df_0 new file mode 100644 index 000000000..0286c2aff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d645b38a746a72df_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d660b1414690e7f7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d660b1414690e7f7_0 new file mode 100644 index 000000000..17f087443 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d660b1414690e7f7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6671f9cbb5a3318_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6671f9cbb5a3318_0 new file mode 100644 index 000000000..34a90ec3f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6671f9cbb5a3318_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d667801c320c6b3a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d667801c320c6b3a_0 index 7b585f0c5..1586268d1 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d667801c320c6b3a_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d667801c320c6b3a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d67a606a158da98d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d67a606a158da98d_0 new file mode 100644 index 000000000..3badd9719 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d67a606a158da98d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d684e5f3bf390f65_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d684e5f3bf390f65_0 new file mode 100644 index 000000000..6ee3fc7d1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d684e5f3bf390f65_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6941e350c038efa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6941e350c038efa_0 new file mode 100644 index 000000000..b5062f5b2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6941e350c038efa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d696c18717cf7a80_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d696c18717cf7a80_0 new file mode 100644 index 000000000..14de580ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d696c18717cf7a80_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6aa9f0adf701f8f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6aa9f0adf701f8f_0 new file mode 100644 index 000000000..f086be9b4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6aa9f0adf701f8f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6ab671e5895dcfd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6ab671e5895dcfd_0 new file mode 100644 index 000000000..1684f28dc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6ab671e5895dcfd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6abb5c0f9e20e62_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6abb5c0f9e20e62_0 new file mode 100644 index 000000000..56c26703d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6abb5c0f9e20e62_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6b2ff24614fd052_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6b2ff24614fd052_0 new file mode 100644 index 000000000..2738e40a5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6b2ff24614fd052_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6b7ef0ac5632178_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6b7ef0ac5632178_0 new file mode 100644 index 000000000..8022d43b1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6b7ef0ac5632178_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6bcb07ff049a9d7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6bcb07ff049a9d7_0 new file mode 100644 index 000000000..9a84d7c27 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6bcb07ff049a9d7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6bd130a008ea3ad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6bd130a008ea3ad_0 new file mode 100644 index 000000000..3ce5e0ef9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6bd130a008ea3ad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6c155aac33d6a43_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6c155aac33d6a43_0 new file mode 100644 index 000000000..f27aab253 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6c155aac33d6a43_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6c59b259271a51c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6c59b259271a51c_0 new file mode 100644 index 000000000..6e2880cfb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6c59b259271a51c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6d1c249297f77ba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6d1c249297f77ba_0 new file mode 100644 index 000000000..91abbbe73 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6d1c249297f77ba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6d8df6a676a5fdf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6d8df6a676a5fdf_0 new file mode 100644 index 000000000..1bee87bb7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6d8df6a676a5fdf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6e00b76cf6c7091_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6e00b76cf6c7091_0 new file mode 100644 index 000000000..56a5fad28 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6e00b76cf6c7091_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6e227db4c3a40ce_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6e227db4c3a40ce_0 new file mode 100644 index 000000000..01e066302 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6e227db4c3a40ce_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6e9c8a27d64a6e2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6e9c8a27d64a6e2_0 new file mode 100644 index 000000000..45884f75d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6e9c8a27d64a6e2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6efd75686d52eb2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6efd75686d52eb2_0 new file mode 100644 index 000000000..7300319c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6efd75686d52eb2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6f18f790e8f3cc9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6f18f790e8f3cc9_0 new file mode 100644 index 000000000..cfad15753 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d6f18f790e8f3cc9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d714f64612d451e2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d714f64612d451e2_0 new file mode 100644 index 000000000..0e13c8f8c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d714f64612d451e2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d738a4255f3a571d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d738a4255f3a571d_0 new file mode 100644 index 000000000..d83a7cd4f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d738a4255f3a571d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d73dccd3fcbc5434_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d73dccd3fcbc5434_0 new file mode 100644 index 000000000..a87324af5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d73dccd3fcbc5434_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d751d02547787b87_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d751d02547787b87_0 new file mode 100644 index 000000000..699601d78 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d751d02547787b87_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7539e74aeda5182_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7539e74aeda5182_0 new file mode 100644 index 000000000..120758e64 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7539e74aeda5182_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d75aa12b7c1db104_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d75aa12b7c1db104_0 new file mode 100644 index 000000000..eae4500eb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d75aa12b7c1db104_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d76bf12303adffae_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d76bf12303adffae_0 new file mode 100644 index 000000000..b71d03750 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d76bf12303adffae_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d773abc4e4d685d0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d773abc4e4d685d0_0 new file mode 100644 index 000000000..4457a713d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d773abc4e4d685d0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d787b47f0e91d843_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d787b47f0e91d843_0 new file mode 100644 index 000000000..f1b51eaa6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d787b47f0e91d843_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7b3b27161c7a5e9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7b3b27161c7a5e9_0 new file mode 100644 index 000000000..3b216e5c0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7b3b27161c7a5e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7b548a862cd4ced_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7b548a862cd4ced_0 new file mode 100644 index 000000000..01f37adc5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7b548a862cd4ced_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7b855512a87cdee_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7b855512a87cdee_0 new file mode 100644 index 000000000..574bbdab7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7b855512a87cdee_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7c64eee94475e5a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7c64eee94475e5a_0 new file mode 100644 index 000000000..2e03d6ceb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7c64eee94475e5a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7c7bbfe2ff79e3c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7c7bbfe2ff79e3c_0 new file mode 100644 index 000000000..e5509fed1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7c7bbfe2ff79e3c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7cbe8dfa1ce421f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7cbe8dfa1ce421f_0 new file mode 100644 index 000000000..f15b74fd5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7cbe8dfa1ce421f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7e679b25a09b94a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7e679b25a09b94a_0 new file mode 100644 index 000000000..d9f9fd156 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7e679b25a09b94a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7eb1992bd04e694_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7eb1992bd04e694_0 new file mode 100644 index 000000000..ba36bce31 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d7eb1992bd04e694_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d816930d1a028074_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d816930d1a028074_0 new file mode 100644 index 000000000..008ca461c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d816930d1a028074_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d817a85b05ac2e7e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d817a85b05ac2e7e_0 new file mode 100644 index 000000000..0d0247fb1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d817a85b05ac2e7e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8200f7a94424052_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8200f7a94424052_0 new file mode 100644 index 000000000..95b64d144 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8200f7a94424052_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d84bac085b9c6f3a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d84bac085b9c6f3a_0 new file mode 100644 index 000000000..6195dcde2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d84bac085b9c6f3a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d86cb8253568db34_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d86cb8253568db34_0 new file mode 100644 index 000000000..a769c5797 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d86cb8253568db34_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d86eed805245c341_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d86eed805245c341_0 new file mode 100644 index 000000000..a03c802e9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d86eed805245c341_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d870cee0538bd3aa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d870cee0538bd3aa_0 new file mode 100644 index 000000000..bbb140122 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d870cee0538bd3aa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d88b203ab9ad52fe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d88b203ab9ad52fe_0 new file mode 100644 index 000000000..c367685f5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d88b203ab9ad52fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8961a1eb08f306a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8961a1eb08f306a_0 new file mode 100644 index 000000000..7fc0a4f1a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8961a1eb08f306a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8a03fc94a7b9cdb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8a03fc94a7b9cdb_0 new file mode 100644 index 000000000..f37e169d2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8a03fc94a7b9cdb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8a20abd27df5a63_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8a20abd27df5a63_0 new file mode 100644 index 000000000..1e508de96 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8a20abd27df5a63_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8a6e6290f53dad3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8a6e6290f53dad3_0 new file mode 100644 index 000000000..533226bea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8a6e6290f53dad3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8b07fa35d058383_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8b07fa35d058383_0 new file mode 100644 index 000000000..4de0b90ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8b07fa35d058383_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8b1b787e6627ca4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8b1b787e6627ca4_0 new file mode 100644 index 000000000..b4515485a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8b1b787e6627ca4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8b2cf3b4f6704a6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8b2cf3b4f6704a6_0 new file mode 100644 index 000000000..cb84da56c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8b2cf3b4f6704a6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8b3e8b942bb77b7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8b3e8b942bb77b7_0 new file mode 100644 index 000000000..912652187 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8b3e8b942bb77b7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8c2438a9e06f1c0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8c2438a9e06f1c0_0 new file mode 100644 index 000000000..5eef369e6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8c2438a9e06f1c0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8c591b1b43cef7e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8c591b1b43cef7e_0 new file mode 100644 index 000000000..07bc18845 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8c591b1b43cef7e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8cc9e06e745ce15_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8cc9e06e745ce15_0 new file mode 100644 index 000000000..0f4c3a239 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8cc9e06e745ce15_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8cf4dc721b00a4b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8cf4dc721b00a4b_0 new file mode 100644 index 000000000..0623a2a07 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8cf4dc721b00a4b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8d299462c541d5a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8d299462c541d5a_0 new file mode 100644 index 000000000..aa7f2d683 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8d299462c541d5a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8d4cc1f8645b2bc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8d4cc1f8645b2bc_0 new file mode 100644 index 000000000..b66ca842c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8d4cc1f8645b2bc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8ea5d4fc7ab6d1d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8ea5d4fc7ab6d1d_0 new file mode 100644 index 000000000..4d5fa5f81 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d8ea5d4fc7ab6d1d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9013650747ec1bd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9013650747ec1bd_0 new file mode 100644 index 000000000..ec92b0ffa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9013650747ec1bd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9264857891f7e61_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9264857891f7e61_0 new file mode 100644 index 000000000..499e7c451 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9264857891f7e61_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d92e7fc9237f3ef5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d92e7fc9237f3ef5_0 new file mode 100644 index 000000000..39f193bc9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d92e7fc9237f3ef5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d933f6436346d353_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d933f6436346d353_0 new file mode 100644 index 000000000..6276a7979 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d933f6436346d353_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d968e7459258e651_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d968e7459258e651_0 new file mode 100644 index 000000000..4ae166166 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d968e7459258e651_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9773f1663bee975_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9773f1663bee975_0 new file mode 100644 index 000000000..0f81d6657 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9773f1663bee975_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9851ddc2b0dfacc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9851ddc2b0dfacc_0 index a2aa7563a..3c9677e06 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9851ddc2b0dfacc_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9851ddc2b0dfacc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d990e16d0f6e1d46_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d990e16d0f6e1d46_0 new file mode 100644 index 000000000..963a4eedf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d990e16d0f6e1d46_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d99ff57d8fddcf25_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d99ff57d8fddcf25_0 new file mode 100644 index 000000000..0bbacc707 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d99ff57d8fddcf25_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9ac7782f9c75583_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9ac7782f9c75583_0 new file mode 100644 index 000000000..a83de7b8f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9ac7782f9c75583_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9b16c5e29b27b48_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9b16c5e29b27b48_0 new file mode 100644 index 000000000..854cc1319 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9b16c5e29b27b48_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9c56ab453d4673b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9c56ab453d4673b_0 new file mode 100644 index 000000000..a3c366eae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9c56ab453d4673b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9e0cb3ef1db4802_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9e0cb3ef1db4802_0 new file mode 100644 index 000000000..d9647d9c5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9e0cb3ef1db4802_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9fa881eddd23477_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9fa881eddd23477_0 new file mode 100644 index 000000000..501daa0b9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/d9fa881eddd23477_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/da0275bd634a8011_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/da0275bd634a8011_0 index e1bba229b..c2bb766aa 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/da0275bd634a8011_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/da0275bd634a8011_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/da0b972d8b1ca971_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/da0b972d8b1ca971_0 index 22a6c4688..250013ce1 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/da0b972d8b1ca971_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/da0b972d8b1ca971_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/da0fe0e738fdcfcf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/da0fe0e738fdcfcf_0 new file mode 100644 index 000000000..92643af6a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/da0fe0e738fdcfcf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/da1a00467cf67457_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/da1a00467cf67457_0 new file mode 100644 index 000000000..57abb03bc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/da1a00467cf67457_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/da32c32815558506_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/da32c32815558506_0 new file mode 100644 index 000000000..9a014d99f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/da32c32815558506_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/da47bc2585e496f3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/da47bc2585e496f3_0 new file mode 100644 index 000000000..cb952c3c8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/da47bc2585e496f3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/da6411ac9d8f8e11_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/da6411ac9d8f8e11_0 new file mode 100644 index 000000000..78c448eb6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/da6411ac9d8f8e11_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/da891931c2978252_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/da891931c2978252_0 new file mode 100644 index 000000000..d6e208040 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/da891931c2978252_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/da921c69674a5f79_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/da921c69674a5f79_0 new file mode 100644 index 000000000..9fe912db0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/da921c69674a5f79_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/daf062004ecc2010_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/daf062004ecc2010_0 new file mode 100644 index 000000000..260854f6a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/daf062004ecc2010_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/db01be9ce432b3c6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/db01be9ce432b3c6_0 new file mode 100644 index 000000000..7f27745f3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/db01be9ce432b3c6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/db0e94159eeac215_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/db0e94159eeac215_0 new file mode 100644 index 000000000..c981f3f76 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/db0e94159eeac215_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/db106b75cdecc735_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/db106b75cdecc735_0 new file mode 100644 index 000000000..8fc78d38c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/db106b75cdecc735_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/db359190600ea872_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/db359190600ea872_0 new file mode 100644 index 000000000..bbf540a67 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/db359190600ea872_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/db45082b26e85f45_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/db45082b26e85f45_0 new file mode 100644 index 000000000..239356179 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/db45082b26e85f45_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/db6533ac128ed05f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/db6533ac128ed05f_0 new file mode 100644 index 000000000..14eb4f049 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/db6533ac128ed05f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/db6b22be704fe6fa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/db6b22be704fe6fa_0 new file mode 100644 index 000000000..d49976a9d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/db6b22be704fe6fa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/db6c544fd4cd3064_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/db6c544fd4cd3064_0 new file mode 100644 index 000000000..7ced3b573 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/db6c544fd4cd3064_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/db7d886e10e2703b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/db7d886e10e2703b_0 new file mode 100644 index 000000000..888e982e1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/db7d886e10e2703b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dba520fdbc65b9bc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dba520fdbc65b9bc_0 new file mode 100644 index 000000000..fca171ef6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dba520fdbc65b9bc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbadb42cb7fd5caf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbadb42cb7fd5caf_0 new file mode 100644 index 000000000..bd3628c9c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbadb42cb7fd5caf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbb139050ba43665_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbb139050ba43665_0 new file mode 100644 index 000000000..33553e68b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbb139050ba43665_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbb61d805aad2545_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbb61d805aad2545_0 new file mode 100644 index 000000000..be975a04d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbb61d805aad2545_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbe1558ad99779b1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbe1558ad99779b1_0 new file mode 100644 index 000000000..f81213503 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbe1558ad99779b1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbe57b492ed30fc5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbe57b492ed30fc5_0 new file mode 100644 index 000000000..8d040c911 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbe57b492ed30fc5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbe682afad56834a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbe682afad56834a_0 index 793ab0855..a5020c4f4 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbe682afad56834a_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbe682afad56834a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbee0e3c8d5dc79b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbee0e3c8d5dc79b_0 new file mode 100644 index 000000000..ca3c4dc4d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dbee0e3c8d5dc79b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc0caa9aae3e7eca_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc0caa9aae3e7eca_0 new file mode 100644 index 000000000..1f2bf46fb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc0caa9aae3e7eca_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc0da63cb1a2f06e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc0da63cb1a2f06e_0 index ec83123e0..a8a0a67ef 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc0da63cb1a2f06e_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc0da63cb1a2f06e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc24218449a1a58c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc24218449a1a58c_0 new file mode 100644 index 000000000..9da9c2554 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc24218449a1a58c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc3f7b82b72d5cea_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc3f7b82b72d5cea_0 new file mode 100644 index 000000000..7856c163e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc3f7b82b72d5cea_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc4a7a5bbb5e04d5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc4a7a5bbb5e04d5_0 new file mode 100644 index 000000000..2f3b3dcef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc4a7a5bbb5e04d5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc5002d2b70e0bd1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc5002d2b70e0bd1_0 new file mode 100644 index 000000000..57ed1a85b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc5002d2b70e0bd1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc666e6899b08e67_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc666e6899b08e67_0 new file mode 100644 index 000000000..805937ba1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc666e6899b08e67_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc6e2eb73928df3c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc6e2eb73928df3c_0 new file mode 100644 index 000000000..56bf71393 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc6e2eb73928df3c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc71353dc78e9449_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc71353dc78e9449_0 new file mode 100644 index 000000000..fe9a80b49 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dc71353dc78e9449_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dca2759d252caebb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dca2759d252caebb_0 new file mode 100644 index 000000000..b7ac8488d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dca2759d252caebb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcac2d25fc4a31f2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcac2d25fc4a31f2_0 new file mode 100644 index 000000000..399bed485 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcac2d25fc4a31f2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dccaf16efa66d6a6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dccaf16efa66d6a6_0 new file mode 100644 index 000000000..e01530cfa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dccaf16efa66d6a6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcd3e9d6fd3f0262_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcd3e9d6fd3f0262_0 new file mode 100644 index 000000000..f87ec455f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcd3e9d6fd3f0262_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcdc6fbfd5cc5b7c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcdc6fbfd5cc5b7c_0 new file mode 100644 index 000000000..ff7327575 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcdc6fbfd5cc5b7c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcdd54974d3b4c3b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcdd54974d3b4c3b_0 new file mode 100644 index 000000000..a6c298167 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcdd54974d3b4c3b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dce030332cdfdb02_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dce030332cdfdb02_0 new file mode 100644 index 000000000..4e3621ec7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dce030332cdfdb02_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dce22a6d4ec0eb3f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dce22a6d4ec0eb3f_0 new file mode 100644 index 000000000..2b4e02d5f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dce22a6d4ec0eb3f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dce6bc276674636f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dce6bc276674636f_0 new file mode 100644 index 000000000..f9ef7e87d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dce6bc276674636f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcec8c8ef89fde24_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcec8c8ef89fde24_0 new file mode 100644 index 000000000..b2a6a6501 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcec8c8ef89fde24_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcf62636bdf1b5f8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcf62636bdf1b5f8_0 new file mode 100644 index 000000000..3994d4f89 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcf62636bdf1b5f8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcff238a97843284_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcff238a97843284_0 new file mode 100644 index 000000000..227d1658e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dcff238a97843284_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dd0f51844b0fb3b9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dd0f51844b0fb3b9_0 new file mode 100644 index 000000000..763994160 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dd0f51844b0fb3b9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dd0fb7e0554f0f3d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dd0fb7e0554f0f3d_0 new file mode 100644 index 000000000..928b8aeab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dd0fb7e0554f0f3d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dd222d308647a15e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dd222d308647a15e_0 new file mode 100644 index 000000000..668a7b846 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dd222d308647a15e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dd2e931297fab94a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dd2e931297fab94a_0 new file mode 100644 index 000000000..d03ea0a5f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dd2e931297fab94a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dd62b194a87788fb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dd62b194a87788fb_0 new file mode 100644 index 000000000..d69d9dc6c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dd62b194a87788fb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dda2887682f9a753_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dda2887682f9a753_0 new file mode 100644 index 000000000..120b06fb3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dda2887682f9a753_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dda726ddb56fd672_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dda726ddb56fd672_0 new file mode 100644 index 000000000..08425785e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dda726ddb56fd672_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ddb1424ba3aa155f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ddb1424ba3aa155f_0 new file mode 100644 index 000000000..ab38cdc90 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ddb1424ba3aa155f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ddb722f53331a053_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ddb722f53331a053_0 new file mode 100644 index 000000000..c269e86d3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ddb722f53331a053_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dddb9036d0f4782c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dddb9036d0f4782c_0 new file mode 100644 index 000000000..746ec8cdc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dddb9036d0f4782c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dde32b01364ba1b2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dde32b01364ba1b2_0 new file mode 100644 index 000000000..09262dcda Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dde32b01364ba1b2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/de15b18f8558338c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de15b18f8558338c_0 new file mode 100644 index 000000000..945dcac59 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de15b18f8558338c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/de175b7dc67b61b3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de175b7dc67b61b3_0 new file mode 100644 index 000000000..25dd73189 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de175b7dc67b61b3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/de248150a001600a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de248150a001600a_0 new file mode 100644 index 000000000..102e3a3a4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de248150a001600a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/de3fbc1e1392663c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de3fbc1e1392663c_0 new file mode 100644 index 000000000..b8a3675c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de3fbc1e1392663c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/de45dc27795a0021_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de45dc27795a0021_0 index 26f1dfdcc..58313542d 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/de45dc27795a0021_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de45dc27795a0021_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/de4dbdf1d09367e6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de4dbdf1d09367e6_0 new file mode 100644 index 000000000..c871d2b7e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de4dbdf1d09367e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/de5220bf17bd7e57_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de5220bf17bd7e57_0 new file mode 100644 index 000000000..1ba9539f9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de5220bf17bd7e57_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/de57c079c9a89ae1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de57c079c9a89ae1_0 new file mode 100644 index 000000000..134ea471f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de57c079c9a89ae1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/de6519344ef1c099_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de6519344ef1c099_0 new file mode 100644 index 000000000..7aaa45479 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de6519344ef1c099_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/de6fb7017d698b0b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de6fb7017d698b0b_0 new file mode 100644 index 000000000..afb323baa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de6fb7017d698b0b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/de6fb7017d698b0b_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de6fb7017d698b0b_s new file mode 100644 index 000000000..5128ce671 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de6fb7017d698b0b_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/de721a92ef6785f6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de721a92ef6785f6_0 new file mode 100644 index 000000000..49ade3427 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de721a92ef6785f6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/de752e424f2d28d6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de752e424f2d28d6_0 new file mode 100644 index 000000000..cc242b97b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de752e424f2d28d6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/de75e63129aed8e1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de75e63129aed8e1_0 new file mode 100644 index 000000000..c616e4e03 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de75e63129aed8e1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/de88fae0cc5dcbcb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de88fae0cc5dcbcb_0 new file mode 100644 index 000000000..ca1d50a8d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de88fae0cc5dcbcb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/de8bf2b78fa3909d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de8bf2b78fa3909d_0 new file mode 100644 index 000000000..6564daaf0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/de8bf2b78fa3909d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dec10b5a1aac4095_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dec10b5a1aac4095_0 new file mode 100644 index 000000000..08fe38f06 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dec10b5a1aac4095_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/defaabfe95203734_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/defaabfe95203734_0 new file mode 100644 index 000000000..0d7145c8d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/defaabfe95203734_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/df0e16c95bab666b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/df0e16c95bab666b_0 new file mode 100644 index 000000000..f138b3db5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/df0e16c95bab666b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/df204f31a4086dc9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/df204f31a4086dc9_0 new file mode 100644 index 000000000..9ff4b14e7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/df204f31a4086dc9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/df2b102e9b4471ec_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/df2b102e9b4471ec_0 new file mode 100644 index 000000000..434578681 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/df2b102e9b4471ec_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/df45801e4a6cee52_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/df45801e4a6cee52_0 new file mode 100644 index 000000000..f33730798 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/df45801e4a6cee52_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/df67f0b1bc099f1f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/df67f0b1bc099f1f_0 new file mode 100644 index 000000000..c7c70a9ed Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/df67f0b1bc099f1f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/df74f72c5f756915_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/df74f72c5f756915_0 new file mode 100644 index 000000000..227be4df6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/df74f72c5f756915_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/df7c2df609cdd283_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/df7c2df609cdd283_0 new file mode 100644 index 000000000..049df0a05 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/df7c2df609cdd283_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/dfacae6b735cd4c0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dfacae6b735cd4c0_0 new file mode 100644 index 000000000..1e6c11b7f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/dfacae6b735cd4c0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e00d60b193cdab54_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e00d60b193cdab54_0 new file mode 100644 index 000000000..14b62958c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e00d60b193cdab54_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e00da51147ad977e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e00da51147ad977e_0 new file mode 100644 index 000000000..e4201c293 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e00da51147ad977e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e01e76f06b6bf6c0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e01e76f06b6bf6c0_0 new file mode 100644 index 000000000..d4a8f085e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e01e76f06b6bf6c0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e01f467f2f3b7879_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e01f467f2f3b7879_0 new file mode 100644 index 000000000..7bb68cf30 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e01f467f2f3b7879_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e040d1177e0f4c3c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e040d1177e0f4c3c_0 new file mode 100644 index 000000000..ebb144787 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e040d1177e0f4c3c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e04a8d7189b8558d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e04a8d7189b8558d_0 new file mode 100644 index 000000000..5603c7cbd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e04a8d7189b8558d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e08d5912fc1c0948_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e08d5912fc1c0948_0 new file mode 100644 index 000000000..3738a7440 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e08d5912fc1c0948_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e0979096f2b9cea9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e0979096f2b9cea9_0 new file mode 100644 index 000000000..3dd37cba5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e0979096f2b9cea9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e0a90e4b534014d3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e0a90e4b534014d3_0 new file mode 100644 index 000000000..2478578f0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e0a90e4b534014d3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e0a9492fa5a2f372_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e0a9492fa5a2f372_0 new file mode 100644 index 000000000..19a164b48 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e0a9492fa5a2f372_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e0b305429b343ad4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e0b305429b343ad4_0 new file mode 100644 index 000000000..117f7522f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e0b305429b343ad4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e0b8ace4f0f40e82_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e0b8ace4f0f40e82_0 new file mode 100644 index 000000000..544b19f37 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e0b8ace4f0f40e82_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e10d8e4f4c9c841b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e10d8e4f4c9c841b_0 new file mode 100644 index 000000000..f8cbe09ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e10d8e4f4c9c841b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e110a188f17c59ec_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e110a188f17c59ec_0 new file mode 100644 index 000000000..622f74bc7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e110a188f17c59ec_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e117359fc0375fd4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e117359fc0375fd4_0 new file mode 100644 index 000000000..89d422df3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e117359fc0375fd4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e12f18437eea57fe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e12f18437eea57fe_0 new file mode 100644 index 000000000..2af107717 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e12f18437eea57fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1461877d618d969_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1461877d618d969_0 new file mode 100644 index 000000000..3b257a8b8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1461877d618d969_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e14c7ad2ba1b0d07_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e14c7ad2ba1b0d07_0 new file mode 100644 index 000000000..189b1c5fb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e14c7ad2ba1b0d07_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e15c7f14e4182921_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e15c7f14e4182921_0 new file mode 100644 index 000000000..1c1e02955 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e15c7f14e4182921_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e15e329fa9a9143c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e15e329fa9a9143c_0 new file mode 100644 index 000000000..c12dc4d3a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e15e329fa9a9143c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e16086d6bb1ab9a4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e16086d6bb1ab9a4_0 new file mode 100644 index 000000000..ce3482e40 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e16086d6bb1ab9a4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e162749ef33b1627_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e162749ef33b1627_0 new file mode 100644 index 000000000..c1c60fdbc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e162749ef33b1627_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e16c00a0afcf7c57_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e16c00a0afcf7c57_0 new file mode 100644 index 000000000..11424ea6c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e16c00a0afcf7c57_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e186d8077ee56d2c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e186d8077ee56d2c_0 new file mode 100644 index 000000000..dc0dfbeb6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e186d8077ee56d2c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e19198c501710af5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e19198c501710af5_0 new file mode 100644 index 000000000..9929acc54 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e19198c501710af5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e19305e24808da2d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e19305e24808da2d_0 new file mode 100644 index 000000000..2d61d4c30 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e19305e24808da2d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1a4e3c782dd25ad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1a4e3c782dd25ad_0 new file mode 100644 index 000000000..c47e8f9b7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1a4e3c782dd25ad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1c1602c01e8191e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1c1602c01e8191e_0 new file mode 100644 index 000000000..481962e94 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1c1602c01e8191e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1c284945ef49c7f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1c284945ef49c7f_0 new file mode 100644 index 000000000..426d926ed Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1c284945ef49c7f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1c5a4e27a2b5475_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1c5a4e27a2b5475_0 new file mode 100644 index 000000000..768485811 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1c5a4e27a2b5475_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1d898b28db648b4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1d898b28db648b4_0 index caa5086a2..497371ec3 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1d898b28db648b4_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1d898b28db648b4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1ded28fb7b10ba0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1ded28fb7b10ba0_0 new file mode 100644 index 000000000..b825da96d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1ded28fb7b10ba0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1e16803067d45ed_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1e16803067d45ed_0 new file mode 100644 index 000000000..cf47e1e7f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1e16803067d45ed_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1ea8c8e28235665_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1ea8c8e28235665_0 new file mode 100644 index 000000000..85c95d844 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1ea8c8e28235665_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1f815c2f7111995_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1f815c2f7111995_0 new file mode 100644 index 000000000..5da98c55c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1f815c2f7111995_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1fc58ccd87e1f08_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1fc58ccd87e1f08_0 new file mode 100644 index 000000000..2498310e7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e1fc58ccd87e1f08_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e21b8f0958a4d9f0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e21b8f0958a4d9f0_0 new file mode 100644 index 000000000..3ce77d975 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e21b8f0958a4d9f0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e229971d80d3d4e3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e229971d80d3d4e3_0 new file mode 100644 index 000000000..e6af091eb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e229971d80d3d4e3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e23728e67453da2c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e23728e67453da2c_0 new file mode 100644 index 000000000..a60041107 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e23728e67453da2c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e24b608c429e61c9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e24b608c429e61c9_0 new file mode 100644 index 000000000..9abe60244 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e24b608c429e61c9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e269173e9259e437_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e269173e9259e437_0 new file mode 100644 index 000000000..ecfa48df8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e269173e9259e437_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e2a4302505096111_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e2a4302505096111_0 new file mode 100644 index 000000000..fc10e67ea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e2a4302505096111_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e2b08f9d1cd3c8d2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e2b08f9d1cd3c8d2_0 new file mode 100644 index 000000000..04d0fd4fd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e2b08f9d1cd3c8d2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e2b6ba679f793abf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e2b6ba679f793abf_0 new file mode 100644 index 000000000..b502ee1af Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e2b6ba679f793abf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e2c77834f9edbc6d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e2c77834f9edbc6d_0 new file mode 100644 index 000000000..1299f2cd0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e2c77834f9edbc6d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e2efe699c237007f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e2efe699c237007f_0 new file mode 100644 index 000000000..e336e27d4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e2efe699c237007f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e2f4b9657e2d5bbc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e2f4b9657e2d5bbc_0 new file mode 100644 index 000000000..1c4ae5555 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e2f4b9657e2d5bbc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e300a2b0193562c9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e300a2b0193562c9_0 new file mode 100644 index 000000000..231ce0e6c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e300a2b0193562c9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e30baf075e67e11a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e30baf075e67e11a_0 new file mode 100644 index 000000000..4d76b7d01 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e30baf075e67e11a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e30bf3ef2413360b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e30bf3ef2413360b_0 new file mode 100644 index 000000000..5bf46ccdf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e30bf3ef2413360b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e31ded5b103ebeb5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e31ded5b103ebeb5_0 new file mode 100644 index 000000000..cb018b496 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e31ded5b103ebeb5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e3597eaec1a4fd3c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e3597eaec1a4fd3c_0 new file mode 100644 index 000000000..4eea037bd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e3597eaec1a4fd3c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e35b2b2895964103_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e35b2b2895964103_0 new file mode 100644 index 000000000..f2fde6adf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e35b2b2895964103_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e36ade1a6ea48e7a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e36ade1a6ea48e7a_0 new file mode 100644 index 000000000..e3ec6f38c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e36ade1a6ea48e7a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e3963557eb0be782_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e3963557eb0be782_0 new file mode 100644 index 000000000..1745340b1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e3963557eb0be782_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e3a464fe97583c86_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e3a464fe97583c86_0 new file mode 100644 index 000000000..10a512d10 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e3a464fe97583c86_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e3d9184ec2ee710d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e3d9184ec2ee710d_0 new file mode 100644 index 000000000..1f0155555 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e3d9184ec2ee710d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e3e03cb8ab01e11e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e3e03cb8ab01e11e_0 new file mode 100644 index 000000000..8f5b193e8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e3e03cb8ab01e11e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e3ecbdf909b17659_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e3ecbdf909b17659_0 new file mode 100644 index 000000000..17ac2076b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e3ecbdf909b17659_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e40615d2eb4f20f6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e40615d2eb4f20f6_0 new file mode 100644 index 000000000..510299fb3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e40615d2eb4f20f6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e41411c643c87fcd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e41411c643c87fcd_0 new file mode 100644 index 000000000..c65817367 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e41411c643c87fcd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e44495d43052571c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e44495d43052571c_0 new file mode 100644 index 000000000..677a29e8f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e44495d43052571c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e448bb332af4e504_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e448bb332af4e504_0 new file mode 100644 index 000000000..d378f4acc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e448bb332af4e504_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e44ee31acc2a07d5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e44ee31acc2a07d5_0 new file mode 100644 index 000000000..a6d26cf16 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e44ee31acc2a07d5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e450e049d0509599_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e450e049d0509599_0 new file mode 100644 index 000000000..520c4a641 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e450e049d0509599_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e45ab9d42aec0ee2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e45ab9d42aec0ee2_0 new file mode 100644 index 000000000..2fcf7550d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e45ab9d42aec0ee2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e461d9cdc358a49b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e461d9cdc358a49b_0 new file mode 100644 index 000000000..328898caf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e461d9cdc358a49b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4797c82aeb37205_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4797c82aeb37205_0 new file mode 100644 index 000000000..e18b909ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4797c82aeb37205_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e480bc935e18af3c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e480bc935e18af3c_0 new file mode 100644 index 000000000..be4e812fb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e480bc935e18af3c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e48da56eaa6b943a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e48da56eaa6b943a_0 new file mode 100644 index 000000000..40fbe3726 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e48da56eaa6b943a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e497e2a015df679d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e497e2a015df679d_0 new file mode 100644 index 000000000..a527dbd9a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e497e2a015df679d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4a1d8f55ae13da0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4a1d8f55ae13da0_0 new file mode 100644 index 000000000..174ce3df7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4a1d8f55ae13da0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4afadfb346792f8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4afadfb346792f8_0 new file mode 100644 index 000000000..8fe81e38c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4afadfb346792f8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4bfda3fd84315b5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4bfda3fd84315b5_0 new file mode 100644 index 000000000..5121dea6a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4bfda3fd84315b5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4c53b0ec83aca06_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4c53b0ec83aca06_0 new file mode 100644 index 000000000..e4f0ca5e7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4c53b0ec83aca06_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4d8fdae0fb0da6c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4d8fdae0fb0da6c_0 new file mode 100644 index 000000000..f4ed503d8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4d8fdae0fb0da6c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4da5f262981aa21_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4da5f262981aa21_0 new file mode 100644 index 000000000..8c9e9f415 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4da5f262981aa21_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4f9630756a5f259_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4f9630756a5f259_0 new file mode 100644 index 000000000..769fe0c13 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4f9630756a5f259_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4fe0552c1b147de_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4fe0552c1b147de_0 new file mode 100644 index 000000000..e176138c5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e4fe0552c1b147de_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e500359794e570bb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e500359794e570bb_0 new file mode 100644 index 000000000..77fc05de7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e500359794e570bb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e517bc9fa09ba284_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e517bc9fa09ba284_0 new file mode 100644 index 000000000..688373cff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e517bc9fa09ba284_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e51d31112277e340_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e51d31112277e340_0 new file mode 100644 index 000000000..0b61615c2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e51d31112277e340_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e51f13462ab77345_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e51f13462ab77345_0 index 3ffc350e4..db3cd4c2a 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e51f13462ab77345_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e51f13462ab77345_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e52dd27f22c1c2fe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e52dd27f22c1c2fe_0 new file mode 100644 index 000000000..e688ba09e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e52dd27f22c1c2fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5373e83dc00ef96_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5373e83dc00ef96_0 new file mode 100644 index 000000000..e178e99c8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5373e83dc00ef96_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5531388b2032bd4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5531388b2032bd4_0 new file mode 100644 index 000000000..169817ac2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5531388b2032bd4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5543afa8340eb45_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5543afa8340eb45_0 new file mode 100644 index 000000000..810c0eb16 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5543afa8340eb45_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e56b4c93f3726139_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e56b4c93f3726139_0 new file mode 100644 index 000000000..b5171fa36 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e56b4c93f3726139_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e57fb00b77fd394b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e57fb00b77fd394b_0 new file mode 100644 index 000000000..0abe27b6e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e57fb00b77fd394b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e580ec6f4a2dec15_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e580ec6f4a2dec15_0 new file mode 100644 index 000000000..480841821 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e580ec6f4a2dec15_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5a6c27b157b6fe3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5a6c27b157b6fe3_0 new file mode 100644 index 000000000..7304fd114 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5a6c27b157b6fe3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5ad0b2e7c7d4956_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5ad0b2e7c7d4956_0 new file mode 100644 index 000000000..1f8394f31 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5ad0b2e7c7d4956_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5aeded06e7c300b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5aeded06e7c300b_0 new file mode 100644 index 000000000..b7133ef33 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5aeded06e7c300b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5c8539f6dd70be2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5c8539f6dd70be2_0 new file mode 100644 index 000000000..4f196a5b0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5c8539f6dd70be2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5d1ceb7bb7304a3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5d1ceb7bb7304a3_0 new file mode 100644 index 000000000..d616aeec7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5d1ceb7bb7304a3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5d5ffbb888423d4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5d5ffbb888423d4_0 new file mode 100644 index 000000000..2f9ef3ab1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5d5ffbb888423d4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5deb5de059b8fd4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5deb5de059b8fd4_0 new file mode 100644 index 000000000..efc868ddd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5deb5de059b8fd4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5e271af910c120d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5e271af910c120d_0 new file mode 100644 index 000000000..470ca44b0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5e271af910c120d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5f0874a7f798926_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5f0874a7f798926_0 new file mode 100644 index 000000000..6e782b9c8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5f0874a7f798926_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5f76093a027d475_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5f76093a027d475_0 index 9ff8260c7..661392ec2 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5f76093a027d475_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e5f76093a027d475_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6021bbe2fa140c0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6021bbe2fa140c0_0 new file mode 100644 index 000000000..140800b1a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6021bbe2fa140c0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6049fc5ebd1928d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6049fc5ebd1928d_0 new file mode 100644 index 000000000..0feeb7589 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6049fc5ebd1928d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e61a592e856f9401_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e61a592e856f9401_0 new file mode 100644 index 000000000..ec7b8bcba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e61a592e856f9401_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6303c8fe3c64744_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6303c8fe3c64744_0 new file mode 100644 index 000000000..9acc47e0b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6303c8fe3c64744_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e636702316ba75ba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e636702316ba75ba_0 new file mode 100644 index 000000000..8b7a642a9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e636702316ba75ba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e643e3e08e6509ae_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e643e3e08e6509ae_0 new file mode 100644 index 000000000..893b97353 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e643e3e08e6509ae_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e64684855f86d2bb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e64684855f86d2bb_0 new file mode 100644 index 000000000..c0ee8c80d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e64684855f86d2bb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e65ea27ccb38dc52_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e65ea27ccb38dc52_0 new file mode 100644 index 000000000..49a9acae9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e65ea27ccb38dc52_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e66a66b0c5dbf769_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e66a66b0c5dbf769_0 new file mode 100644 index 000000000..1b828c3bf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e66a66b0c5dbf769_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e67250f5fff21154_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e67250f5fff21154_0 new file mode 100644 index 000000000..44874fd27 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e67250f5fff21154_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6c6158ba435f2ea_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6c6158ba435f2ea_0 new file mode 100644 index 000000000..2a5999ace Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6c6158ba435f2ea_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6d541fa42cf28be_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6d541fa42cf28be_0 new file mode 100644 index 000000000..6b72bf70a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6d541fa42cf28be_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6e7231f6447c5b3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6e7231f6447c5b3_0 new file mode 100644 index 000000000..35a4e2cb7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6e7231f6447c5b3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6f0739a95f4caab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6f0739a95f4caab_0 new file mode 100644 index 000000000..49bd8320b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e6f0739a95f4caab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e70c4ee8e00af63d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e70c4ee8e00af63d_0 new file mode 100644 index 000000000..80f25a4ef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e70c4ee8e00af63d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e72d7aa5f6cbfe05_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e72d7aa5f6cbfe05_0 new file mode 100644 index 000000000..08bfc61a7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e72d7aa5f6cbfe05_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e7300f2c4f131353_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e7300f2c4f131353_0 new file mode 100644 index 000000000..8adfdb8d3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e7300f2c4f131353_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e74a68f3a3d18f7f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e74a68f3a3d18f7f_0 new file mode 100644 index 000000000..c12bb7d91 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e74a68f3a3d18f7f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e76d56083bdfc2c7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e76d56083bdfc2c7_0 new file mode 100644 index 000000000..04054d15c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e76d56083bdfc2c7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e7807557bbede944_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e7807557bbede944_0 new file mode 100644 index 000000000..f8873bd57 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e7807557bbede944_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e78fb66d7a260381_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e78fb66d7a260381_0 new file mode 100644 index 000000000..933163b07 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e78fb66d7a260381_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e79beefe8fc17d15_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e79beefe8fc17d15_0 new file mode 100644 index 000000000..5548fafb0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e79beefe8fc17d15_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e7a5cf1a3762955b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e7a5cf1a3762955b_0 new file mode 100644 index 000000000..e8054b10c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e7a5cf1a3762955b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e7a7df4a8a0aad3f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e7a7df4a8a0aad3f_0 new file mode 100644 index 000000000..a2e5a2357 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e7a7df4a8a0aad3f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e7bec13027d5816f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e7bec13027d5816f_0 new file mode 100644 index 000000000..ec0635b50 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e7bec13027d5816f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e81d0057f3e363ab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e81d0057f3e363ab_0 new file mode 100644 index 000000000..4307d53a2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e81d0057f3e363ab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8321a3b52c0cfdd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8321a3b52c0cfdd_0 new file mode 100644 index 000000000..196412adf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8321a3b52c0cfdd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e84f8cae1e02da0c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e84f8cae1e02da0c_0 new file mode 100644 index 000000000..c63acdb16 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e84f8cae1e02da0c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e85ac8952d7783d7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e85ac8952d7783d7_0 index 2c998b9d3..8c911c591 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e85ac8952d7783d7_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e85ac8952d7783d7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e87c2b5a55d5b185_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e87c2b5a55d5b185_0 new file mode 100644 index 000000000..c70a0665a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e87c2b5a55d5b185_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e890589e0f1f03c1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e890589e0f1f03c1_0 new file mode 100644 index 000000000..e84752634 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e890589e0f1f03c1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8a65d80b56ef2f5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8a65d80b56ef2f5_0 new file mode 100644 index 000000000..e040a5586 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8a65d80b56ef2f5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8af44d90880672a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8af44d90880672a_0 new file mode 100644 index 000000000..4b13dc62e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8af44d90880672a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8b1c02062d0b3ed_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8b1c02062d0b3ed_0 new file mode 100644 index 000000000..ff60553db Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8b1c02062d0b3ed_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8c969bf9c43b3f6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8c969bf9c43b3f6_0 new file mode 100644 index 000000000..3775d9892 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8c969bf9c43b3f6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8d785ee2a615386_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8d785ee2a615386_0 new file mode 100644 index 000000000..38317f5f7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8d785ee2a615386_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8dc29fd39c58ac8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8dc29fd39c58ac8_0 new file mode 100644 index 000000000..69b5127f4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8dc29fd39c58ac8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8e368f335bd7cc3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8e368f335bd7cc3_0 new file mode 100644 index 000000000..27c2559dd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8e368f335bd7cc3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8e54be03935301f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8e54be03935301f_0 new file mode 100644 index 000000000..52b9b67f0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e8e54be03935301f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e92a3a92ead42218_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e92a3a92ead42218_0 new file mode 100644 index 000000000..013c3f654 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e92a3a92ead42218_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e94c3d787ddf97dc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e94c3d787ddf97dc_0 new file mode 100644 index 000000000..8a3a51f3a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e94c3d787ddf97dc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e95b1dc4093c087b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e95b1dc4093c087b_0 new file mode 100644 index 000000000..66d0cc41c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e95b1dc4093c087b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e95bc35da91e2c5b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e95bc35da91e2c5b_0 new file mode 100644 index 000000000..75f1bdfc0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e95bc35da91e2c5b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e96bad4fdccb17a2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e96bad4fdccb17a2_0 new file mode 100644 index 000000000..812e9425b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e96bad4fdccb17a2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e98549e22813d635_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e98549e22813d635_0 new file mode 100644 index 000000000..dd64d3ebf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e98549e22813d635_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e98c09849095d807_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e98c09849095d807_0 new file mode 100644 index 000000000..2db317e44 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e98c09849095d807_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e99296c6b8f7b797_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e99296c6b8f7b797_0 new file mode 100644 index 000000000..feeddec91 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e99296c6b8f7b797_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e99db0ae151f2c68_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e99db0ae151f2c68_0 new file mode 100644 index 000000000..26346118e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e99db0ae151f2c68_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e9a48c0c65425ab1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e9a48c0c65425ab1_0 new file mode 100644 index 000000000..bd38a8db3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e9a48c0c65425ab1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e9bb969acc09850e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e9bb969acc09850e_0 new file mode 100644 index 000000000..0549e4dfb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e9bb969acc09850e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e9c7d93156081a5e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e9c7d93156081a5e_0 new file mode 100644 index 000000000..ae38f8d80 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e9c7d93156081a5e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/e9dd0950b777236b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e9dd0950b777236b_0 new file mode 100644 index 000000000..1a72a9c5a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/e9dd0950b777236b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea1b6b7913e52f97_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea1b6b7913e52f97_0 new file mode 100644 index 000000000..e1c9face4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea1b6b7913e52f97_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea227dd067f0fa59_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea227dd067f0fa59_0 new file mode 100644 index 000000000..f06d7821b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea227dd067f0fa59_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea501ccbfd6eef35_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea501ccbfd6eef35_0 new file mode 100644 index 000000000..f226d1d93 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea501ccbfd6eef35_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea5abf68667c9c3d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea5abf68667c9c3d_0 new file mode 100644 index 000000000..9f6c610af Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea5abf68667c9c3d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea6e2f61b4f4a951_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea6e2f61b4f4a951_0 new file mode 100644 index 000000000..76331aefd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea6e2f61b4f4a951_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea7939a713f8ff1b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea7939a713f8ff1b_0 new file mode 100644 index 000000000..1c5d1c4c1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea7939a713f8ff1b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea816988a15349aa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea816988a15349aa_0 new file mode 100644 index 000000000..e876f22ef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea816988a15349aa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea82da88f6fe9392_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea82da88f6fe9392_0 new file mode 100644 index 000000000..0fe874344 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea82da88f6fe9392_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea8757ff56f6c660_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea8757ff56f6c660_0 new file mode 100644 index 000000000..32d290e51 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea8757ff56f6c660_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea8757ff56f6c660_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea8757ff56f6c660_s new file mode 100644 index 000000000..b2283a65f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ea8757ff56f6c660_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/eabf43d671d9d417_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eabf43d671d9d417_0 new file mode 100644 index 000000000..e890976ed Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eabf43d671d9d417_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/eacdc452577a075e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eacdc452577a075e_0 new file mode 100644 index 000000000..56ce07e4e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eacdc452577a075e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/eb12f8e746ba49a9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eb12f8e746ba49a9_0 new file mode 100644 index 000000000..2b9418eec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eb12f8e746ba49a9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/eb3432a0240f67fe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eb3432a0240f67fe_0 new file mode 100644 index 000000000..38f7110b8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eb3432a0240f67fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/eb4b0195d1e029c5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eb4b0195d1e029c5_0 new file mode 100644 index 000000000..7f2b9cd10 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eb4b0195d1e029c5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/eb6d03e6ebf17302_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eb6d03e6ebf17302_0 new file mode 100644 index 000000000..9edf0003f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eb6d03e6ebf17302_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/eb6d51f97515c3e8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eb6d51f97515c3e8_0 new file mode 100644 index 000000000..2b4295847 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eb6d51f97515c3e8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/eb793f568a0fe6fc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eb793f568a0fe6fc_0 new file mode 100644 index 000000000..ad0897d80 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eb793f568a0fe6fc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/eba357f8cdf84b08_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eba357f8cdf84b08_0 new file mode 100644 index 000000000..8a19f7669 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eba357f8cdf84b08_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ebad3935f01d4c58_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ebad3935f01d4c58_0 new file mode 100644 index 000000000..1f1d36b53 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ebad3935f01d4c58_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ebb99e121ecdf29b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ebb99e121ecdf29b_0 new file mode 100644 index 000000000..e665e62fd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ebb99e121ecdf29b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ebc9a850753106de_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ebc9a850753106de_0 new file mode 100644 index 000000000..7f2876f00 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ebc9a850753106de_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ebcdd2a1097587a1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ebcdd2a1097587a1_0 new file mode 100644 index 000000000..60de8b0d2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ebcdd2a1097587a1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ebe105b5dfa51424_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ebe105b5dfa51424_0 new file mode 100644 index 000000000..294ea06e5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ebe105b5dfa51424_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ebf8cddb9412c929_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ebf8cddb9412c929_0 new file mode 100644 index 000000000..5e3561030 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ebf8cddb9412c929_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec0ae612ce37d5f2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec0ae612ce37d5f2_0 new file mode 100644 index 000000000..01e864e61 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec0ae612ce37d5f2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec2457bfa761cab1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec2457bfa761cab1_0 new file mode 100644 index 000000000..8dfb6529f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec2457bfa761cab1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec26b8f2b7ac163d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec26b8f2b7ac163d_0 new file mode 100644 index 000000000..ef23010be Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec26b8f2b7ac163d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec3b219ae00d8691_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec3b219ae00d8691_0 new file mode 100644 index 000000000..e865f2ccb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec3b219ae00d8691_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec4ccc023dd854ae_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec4ccc023dd854ae_0 new file mode 100644 index 000000000..cd694b4b5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec4ccc023dd854ae_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec5a5de121496a7e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec5a5de121496a7e_0 new file mode 100644 index 000000000..9b8915c17 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec5a5de121496a7e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec7ba56564cf12aa_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec7ba56564cf12aa_0 new file mode 100644 index 000000000..b2a2c7f6e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec7ba56564cf12aa_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec94b4ceb0d804df_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec94b4ceb0d804df_0 new file mode 100644 index 000000000..053f2a102 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ec94b4ceb0d804df_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ecacdc584ad9c4b8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ecacdc584ad9c4b8_0 new file mode 100644 index 000000000..90d373f29 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ecacdc584ad9c4b8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ecaffec6584af807_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ecaffec6584af807_0 new file mode 100644 index 000000000..bc3f4aa44 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ecaffec6584af807_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/eccf69ba6432e50d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eccf69ba6432e50d_0 index e74769fcb..de287944b 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/eccf69ba6432e50d_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eccf69ba6432e50d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ece12cc8a7112be3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ece12cc8a7112be3_0 new file mode 100644 index 000000000..785ee7eb7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ece12cc8a7112be3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ece6442fdbe38a3b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ece6442fdbe38a3b_0 new file mode 100644 index 000000000..52dfe9e31 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ece6442fdbe38a3b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ece8dcdf0b0b52c4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ece8dcdf0b0b52c4_0 new file mode 100644 index 000000000..21c0648f8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ece8dcdf0b0b52c4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ecf8652cd8e69448_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ecf8652cd8e69448_0 new file mode 100644 index 000000000..4ee2ec63a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ecf8652cd8e69448_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed04762b9ff26940_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed04762b9ff26940_0 new file mode 100644 index 000000000..77b47f98b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed04762b9ff26940_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed19f8976915d1de_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed19f8976915d1de_0 new file mode 100644 index 000000000..169924750 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed19f8976915d1de_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed1e63f6e82fbca4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed1e63f6e82fbca4_0 new file mode 100644 index 000000000..e04db20bd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed1e63f6e82fbca4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed316a42ca610b45_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed316a42ca610b45_0 new file mode 100644 index 000000000..92e318a73 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed316a42ca610b45_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed36d631fca5fb08_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed36d631fca5fb08_0 new file mode 100644 index 000000000..10f486de0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed36d631fca5fb08_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed40045410a79f1d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed40045410a79f1d_0 new file mode 100644 index 000000000..c30573d80 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed40045410a79f1d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed55b975ad648c1f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed55b975ad648c1f_0 new file mode 100644 index 000000000..9bf862337 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed55b975ad648c1f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed84b26e1e993d79_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed84b26e1e993d79_0 index 50f5e5474..40fe60d4d 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed84b26e1e993d79_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed84b26e1e993d79_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed8dabbdd61a34e5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed8dabbdd61a34e5_0 new file mode 100644 index 000000000..423ed37de Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed8dabbdd61a34e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed8f6976f5700600_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed8f6976f5700600_0 new file mode 100644 index 000000000..05416d3e5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed8f6976f5700600_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed9701a77a07d2ea_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed9701a77a07d2ea_0 new file mode 100644 index 000000000..13456a355 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ed9701a77a07d2ea_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/eda596c08826b66f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eda596c08826b66f_0 new file mode 100644 index 000000000..ca37c199f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eda596c08826b66f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/edcae25e0e3eeecf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/edcae25e0e3eeecf_0 new file mode 100644 index 000000000..267e6556e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/edcae25e0e3eeecf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/eddca3a2a1d266f5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eddca3a2a1d266f5_0 new file mode 100644 index 000000000..5932c9c60 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eddca3a2a1d266f5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ede5a2050d1639f5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ede5a2050d1639f5_0 new file mode 100644 index 000000000..f7b2d9c23 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ede5a2050d1639f5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/edefb33befc56737_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/edefb33befc56737_0 new file mode 100644 index 000000000..a0c99c5b6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/edefb33befc56737_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/edf28c997128b145_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/edf28c997128b145_0 new file mode 100644 index 000000000..8b934845c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/edf28c997128b145_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee11d33430a20c90_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee11d33430a20c90_0 new file mode 100644 index 000000000..d5bd7fc9b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee11d33430a20c90_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee201744697b68e9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee201744697b68e9_0 new file mode 100644 index 000000000..202631a36 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee201744697b68e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee24d867caa606ba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee24d867caa606ba_0 new file mode 100644 index 000000000..914ebd778 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee24d867caa606ba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee2d04270e0d6081_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee2d04270e0d6081_0 index aea7f617b..04f428a22 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee2d04270e0d6081_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee2d04270e0d6081_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee30cb27922178d5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee30cb27922178d5_0 new file mode 100644 index 000000000..a9905531f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee30cb27922178d5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee4cbab78ea4fb73_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee4cbab78ea4fb73_0 new file mode 100644 index 000000000..05bbdc22c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee4cbab78ea4fb73_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee790b9348bc9d5f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee790b9348bc9d5f_0 new file mode 100644 index 000000000..17b2eef00 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee790b9348bc9d5f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee86ac7658e89594_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee86ac7658e89594_0 new file mode 100644 index 000000000..74c3e1bad Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee86ac7658e89594_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee9a1c4ef59fbb2b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee9a1c4ef59fbb2b_0 new file mode 100644 index 000000000..643ae49b6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ee9a1c4ef59fbb2b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/eeaf93d946b7e2d8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eeaf93d946b7e2d8_0 new file mode 100644 index 000000000..d6e2f69bf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eeaf93d946b7e2d8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/eed5b9d0c360cce9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eed5b9d0c360cce9_0 new file mode 100644 index 000000000..b8ded02c0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eed5b9d0c360cce9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/eee4a9179215f0e1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eee4a9179215f0e1_0 new file mode 100644 index 000000000..f39980368 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eee4a9179215f0e1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/eee8cb723c886011_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eee8cb723c886011_0 new file mode 100644 index 000000000..159e11679 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eee8cb723c886011_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef10702630d52d95_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef10702630d52d95_0 new file mode 100644 index 000000000..8030725d1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef10702630d52d95_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef21366553358799_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef21366553358799_0 new file mode 100644 index 000000000..cf798c82d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef21366553358799_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef4bb4a89cc1694f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef4bb4a89cc1694f_0 new file mode 100644 index 000000000..24a918c0e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef4bb4a89cc1694f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef5f2cb3e077a8dd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef5f2cb3e077a8dd_0 new file mode 100644 index 000000000..3c0127bac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef5f2cb3e077a8dd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef64ab1fcf858a23_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef64ab1fcf858a23_0 new file mode 100644 index 000000000..3021a7a4e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef64ab1fcf858a23_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef71767961970408_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef71767961970408_0 new file mode 100644 index 000000000..1d318acc9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef71767961970408_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef7554c54cc14b74_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef7554c54cc14b74_0 new file mode 100644 index 000000000..4b2a8213d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef7554c54cc14b74_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef7e25d312ec65be_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef7e25d312ec65be_0 new file mode 100644 index 000000000..a420a8ec5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef7e25d312ec65be_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef8076e885526cf5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef8076e885526cf5_0 new file mode 100644 index 000000000..0beb472b0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef8076e885526cf5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef884f448fe5b009_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef884f448fe5b009_0 new file mode 100644 index 000000000..5e66c7e95 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ef884f448fe5b009_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/efa4f735ce44939b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/efa4f735ce44939b_0 new file mode 100644 index 000000000..2a77ccdef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/efa4f735ce44939b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/efa8c47973659058_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/efa8c47973659058_0 new file mode 100644 index 000000000..a51dc3983 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/efa8c47973659058_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/efaefefb9a26ef9b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/efaefefb9a26ef9b_0 new file mode 100644 index 000000000..eed021ddf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/efaefefb9a26ef9b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/efcc5b69679cba4c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/efcc5b69679cba4c_0 new file mode 100644 index 000000000..4102632f0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/efcc5b69679cba4c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/efe3786c7fa66533_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/efe3786c7fa66533_0 new file mode 100644 index 000000000..72590c861 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/efe3786c7fa66533_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/eff18d43c06037fe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eff18d43c06037fe_0 new file mode 100644 index 000000000..f073fa43d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/eff18d43c06037fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0052bed8fa50dc6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0052bed8fa50dc6_0 new file mode 100644 index 000000000..d5641f85f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0052bed8fa50dc6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f016c2cf58325e5d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f016c2cf58325e5d_0 new file mode 100644 index 000000000..2bdaef2e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f016c2cf58325e5d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f017f7acdca8a5b3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f017f7acdca8a5b3_0 new file mode 100644 index 000000000..b9fc2bb6d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f017f7acdca8a5b3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f01d391703cc36b5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f01d391703cc36b5_0 new file mode 100644 index 000000000..f49315746 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f01d391703cc36b5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f021de3158bbd2bd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f021de3158bbd2bd_0 new file mode 100644 index 000000000..a3ad54021 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f021de3158bbd2bd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f023538d946d9fa0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f023538d946d9fa0_0 new file mode 100644 index 000000000..643d00d4e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f023538d946d9fa0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f03181fffb258367_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f03181fffb258367_0 new file mode 100644 index 000000000..6b17ddf2b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f03181fffb258367_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0348cebc5ac080f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0348cebc5ac080f_0 new file mode 100644 index 000000000..c9f325337 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0348cebc5ac080f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f03fe8d92166dba3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f03fe8d92166dba3_0 new file mode 100644 index 000000000..fdc568578 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f03fe8d92166dba3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0466cefe64f1009_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0466cefe64f1009_0 new file mode 100644 index 000000000..56c77c7a3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0466cefe64f1009_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0564c90918c6d33_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0564c90918c6d33_0 new file mode 100644 index 000000000..7174083f8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0564c90918c6d33_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f07ccc2a7c9ad334_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f07ccc2a7c9ad334_0 new file mode 100644 index 000000000..3c022cd24 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f07ccc2a7c9ad334_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f07f78d347c875c5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f07f78d347c875c5_0 new file mode 100644 index 000000000..e2c7526e5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f07f78d347c875c5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f084c9fa4070adaf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f084c9fa4070adaf_0 new file mode 100644 index 000000000..a54e0253c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f084c9fa4070adaf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f08671faca9bf7cd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f08671faca9bf7cd_0 new file mode 100644 index 000000000..21478e197 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f08671faca9bf7cd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f096aae724cdd595_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f096aae724cdd595_0 new file mode 100644 index 000000000..63aac0ae9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f096aae724cdd595_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f096eb5ad836e581_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f096eb5ad836e581_0 new file mode 100644 index 000000000..f34f36071 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f096eb5ad836e581_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f09ce99c3bf25fcf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f09ce99c3bf25fcf_0 new file mode 100644 index 000000000..a067160bb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f09ce99c3bf25fcf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0a75bed1bd9c001_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0a75bed1bd9c001_0 new file mode 100644 index 000000000..e67ee0618 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0a75bed1bd9c001_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0ba48b0d515e989_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0ba48b0d515e989_0 new file mode 100644 index 000000000..1aa4e41b9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0ba48b0d515e989_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0bea49ecc8a9240_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0bea49ecc8a9240_0 new file mode 100644 index 000000000..e48fec728 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0bea49ecc8a9240_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0bea49ecc8a9240_s b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0bea49ecc8a9240_s new file mode 100644 index 000000000..8fd6c027c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0bea49ecc8a9240_s differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0cdb0fb8d66f0fe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0cdb0fb8d66f0fe_0 new file mode 100644 index 000000000..e1da9fdb7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0cdb0fb8d66f0fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0e558f7c9610df9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0e558f7c9610df9_0 new file mode 100644 index 000000000..5af96208f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0e558f7c9610df9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0eea5bc5101d4d3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0eea5bc5101d4d3_0 new file mode 100644 index 000000000..68c27c6b2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0eea5bc5101d4d3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0f7d834be9806e1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0f7d834be9806e1_0 new file mode 100644 index 000000000..643cff892 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0f7d834be9806e1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0fdb8779ef3b243_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0fdb8779ef3b243_0 new file mode 100644 index 000000000..75a048578 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0fdb8779ef3b243_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0fe0ee5d7dcc9ef_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0fe0ee5d7dcc9ef_0 new file mode 100644 index 000000000..53af13a5f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f0fe0ee5d7dcc9ef_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f1129a420c08d575_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f1129a420c08d575_0 new file mode 100644 index 000000000..a4c1581d1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f1129a420c08d575_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f1163ee421f5d674_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f1163ee421f5d674_0 new file mode 100644 index 000000000..cced01081 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f1163ee421f5d674_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f124f37750081d47_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f124f37750081d47_0 new file mode 100644 index 000000000..664c20cf0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f124f37750081d47_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f1463034f893df73_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f1463034f893df73_0 new file mode 100644 index 000000000..4fd6e242f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f1463034f893df73_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f1533016fc5356e6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f1533016fc5356e6_0 new file mode 100644 index 000000000..80e67c6a3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f1533016fc5356e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f167bfbfe5846993_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f167bfbfe5846993_0 new file mode 100644 index 000000000..fbfb0de28 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f167bfbfe5846993_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f17076ee5c3f4a28_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f17076ee5c3f4a28_0 new file mode 100644 index 000000000..149b52ce8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f17076ee5c3f4a28_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f17278e44aefd755_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f17278e44aefd755_0 new file mode 100644 index 000000000..ea02967ef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f17278e44aefd755_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f17f66a0f7268df2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f17f66a0f7268df2_0 new file mode 100644 index 000000000..774129f2b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f17f66a0f7268df2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f18f493d9a6aeb51_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f18f493d9a6aeb51_0 new file mode 100644 index 000000000..a378cd935 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f18f493d9a6aeb51_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f1d240e8eea4bbc0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f1d240e8eea4bbc0_0 new file mode 100644 index 000000000..221d23677 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f1d240e8eea4bbc0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f20881cef1a31cfc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f20881cef1a31cfc_0 new file mode 100644 index 000000000..78880182a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f20881cef1a31cfc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f215ed1e7bafc0b1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f215ed1e7bafc0b1_0 new file mode 100644 index 000000000..c6ae5ef22 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f215ed1e7bafc0b1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f218b73ad6497f07_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f218b73ad6497f07_0 new file mode 100644 index 000000000..f8b21d2fd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f218b73ad6497f07_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f23f9bdf12aa2e79_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f23f9bdf12aa2e79_0 new file mode 100644 index 000000000..9cabe1aed Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f23f9bdf12aa2e79_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f241da4e63418762_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f241da4e63418762_0 new file mode 100644 index 000000000..954c87c38 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f241da4e63418762_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2918a3528d7e959_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2918a3528d7e959_0 new file mode 100644 index 000000000..ad8cc3c65 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2918a3528d7e959_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2a5536300662fef_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2a5536300662fef_0 new file mode 100644 index 000000000..2c1230241 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2a5536300662fef_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2a9f0ff88041dc4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2a9f0ff88041dc4_0 new file mode 100644 index 000000000..7d2d655f8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2a9f0ff88041dc4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2ad4f0f02b1c977_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2ad4f0f02b1c977_0 new file mode 100644 index 000000000..2e6a73f36 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2ad4f0f02b1c977_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2b7dce4a04c3af7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2b7dce4a04c3af7_0 new file mode 100644 index 000000000..1beb1a971 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2b7dce4a04c3af7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2bbfdcb3fb8187f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2bbfdcb3fb8187f_0 new file mode 100644 index 000000000..68f0974f4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2bbfdcb3fb8187f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2c307d5d238781e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2c307d5d238781e_0 new file mode 100644 index 000000000..0dabe9ca5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2c307d5d238781e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2da6298a7f6bd06_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2da6298a7f6bd06_0 new file mode 100644 index 000000000..c9fdd1956 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2da6298a7f6bd06_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2f1caf703fcf7c3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2f1caf703fcf7c3_0 new file mode 100644 index 000000000..6d6d51ae2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f2f1caf703fcf7c3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f311945d39a0847e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f311945d39a0847e_0 new file mode 100644 index 000000000..a83d9f3c0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f311945d39a0847e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3205cb662153cd5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3205cb662153cd5_0 index cf92059f6..45be83042 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3205cb662153cd5_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3205cb662153cd5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f34afc59616fa1b9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f34afc59616fa1b9_0 new file mode 100644 index 000000000..260e29a8c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f34afc59616fa1b9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f351d1c77c6c1265_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f351d1c77c6c1265_0 new file mode 100644 index 000000000..5370d4424 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f351d1c77c6c1265_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f36160e1ea221367_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f36160e1ea221367_0 new file mode 100644 index 000000000..088ad01be Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f36160e1ea221367_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f37795b0162c532d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f37795b0162c532d_0 new file mode 100644 index 000000000..65b018e10 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f37795b0162c532d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f37c66898f4a6b7f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f37c66898f4a6b7f_0 new file mode 100644 index 000000000..21ed5541a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f37c66898f4a6b7f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f38d23f5cd656ec7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f38d23f5cd656ec7_0 new file mode 100644 index 000000000..d52277ed6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f38d23f5cd656ec7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f39b09e6d01d6704_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f39b09e6d01d6704_0 new file mode 100644 index 000000000..5410c6f36 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f39b09e6d01d6704_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3ad02e26a6c0895_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3ad02e26a6c0895_0 new file mode 100644 index 000000000..507d01d0c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3ad02e26a6c0895_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3b66943351e99af_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3b66943351e99af_0 new file mode 100644 index 000000000..08f1c1dd4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3b66943351e99af_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3c4f9b212925d49_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3c4f9b212925d49_0 new file mode 100644 index 000000000..c24f00242 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3c4f9b212925d49_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3d0e60373502b3a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3d0e60373502b3a_0 new file mode 100644 index 000000000..55f04a743 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3d0e60373502b3a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3db26936e6a612c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3db26936e6a612c_0 new file mode 100644 index 000000000..ce8541bd8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3db26936e6a612c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3dc4431735859c9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3dc4431735859c9_0 new file mode 100644 index 000000000..e966c189a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3dc4431735859c9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3dd166fb223443c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3dd166fb223443c_0 new file mode 100644 index 000000000..baabfb26f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3dd166fb223443c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3fb6419a5c0f151_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3fb6419a5c0f151_0 new file mode 100644 index 000000000..09175be9c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3fb6419a5c0f151_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3fd918b102f2db7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3fd918b102f2db7_0 new file mode 100644 index 000000000..7e3db6c87 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f3fd918b102f2db7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4021362c0d822fb_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4021362c0d822fb_0 new file mode 100644 index 000000000..fa65c03c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4021362c0d822fb_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f409f5ee70a92104_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f409f5ee70a92104_0 new file mode 100644 index 000000000..b2f194c78 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f409f5ee70a92104_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f41dd83b8543cf1d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f41dd83b8543cf1d_0 new file mode 100644 index 000000000..9754206c9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f41dd83b8543cf1d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4502a7344a0bbfd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4502a7344a0bbfd_0 new file mode 100644 index 000000000..5d18ab4ab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4502a7344a0bbfd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f454c98acad9dfb0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f454c98acad9dfb0_0 new file mode 100644 index 000000000..d06b0a034 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f454c98acad9dfb0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f45eed660ad32696_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f45eed660ad32696_0 new file mode 100644 index 000000000..bf2b5405e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f45eed660ad32696_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f481910ffa947291_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f481910ffa947291_0 new file mode 100644 index 000000000..bb5369634 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f481910ffa947291_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4881b321208f614_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4881b321208f614_0 new file mode 100644 index 000000000..8cb49a401 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4881b321208f614_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f48a10ff567048c0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f48a10ff567048c0_0 new file mode 100644 index 000000000..8f3f88b05 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f48a10ff567048c0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f491f19e061b8361_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f491f19e061b8361_0 new file mode 100644 index 000000000..141fc4cd7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f491f19e061b8361_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f49b9b0602f36450_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f49b9b0602f36450_0 new file mode 100644 index 000000000..9e844a4ff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f49b9b0602f36450_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f49cde88fd58f33d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f49cde88fd58f33d_0 new file mode 100644 index 000000000..401ce0eab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f49cde88fd58f33d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4ce4794b6f0e84f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4ce4794b6f0e84f_0 new file mode 100644 index 000000000..591755c1c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4ce4794b6f0e84f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4cf812763a3fcf0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4cf812763a3fcf0_0 new file mode 100644 index 000000000..853d090ab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4cf812763a3fcf0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4d07e4b2b304673_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4d07e4b2b304673_0 new file mode 100644 index 000000000..c1ec699fd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4d07e4b2b304673_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4e4162187ba3db9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4e4162187ba3db9_0 new file mode 100644 index 000000000..83e9181a4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f4e4162187ba3db9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f51d74b66431130f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f51d74b66431130f_0 new file mode 100644 index 000000000..3bafd83d6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f51d74b66431130f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f522902bd4d8ef4d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f522902bd4d8ef4d_0 new file mode 100644 index 000000000..3d77c1304 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f522902bd4d8ef4d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f52491d3a8a9b567_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f52491d3a8a9b567_0 new file mode 100644 index 000000000..ddef9a193 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f52491d3a8a9b567_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f553a9a015060a10_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f553a9a015060a10_0 new file mode 100644 index 000000000..23b4cab79 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f553a9a015060a10_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f5557b0b506472e3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f5557b0b506472e3_0 new file mode 100644 index 000000000..f886c8dd5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f5557b0b506472e3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f55596d21ed22938_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f55596d21ed22938_0 new file mode 100644 index 000000000..2a5378b43 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f55596d21ed22938_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f55ac001e7dd7bd1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f55ac001e7dd7bd1_0 new file mode 100644 index 000000000..ae3fcd733 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f55ac001e7dd7bd1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f568a01684660206_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f568a01684660206_0 new file mode 100644 index 000000000..229d3b5f9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f568a01684660206_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f57907f17cae54db_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f57907f17cae54db_0 new file mode 100644 index 000000000..2cb3920a2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f57907f17cae54db_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f585115a29f8daad_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f585115a29f8daad_0 new file mode 100644 index 000000000..12545f968 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f585115a29f8daad_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f598ce12ecfecffd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f598ce12ecfecffd_0 new file mode 100644 index 000000000..ab5a1ad11 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f598ce12ecfecffd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f5a46eca7a5f6503_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f5a46eca7a5f6503_0 new file mode 100644 index 000000000..1f9077a99 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f5a46eca7a5f6503_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f5b7baba25837644_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f5b7baba25837644_0 new file mode 100644 index 000000000..802925b46 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f5b7baba25837644_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f5bc15c662322b36_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f5bc15c662322b36_0 new file mode 100644 index 000000000..261bd7e92 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f5bc15c662322b36_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f5c83d219e499e99_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f5c83d219e499e99_0 new file mode 100644 index 000000000..a627800bf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f5c83d219e499e99_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f5dc5fe34a313f10_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f5dc5fe34a313f10_0 new file mode 100644 index 000000000..141924fcc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f5dc5fe34a313f10_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f614130ed80399fc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f614130ed80399fc_0 new file mode 100644 index 000000000..e99b18084 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f614130ed80399fc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f61422690ac7a28b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f61422690ac7a28b_0 new file mode 100644 index 000000000..cc1d367ee Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f61422690ac7a28b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6181b0da3d70835_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6181b0da3d70835_0 index 5e516bf76..f0c73bc82 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6181b0da3d70835_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6181b0da3d70835_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f61966facad62a15_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f61966facad62a15_0 new file mode 100644 index 000000000..08da22d7b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f61966facad62a15_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f61c484e116faf3b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f61c484e116faf3b_0 new file mode 100644 index 000000000..65e89c1a8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f61c484e116faf3b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f62bd0625fe84b3f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f62bd0625fe84b3f_0 new file mode 100644 index 000000000..6e2e925de Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f62bd0625fe84b3f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f63215686cd104a8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f63215686cd104a8_0 new file mode 100644 index 000000000..80880610e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f63215686cd104a8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6395e710770b6e5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6395e710770b6e5_0 new file mode 100644 index 000000000..a8a54cc37 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6395e710770b6e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f63d16346973f34a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f63d16346973f34a_0 new file mode 100644 index 000000000..ca484ef02 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f63d16346973f34a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f63d75ec87cf778e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f63d75ec87cf778e_0 new file mode 100644 index 000000000..df9ab161e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f63d75ec87cf778e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6417ceb895478a8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6417ceb895478a8_0 new file mode 100644 index 000000000..a29ba7d55 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6417ceb895478a8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f642776be57ee743_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f642776be57ee743_0 new file mode 100644 index 000000000..adf80a406 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f642776be57ee743_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f649573e3b79e66d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f649573e3b79e66d_0 new file mode 100644 index 000000000..27697c896 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f649573e3b79e66d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f66bd2d365da1a02_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f66bd2d365da1a02_0 new file mode 100644 index 000000000..fbb35a891 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f66bd2d365da1a02_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f674f57fde30a97a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f674f57fde30a97a_0 new file mode 100644 index 000000000..03f1136fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f674f57fde30a97a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f682a3a074b4365f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f682a3a074b4365f_0 new file mode 100644 index 000000000..7327eed51 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f682a3a074b4365f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6836a2a2aa19769_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6836a2a2aa19769_0 new file mode 100644 index 000000000..58155936c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6836a2a2aa19769_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f68ddac5164aaff9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f68ddac5164aaff9_0 new file mode 100644 index 000000000..90c57c6fb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f68ddac5164aaff9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6a25dc77e2d7d2f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6a25dc77e2d7d2f_0 index 784625374..64a8a93d4 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6a25dc77e2d7d2f_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6a25dc77e2d7d2f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6cf918dc8c7437e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6cf918dc8c7437e_0 new file mode 100644 index 000000000..0926456c0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6cf918dc8c7437e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6d110f42d0e15c0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6d110f42d0e15c0_0 new file mode 100644 index 000000000..bc0fe4577 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f6d110f42d0e15c0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f70062f771731231_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f70062f771731231_0 new file mode 100644 index 000000000..8fb2b0b01 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f70062f771731231_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f703d96049533c39_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f703d96049533c39_0 new file mode 100644 index 000000000..6b4f6008f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f703d96049533c39_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f713d60ad95e97f1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f713d60ad95e97f1_0 new file mode 100644 index 000000000..baef9e2e9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f713d60ad95e97f1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7458c46d735b2e5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7458c46d735b2e5_0 new file mode 100644 index 000000000..fefeaaaf9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7458c46d735b2e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f74637a85eed17d2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f74637a85eed17d2_0 new file mode 100644 index 000000000..70466b4f9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f74637a85eed17d2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f75a1f5100c06786_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f75a1f5100c06786_0 new file mode 100644 index 000000000..4cdf05f1d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f75a1f5100c06786_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7641382d14ed8dd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7641382d14ed8dd_0 new file mode 100644 index 000000000..95ba67590 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7641382d14ed8dd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f77080580012de7c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f77080580012de7c_0 new file mode 100644 index 000000000..d44722538 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f77080580012de7c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f78c8b7c103b8b98_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f78c8b7c103b8b98_0 new file mode 100644 index 000000000..d540b8b06 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f78c8b7c103b8b98_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f79f703074c2b9c8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f79f703074c2b9c8_0 new file mode 100644 index 000000000..d0d18362c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f79f703074c2b9c8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7aaa3c9cbb8bbe9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7aaa3c9cbb8bbe9_0 new file mode 100644 index 000000000..5deac470b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7aaa3c9cbb8bbe9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7b0aacb4c46b4c3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7b0aacb4c46b4c3_0 new file mode 100644 index 000000000..0b7db1c12 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7b0aacb4c46b4c3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7baf4202eb69923_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7baf4202eb69923_0 new file mode 100644 index 000000000..2088a4bf8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7baf4202eb69923_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7cfb7c422e29774_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7cfb7c422e29774_0 new file mode 100644 index 000000000..c8956e677 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7cfb7c422e29774_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7e0d63b7e4d93d6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7e0d63b7e4d93d6_0 new file mode 100644 index 000000000..61b9e2c7e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7e0d63b7e4d93d6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7e74900de086445_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7e74900de086445_0 new file mode 100644 index 000000000..475435005 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7e74900de086445_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7eddb9a00bcef1d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7eddb9a00bcef1d_0 new file mode 100644 index 000000000..670eff274 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f7eddb9a00bcef1d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f82457f086570cf5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f82457f086570cf5_0 new file mode 100644 index 000000000..c86481912 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f82457f086570cf5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f82652d3ecf779bc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f82652d3ecf779bc_0 new file mode 100644 index 000000000..abc3d0500 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f82652d3ecf779bc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f82d41e9d49ad7e6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f82d41e9d49ad7e6_0 new file mode 100644 index 000000000..8c5be6165 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f82d41e9d49ad7e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f864c1967029745b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f864c1967029745b_0 new file mode 100644 index 000000000..f24b9ccfa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f864c1967029745b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f87c18baa4f15dc9_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f87c18baa4f15dc9_0 new file mode 100644 index 000000000..98224b38b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f87c18baa4f15dc9_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f880772573e61957_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f880772573e61957_0 new file mode 100644 index 000000000..b7c9ff835 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f880772573e61957_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f88362d4e0f48173_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f88362d4e0f48173_0 new file mode 100644 index 000000000..41e402e8c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f88362d4e0f48173_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8978f72aba4d79c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8978f72aba4d79c_0 new file mode 100644 index 000000000..0974f543c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8978f72aba4d79c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8a44453b5f80e98_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8a44453b5f80e98_0 new file mode 100644 index 000000000..def92328c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8a44453b5f80e98_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8b0721d70e19d42_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8b0721d70e19d42_0 new file mode 100644 index 000000000..a7be44147 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8b0721d70e19d42_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8bbec0945607f8e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8bbec0945607f8e_0 new file mode 100644 index 000000000..4744cbf7e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8bbec0945607f8e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8bdc76d20ce5383_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8bdc76d20ce5383_0 new file mode 100644 index 000000000..93268ea0c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8bdc76d20ce5383_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8dfca2e36f43925_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8dfca2e36f43925_0 new file mode 100644 index 000000000..a0d65bb86 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8dfca2e36f43925_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8eb004beff92421_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8eb004beff92421_0 new file mode 100644 index 000000000..328c27e67 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8eb004beff92421_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8f130402bb7ba1a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8f130402bb7ba1a_0 new file mode 100644 index 000000000..7547cd4f8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f8f130402bb7ba1a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9075613b363dcdf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9075613b363dcdf_0 new file mode 100644 index 000000000..d27e93bae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9075613b363dcdf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f90c2757cc9d5ce2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f90c2757cc9d5ce2_0 new file mode 100644 index 000000000..8570f372e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f90c2757cc9d5ce2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9468296e55c8c5c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9468296e55c8c5c_0 new file mode 100644 index 000000000..44ffddf9a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9468296e55c8c5c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f94f67c66de56eae_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f94f67c66de56eae_0 new file mode 100644 index 000000000..c4c627c87 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f94f67c66de56eae_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9620032d596e727_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9620032d596e727_0 new file mode 100644 index 000000000..1d5b22621 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9620032d596e727_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9717d9f483deb37_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9717d9f483deb37_0 new file mode 100644 index 000000000..4ed3af7ad Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9717d9f483deb37_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f97cb40cba02b1b5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f97cb40cba02b1b5_0 new file mode 100644 index 000000000..697e0ea31 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f97cb40cba02b1b5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f99383fd97c391b8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f99383fd97c391b8_0 new file mode 100644 index 000000000..a3da2edb1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f99383fd97c391b8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9944691b58a5314_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9944691b58a5314_0 new file mode 100644 index 000000000..1a31f5019 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9944691b58a5314_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9ce371dce2c111d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9ce371dce2c111d_0 new file mode 100644 index 000000000..a5584e357 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9ce371dce2c111d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9e045620bef7c43_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9e045620bef7c43_0 new file mode 100644 index 000000000..dc50b228c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/f9e045620bef7c43_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa1b46eeac346ba2_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa1b46eeac346ba2_0 new file mode 100644 index 000000000..702f1a43c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa1b46eeac346ba2_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa2e023fdec0e732_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa2e023fdec0e732_0 new file mode 100644 index 000000000..8cc5c0eb1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa2e023fdec0e732_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa49d6d8875d8c89_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa49d6d8875d8c89_0 new file mode 100644 index 000000000..51de5f7c2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa49d6d8875d8c89_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa53d21a327b0905_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa53d21a327b0905_0 new file mode 100644 index 000000000..a759fd983 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa53d21a327b0905_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa53fc98129b63e0_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa53fc98129b63e0_0 new file mode 100644 index 000000000..c47a1804e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa53fc98129b63e0_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa65e06958813f88_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa65e06958813f88_0 new file mode 100644 index 000000000..51c1aa07e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa65e06958813f88_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa680e59fd31a79d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa680e59fd31a79d_0 new file mode 100644 index 000000000..55dfd6e75 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa680e59fd31a79d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa709f5f35aa45c7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa709f5f35aa45c7_0 new file mode 100644 index 000000000..62c0b54bc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa709f5f35aa45c7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa81018244cadb4a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa81018244cadb4a_0 new file mode 100644 index 000000000..fb222e174 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fa81018244cadb4a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fab129b9ff81f051_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fab129b9ff81f051_0 new file mode 100644 index 000000000..43a9a57e6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fab129b9ff81f051_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fab9ee30216d3511_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fab9ee30216d3511_0 new file mode 100644 index 000000000..025b89619 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fab9ee30216d3511_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fabfea99387521fc_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fabfea99387521fc_0 new file mode 100644 index 000000000..1d4992e4d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fabfea99387521fc_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fad60797540c904b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fad60797540c904b_0 new file mode 100644 index 000000000..326552957 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fad60797540c904b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/faf00ecc95eec697_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/faf00ecc95eec697_0 new file mode 100644 index 000000000..a6787119d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/faf00ecc95eec697_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/faf1921209afa5fd_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/faf1921209afa5fd_0 new file mode 100644 index 000000000..5f5ba2051 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/faf1921209afa5fd_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/faff034fd6b5d463_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/faff034fd6b5d463_0 new file mode 100644 index 000000000..f4806f4ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/faff034fd6b5d463_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb0665caca91a6de_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb0665caca91a6de_0 new file mode 100644 index 000000000..9df8b2a4b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb0665caca91a6de_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb0a21f03ccbc43b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb0a21f03ccbc43b_0 new file mode 100644 index 000000000..5e1af1e88 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb0a21f03ccbc43b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb11de76ce1ee78f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb11de76ce1ee78f_0 new file mode 100644 index 000000000..b3adc4268 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb11de76ce1ee78f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb1250452cc72713_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb1250452cc72713_0 new file mode 100644 index 000000000..c14c9f743 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb1250452cc72713_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb14ce2f2919fa5c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb14ce2f2919fa5c_0 new file mode 100644 index 000000000..a2a36944a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb14ce2f2919fa5c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb1ade486367139f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb1ade486367139f_0 new file mode 100644 index 000000000..ef252c9c5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb1ade486367139f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb2ea36b4b2a16cf_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb2ea36b4b2a16cf_0 new file mode 100644 index 000000000..a4866560f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb2ea36b4b2a16cf_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb48fdbbf03690a6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb48fdbbf03690a6_0 new file mode 100644 index 000000000..549eb2abe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb48fdbbf03690a6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb580fcb0183fca7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb580fcb0183fca7_0 new file mode 100644 index 000000000..094531afa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb580fcb0183fca7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb81c6cee7ec6eca_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb81c6cee7ec6eca_0 new file mode 100644 index 000000000..2539f160f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb81c6cee7ec6eca_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb8c4a28fd611f9d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb8c4a28fd611f9d_0 new file mode 100644 index 000000000..3d7c1ded2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb8c4a28fd611f9d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb9e6b1d7bacb863_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb9e6b1d7bacb863_0 new file mode 100644 index 000000000..e30ef366f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fb9e6b1d7bacb863_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fbb82351e0cbacfe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fbb82351e0cbacfe_0 new file mode 100644 index 000000000..0ef93f59e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fbb82351e0cbacfe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fbcc0736f40bfc36_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fbcc0736f40bfc36_0 new file mode 100644 index 000000000..346d74549 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fbcc0736f40bfc36_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fbead28953691765_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fbead28953691765_0 new file mode 100644 index 000000000..39dd7e37d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fbead28953691765_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc0be13f32fbed7e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc0be13f32fbed7e_0 new file mode 100644 index 000000000..22cf01156 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc0be13f32fbed7e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc0e9484dd2d555b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc0e9484dd2d555b_0 new file mode 100644 index 000000000..a991259c2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc0e9484dd2d555b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc1644e932f11489_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc1644e932f11489_0 new file mode 100644 index 000000000..64bec9b45 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc1644e932f11489_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc191ff6d3146661_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc191ff6d3146661_0 new file mode 100644 index 000000000..c0a09a5e3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc191ff6d3146661_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc1a448da0a7b9d1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc1a448da0a7b9d1_0 new file mode 100644 index 000000000..701250a65 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc1a448da0a7b9d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc2bb5dfb0014983_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc2bb5dfb0014983_0 new file mode 100644 index 000000000..ee7ff97d4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc2bb5dfb0014983_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc3e5e4550af27ff_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc3e5e4550af27ff_0 new file mode 100644 index 000000000..7d3db1cb7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc3e5e4550af27ff_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc42b36f6a12e84c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc42b36f6a12e84c_0 new file mode 100644 index 000000000..64d0079d1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc42b36f6a12e84c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc4fdb7f1abee93e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc4fdb7f1abee93e_0 new file mode 100644 index 000000000..6d547a755 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc4fdb7f1abee93e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc5edfbf3b353bd5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc5edfbf3b353bd5_0 new file mode 100644 index 000000000..3ba04aa67 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc5edfbf3b353bd5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc6facd238bf855c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc6facd238bf855c_0 new file mode 100644 index 000000000..7fda3ed45 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc6facd238bf855c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc731f54a4c4601d_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc731f54a4c4601d_0 new file mode 100644 index 000000000..5503e680f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc731f54a4c4601d_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc7f9b0b74e30f1f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc7f9b0b74e30f1f_0 new file mode 100644 index 000000000..7048dd914 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc7f9b0b74e30f1f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc81880b9c39b421_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc81880b9c39b421_0 new file mode 100644 index 000000000..a0d6810c9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc81880b9c39b421_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc8b4d3ec5d19097_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc8b4d3ec5d19097_0 index 8d0a66e41..239f3a499 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc8b4d3ec5d19097_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc8b4d3ec5d19097_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc8fe8ced53fb8ab_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc8fe8ced53fb8ab_0 new file mode 100644 index 000000000..f3eb7b946 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc8fe8ced53fb8ab_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc94eaed071e0ef6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc94eaed071e0ef6_0 new file mode 100644 index 000000000..cbc037e64 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fc94eaed071e0ef6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fca881c298a54b0e_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fca881c298a54b0e_0 new file mode 100644 index 000000000..cb6375023 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fca881c298a54b0e_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fcbe294ec4b03d31_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fcbe294ec4b03d31_0 index 62036399a..e0a6b2ff1 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fcbe294ec4b03d31_0 and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fcbe294ec4b03d31_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fcc80ea5f0837020_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fcc80ea5f0837020_0 new file mode 100644 index 000000000..c05355b63 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fcc80ea5f0837020_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fcca00649ca3bc9c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fcca00649ca3bc9c_0 new file mode 100644 index 000000000..0bd88d0c9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fcca00649ca3bc9c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fccc6beb72eff5ba_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fccc6beb72eff5ba_0 new file mode 100644 index 000000000..19410af1c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fccc6beb72eff5ba_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fce849b4f9a48960_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fce849b4f9a48960_0 new file mode 100644 index 000000000..4c77de9f3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fce849b4f9a48960_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd207ad0e9398050_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd207ad0e9398050_0 new file mode 100644 index 000000000..bcb2c0181 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd207ad0e9398050_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd2cac90c50dbc36_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd2cac90c50dbc36_0 new file mode 100644 index 000000000..e69a0ed7c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd2cac90c50dbc36_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd30b5c501675fc7_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd30b5c501675fc7_0 new file mode 100644 index 000000000..35b9b71a9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd30b5c501675fc7_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd3d93a62b00dea8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd3d93a62b00dea8_0 new file mode 100644 index 000000000..1b69905b6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd3d93a62b00dea8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd423e7489bb7a70_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd423e7489bb7a70_0 new file mode 100644 index 000000000..3042156d6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd423e7489bb7a70_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd5023b5f7ba622f_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd5023b5f7ba622f_0 new file mode 100644 index 000000000..c9190dddc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd5023b5f7ba622f_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd6817e75199ca5a_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd6817e75199ca5a_0 new file mode 100644 index 000000000..34c7e4dbf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd6817e75199ca5a_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd858298e9486b87_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd858298e9486b87_0 new file mode 100644 index 000000000..8673d7b32 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fd858298e9486b87_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fdaa8e5988c1ba75_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fdaa8e5988c1ba75_0 new file mode 100644 index 000000000..3c56a6503 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fdaa8e5988c1ba75_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fdb478b6b712193c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fdb478b6b712193c_0 new file mode 100644 index 000000000..6d5872f5b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fdb478b6b712193c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fdc61acef4e20ca6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fdc61acef4e20ca6_0 new file mode 100644 index 000000000..14707809f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fdc61acef4e20ca6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fdf2153921233747_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fdf2153921233747_0 new file mode 100644 index 000000000..065030d26 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fdf2153921233747_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fdf5458cea235991_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fdf5458cea235991_0 new file mode 100644 index 000000000..772c79b23 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fdf5458cea235991_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fe09c8241749a4c6_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fe09c8241749a4c6_0 new file mode 100644 index 000000000..e81105172 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fe09c8241749a4c6_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fe3bb64ad2549e84_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fe3bb64ad2549e84_0 new file mode 100644 index 000000000..ead1f9e8c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fe3bb64ad2549e84_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fe846c95d1830659_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fe846c95d1830659_0 new file mode 100644 index 000000000..d7b02a073 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fe846c95d1830659_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fe84da21b5f78705_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fe84da21b5f78705_0 new file mode 100644 index 000000000..f1d07a012 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fe84da21b5f78705_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fe9526f09e755b37_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fe9526f09e755b37_0 new file mode 100644 index 000000000..5be5ea839 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fe9526f09e755b37_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fea7103537ed52b5_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fea7103537ed52b5_0 new file mode 100644 index 000000000..98611a11c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fea7103537ed52b5_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/feab12a50b5eb4e1_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/feab12a50b5eb4e1_0 new file mode 100644 index 000000000..871812161 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/feab12a50b5eb4e1_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/febae3da67704891_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/febae3da67704891_0 new file mode 100644 index 000000000..f6bb4bb18 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/febae3da67704891_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fed6cd91bcdee6fe_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fed6cd91bcdee6fe_0 new file mode 100644 index 000000000..b116a97d1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fed6cd91bcdee6fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fed7f218e6222a13_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fed7f218e6222a13_0 new file mode 100644 index 000000000..712f8b251 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fed7f218e6222a13_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ff23a1505580aed3_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ff23a1505580aed3_0 new file mode 100644 index 000000000..98b96294c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ff23a1505580aed3_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ff39c38cd3baf84b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ff39c38cd3baf84b_0 new file mode 100644 index 000000000..f377f2788 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ff39c38cd3baf84b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ff6e7f60d7907f2c_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ff6e7f60d7907f2c_0 new file mode 100644 index 000000000..553a54b32 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ff6e7f60d7907f2c_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ff7a975704cca1ec_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ff7a975704cca1ec_0 new file mode 100644 index 000000000..3b0ad17a4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ff7a975704cca1ec_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ff7fde85d236923b_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ff7fde85d236923b_0 new file mode 100644 index 000000000..a2b065e54 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ff7fde85d236923b_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ffa8536c9d85aa91_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ffa8536c9d85aa91_0 new file mode 100644 index 000000000..5a7ecb9fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ffa8536c9d85aa91_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ffb6ba51699c8539_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ffb6ba51699c8539_0 new file mode 100644 index 000000000..ba414fa8c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ffb6ba51699c8539_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/ffc6d62c37defaa8_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ffc6d62c37defaa8_0 new file mode 100644 index 000000000..d706baf22 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/ffc6d62c37defaa8_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/fff2ba97349f3ae4_0 b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fff2ba97349f3ae4_0 new file mode 100644 index 000000000..29edfa93b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/fff2ba97349f3ae4_0 differ diff --git a/notebooklm_chrome_profile/Default/Cache/Cache_Data/index-dir/the-real-index b/notebooklm_chrome_profile/Default/Cache/Cache_Data/index-dir/the-real-index index fca9733a9..8bd195563 100644 Binary files a/notebooklm_chrome_profile/Default/Cache/Cache_Data/index-dir/the-real-index and b/notebooklm_chrome_profile/Default/Cache/Cache_Data/index-dir/the-real-index differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0041e55d024b8ad5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0041e55d024b8ad5_0 new file mode 100644 index 000000000..e346f105f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0041e55d024b8ad5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/00520d7e86e87dba_0 b/notebooklm_chrome_profile/Default/Code Cache/js/00520d7e86e87dba_0 new file mode 100644 index 000000000..78e8b9568 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/00520d7e86e87dba_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/00791a7d057046e2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/00791a7d057046e2_0 new file mode 100644 index 000000000..a18ebf96b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/00791a7d057046e2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/00acf1a84d9f4c98_0 b/notebooklm_chrome_profile/Default/Code Cache/js/00acf1a84d9f4c98_0 new file mode 100644 index 000000000..de8e3538a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/00acf1a84d9f4c98_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/00ba3d3fc65a7dec_0 b/notebooklm_chrome_profile/Default/Code Cache/js/00ba3d3fc65a7dec_0 new file mode 100644 index 000000000..6974f9a01 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/00ba3d3fc65a7dec_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/01064e91dc488513_0 b/notebooklm_chrome_profile/Default/Code Cache/js/01064e91dc488513_0 new file mode 100644 index 000000000..e452c8052 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/01064e91dc488513_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0151fd65de809e14_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0151fd65de809e14_0 new file mode 100644 index 000000000..a47174c2b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0151fd65de809e14_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/01658985614ecfca_0 b/notebooklm_chrome_profile/Default/Code Cache/js/01658985614ecfca_0 new file mode 100644 index 000000000..e9272cdce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/01658985614ecfca_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/01acbfbe7824ad6e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/01acbfbe7824ad6e_0 new file mode 100644 index 000000000..378420e1e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/01acbfbe7824ad6e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/01d68e464b8a5800_0 b/notebooklm_chrome_profile/Default/Code Cache/js/01d68e464b8a5800_0 new file mode 100644 index 000000000..fe3928659 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/01d68e464b8a5800_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/02072d019bdbc21d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/02072d019bdbc21d_0 new file mode 100644 index 000000000..525794293 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/02072d019bdbc21d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0208b56c1dfe14ad_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0208b56c1dfe14ad_0 new file mode 100644 index 000000000..7e7984dc4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0208b56c1dfe14ad_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/020d2aa9cd9bc284_0 b/notebooklm_chrome_profile/Default/Code Cache/js/020d2aa9cd9bc284_0 new file mode 100644 index 000000000..c53417940 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/020d2aa9cd9bc284_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/022d22d03b3a4a0c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/022d22d03b3a4a0c_0 new file mode 100644 index 000000000..cfac019f3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/022d22d03b3a4a0c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0242e58cfb855254_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0242e58cfb855254_0 new file mode 100644 index 000000000..387eb068d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0242e58cfb855254_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0245f0c906aa3517_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0245f0c906aa3517_0 new file mode 100644 index 000000000..a8feda3bb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0245f0c906aa3517_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/024941a0f35982f5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/024941a0f35982f5_0 new file mode 100644 index 000000000..c52a06d75 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/024941a0f35982f5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/02b683ef6106bb59_0 b/notebooklm_chrome_profile/Default/Code Cache/js/02b683ef6106bb59_0 new file mode 100644 index 000000000..86a03f210 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/02b683ef6106bb59_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/02f382f981bc4ff7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/02f382f981bc4ff7_0 new file mode 100644 index 000000000..94c05a4af Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/02f382f981bc4ff7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/03c2856ebfa19462_0 b/notebooklm_chrome_profile/Default/Code Cache/js/03c2856ebfa19462_0 new file mode 100644 index 000000000..5ca2d978d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/03c2856ebfa19462_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/03dba45b7ad72266_0 b/notebooklm_chrome_profile/Default/Code Cache/js/03dba45b7ad72266_0 new file mode 100644 index 000000000..0b8229a2f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/03dba45b7ad72266_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/041bc7cbe5c964f4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/041bc7cbe5c964f4_0 new file mode 100644 index 000000000..c2ef863b7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/041bc7cbe5c964f4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0428d0c0cb26253b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0428d0c0cb26253b_0 new file mode 100644 index 000000000..ea0babc9e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0428d0c0cb26253b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0435e2788cb29db9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0435e2788cb29db9_0 new file mode 100644 index 000000000..c6af118af Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0435e2788cb29db9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/04468b01cbbc95d4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/04468b01cbbc95d4_0 deleted file mode 100644 index bd330f272..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/04468b01cbbc95d4_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/045b4bfc4e62a891_0 b/notebooklm_chrome_profile/Default/Code Cache/js/045b4bfc4e62a891_0 new file mode 100644 index 000000000..fc59510cb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/045b4bfc4e62a891_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/04a30a50ecfee560_0 b/notebooklm_chrome_profile/Default/Code Cache/js/04a30a50ecfee560_0 new file mode 100644 index 000000000..50c13b0a0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/04a30a50ecfee560_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/04d541e49d97ba68_0 b/notebooklm_chrome_profile/Default/Code Cache/js/04d541e49d97ba68_0 new file mode 100644 index 000000000..65066fa32 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/04d541e49d97ba68_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/04f8e76f503f8f6f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/04f8e76f503f8f6f_0 new file mode 100644 index 000000000..9778c1f1a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/04f8e76f503f8f6f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/050de0e19acd31ee_0 b/notebooklm_chrome_profile/Default/Code Cache/js/050de0e19acd31ee_0 deleted file mode 100644 index b932a634a..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/050de0e19acd31ee_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0524ca0cbcd6eceb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0524ca0cbcd6eceb_0 new file mode 100644 index 000000000..239a028e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0524ca0cbcd6eceb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/052b04ff2c68b463_0 b/notebooklm_chrome_profile/Default/Code Cache/js/052b04ff2c68b463_0 new file mode 100644 index 000000000..682570c3d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/052b04ff2c68b463_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0549f0672cb595a6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0549f0672cb595a6_0 new file mode 100644 index 000000000..0898ef143 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0549f0672cb595a6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/054fa9f0b8cb684e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/054fa9f0b8cb684e_0 new file mode 100644 index 000000000..abff473cb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/054fa9f0b8cb684e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/05aebc270eacf4c7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/05aebc270eacf4c7_0 new file mode 100644 index 000000000..36dd6436f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/05aebc270eacf4c7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/05b90e8296a7bae8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/05b90e8296a7bae8_0 new file mode 100644 index 000000000..8afd96ba4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/05b90e8296a7bae8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/05c34f0e2a8c9dc7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/05c34f0e2a8c9dc7_0 new file mode 100644 index 000000000..62f3558ab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/05c34f0e2a8c9dc7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/05d8fb022163cd47_0 b/notebooklm_chrome_profile/Default/Code Cache/js/05d8fb022163cd47_0 new file mode 100644 index 000000000..13f90a143 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/05d8fb022163cd47_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/06467474703c8be3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/06467474703c8be3_0 new file mode 100644 index 000000000..3e2420d71 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/06467474703c8be3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0672552edfd01949_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0672552edfd01949_0 new file mode 100644 index 000000000..2659bbee4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0672552edfd01949_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/06ab3cf8f6662c9e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/06ab3cf8f6662c9e_0 new file mode 100644 index 000000000..d03748809 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/06ab3cf8f6662c9e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/06c9c26c668c9cde_0 b/notebooklm_chrome_profile/Default/Code Cache/js/06c9c26c668c9cde_0 new file mode 100644 index 000000000..eeac1b13c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/06c9c26c668c9cde_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/06eb4c70a66380e8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/06eb4c70a66380e8_0 new file mode 100644 index 000000000..251ec33c0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/06eb4c70a66380e8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0726ff0e9ac59635_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0726ff0e9ac59635_0 index 671021817..0f8db30c9 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/0726ff0e9ac59635_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/0726ff0e9ac59635_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0744ebf27f3ab27b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0744ebf27f3ab27b_0 new file mode 100644 index 000000000..38f81f828 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0744ebf27f3ab27b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/07a37d8704c0254d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/07a37d8704c0254d_0 new file mode 100644 index 000000000..6c890fa6e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/07a37d8704c0254d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/07dcae9c6a12f0ad_0 b/notebooklm_chrome_profile/Default/Code Cache/js/07dcae9c6a12f0ad_0 new file mode 100644 index 000000000..367c100d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/07dcae9c6a12f0ad_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/07f8b4671b2c2d37_0 b/notebooklm_chrome_profile/Default/Code Cache/js/07f8b4671b2c2d37_0 new file mode 100644 index 000000000..98ba8cff0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/07f8b4671b2c2d37_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/082463b52f1d4b43_0 b/notebooklm_chrome_profile/Default/Code Cache/js/082463b52f1d4b43_0 new file mode 100644 index 000000000..e7f1f5c06 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/082463b52f1d4b43_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/08292def387f7e56_0 b/notebooklm_chrome_profile/Default/Code Cache/js/08292def387f7e56_0 new file mode 100644 index 000000000..1af2ca7e9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/08292def387f7e56_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0847799c5fd22a9f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0847799c5fd22a9f_0 new file mode 100644 index 000000000..37bb5b155 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0847799c5fd22a9f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/08c4234022843509_0 b/notebooklm_chrome_profile/Default/Code Cache/js/08c4234022843509_0 new file mode 100644 index 000000000..b27b82dd9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/08c4234022843509_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/08cc30df244c5b9d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/08cc30df244c5b9d_0 new file mode 100644 index 000000000..38bae41c5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/08cc30df244c5b9d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/08e800e42025a352_0 b/notebooklm_chrome_profile/Default/Code Cache/js/08e800e42025a352_0 new file mode 100644 index 000000000..694498fee Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/08e800e42025a352_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/09024af33c5e6f21_0 b/notebooklm_chrome_profile/Default/Code Cache/js/09024af33c5e6f21_0 new file mode 100644 index 000000000..fdf7fe52e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/09024af33c5e6f21_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/090257fb512d51d2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/090257fb512d51d2_0 new file mode 100644 index 000000000..ddd1de0e7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/090257fb512d51d2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0965adaf85faaf99_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0965adaf85faaf99_0 new file mode 100644 index 000000000..44267c2e5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0965adaf85faaf99_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/09b61c2feb564522_0 b/notebooklm_chrome_profile/Default/Code Cache/js/09b61c2feb564522_0 deleted file mode 100644 index 9bee31a5b..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/09b61c2feb564522_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/09c8dc51a2e09c29_0 b/notebooklm_chrome_profile/Default/Code Cache/js/09c8dc51a2e09c29_0 index 3e623b336..80a728b0e 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/09c8dc51a2e09c29_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/09c8dc51a2e09c29_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0a41763072e06961_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0a41763072e06961_0 new file mode 100644 index 000000000..65fd22d39 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0a41763072e06961_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0a4ddedc3aab54d5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0a4ddedc3aab54d5_0 new file mode 100644 index 000000000..301db56e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0a4ddedc3aab54d5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0a81c463e9b32fbf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0a81c463e9b32fbf_0 new file mode 100644 index 000000000..bd5c6d718 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0a81c463e9b32fbf_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0abd24b5950ad4c7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0abd24b5950ad4c7_0 new file mode 100644 index 000000000..d2c918e5d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0abd24b5950ad4c7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0b6376a511c65705_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0b6376a511c65705_0 new file mode 100644 index 000000000..68616e653 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0b6376a511c65705_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0b6ff14ac11a412c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0b6ff14ac11a412c_0 new file mode 100644 index 000000000..2f88aff0c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0b6ff14ac11a412c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0b93db192e9158fd_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0b93db192e9158fd_0 new file mode 100644 index 000000000..21e935d06 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0b93db192e9158fd_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0bcac91602e6c068_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0bcac91602e6c068_0 new file mode 100644 index 000000000..d238688d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0bcac91602e6c068_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0bd1b185a9a64283_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0bd1b185a9a64283_0 new file mode 100644 index 000000000..7178e782f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0bd1b185a9a64283_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0bdda5832bdfa223_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0bdda5832bdfa223_0 new file mode 100644 index 000000000..519a0aeec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0bdda5832bdfa223_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0bdf1b7935c0265e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0bdf1b7935c0265e_0 new file mode 100644 index 000000000..cb17020f5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0bdf1b7935c0265e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0bed48c1968459c5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0bed48c1968459c5_0 deleted file mode 100644 index c159589fb..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/0bed48c1968459c5_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0bfbe5c43859778f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0bfbe5c43859778f_0 new file mode 100644 index 000000000..7f62db70a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0bfbe5c43859778f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0c06bcc305f2542e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0c06bcc305f2542e_0 new file mode 100644 index 000000000..226a222c5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0c06bcc305f2542e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0c2e36230512fa24_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0c2e36230512fa24_0 new file mode 100644 index 000000000..13dbe859b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0c2e36230512fa24_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0c6c26700e5a96cb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0c6c26700e5a96cb_0 new file mode 100644 index 000000000..cab81ea0e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0c6c26700e5a96cb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0c8ee297b96717fd_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0c8ee297b96717fd_0 new file mode 100644 index 000000000..f127daa39 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0c8ee297b96717fd_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0c98435d6b919d1e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0c98435d6b919d1e_0 new file mode 100644 index 000000000..295d14e27 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0c98435d6b919d1e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0cc9ec43a39e3761_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0cc9ec43a39e3761_0 index 24304489f..908e80f3e 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/0cc9ec43a39e3761_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/0cc9ec43a39e3761_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0cdabc23caa9b0c2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0cdabc23caa9b0c2_0 new file mode 100644 index 000000000..b8a01d1ce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0cdabc23caa9b0c2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0d057f85c971854e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0d057f85c971854e_0 new file mode 100644 index 000000000..65cc90b1b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0d057f85c971854e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0d0d5ec42f38f749_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0d0d5ec42f38f749_0 new file mode 100644 index 000000000..cdc1cf2bb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0d0d5ec42f38f749_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0e5cf36f4f29e028_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0e5cf36f4f29e028_0 new file mode 100644 index 000000000..3ae524dd7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0e5cf36f4f29e028_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0e7267672a197240_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0e7267672a197240_0 new file mode 100644 index 000000000..ce67b13bc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0e7267672a197240_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0e7e3e01c99eaabd_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0e7e3e01c99eaabd_0 index 1e7785ee1..c7590792c 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/0e7e3e01c99eaabd_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/0e7e3e01c99eaabd_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0ec8f69ea3b606a7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0ec8f69ea3b606a7_0 new file mode 100644 index 000000000..ce3e76d51 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0ec8f69ea3b606a7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0edc169d6aac08be_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0edc169d6aac08be_0 new file mode 100644 index 000000000..b470fd8e6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0edc169d6aac08be_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0ef959254bcfe15d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0ef959254bcfe15d_0 new file mode 100644 index 000000000..596634b83 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0ef959254bcfe15d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0f1d96a94872d14f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0f1d96a94872d14f_0 new file mode 100644 index 000000000..753c3cf4e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0f1d96a94872d14f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0f7d609d26504b90_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0f7d609d26504b90_0 new file mode 100644 index 000000000..c9df8da65 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0f7d609d26504b90_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0f9baaef9f5373f7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0f9baaef9f5373f7_0 index fd39f60af..5091ab210 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/0f9baaef9f5373f7_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/0f9baaef9f5373f7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0fc96dffcca606eb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0fc96dffcca606eb_0 new file mode 100644 index 000000000..375b396bd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0fc96dffcca606eb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/0feb0accd0dc44aa_0 b/notebooklm_chrome_profile/Default/Code Cache/js/0feb0accd0dc44aa_0 new file mode 100644 index 000000000..f25b9295f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/0feb0accd0dc44aa_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/10078e6c7d6c0000_0 b/notebooklm_chrome_profile/Default/Code Cache/js/10078e6c7d6c0000_0 new file mode 100644 index 000000000..a3c638846 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/10078e6c7d6c0000_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1022585ebd7d73f9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1022585ebd7d73f9_0 new file mode 100644 index 000000000..2676926d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1022585ebd7d73f9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/102e0bd9f16a5b56_0 b/notebooklm_chrome_profile/Default/Code Cache/js/102e0bd9f16a5b56_0 new file mode 100644 index 000000000..63e4bd460 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/102e0bd9f16a5b56_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1048cbccfec86cd3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1048cbccfec86cd3_0 new file mode 100644 index 000000000..5c8defacb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1048cbccfec86cd3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/10575b00b4140935_0 b/notebooklm_chrome_profile/Default/Code Cache/js/10575b00b4140935_0 new file mode 100644 index 000000000..64ca2a2c7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/10575b00b4140935_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/10ba77ef6ff6cad7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/10ba77ef6ff6cad7_0 index 3f5097a6f..5a95ef0fe 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/10ba77ef6ff6cad7_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/10ba77ef6ff6cad7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/10e8875f102a7249_0 b/notebooklm_chrome_profile/Default/Code Cache/js/10e8875f102a7249_0 new file mode 100644 index 000000000..36309bdb6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/10e8875f102a7249_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/112ec46165de7d8a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/112ec46165de7d8a_0 new file mode 100644 index 000000000..f99807c81 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/112ec46165de7d8a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/114f2604d6893ac1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/114f2604d6893ac1_0 new file mode 100644 index 000000000..165907207 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/114f2604d6893ac1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/11b6c099f5e1f411_0 b/notebooklm_chrome_profile/Default/Code Cache/js/11b6c099f5e1f411_0 new file mode 100644 index 000000000..89d11470c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/11b6c099f5e1f411_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/11b6d9fa620a7017_0 b/notebooklm_chrome_profile/Default/Code Cache/js/11b6d9fa620a7017_0 new file mode 100644 index 000000000..ace3b21d8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/11b6d9fa620a7017_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/11c36f842b32102c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/11c36f842b32102c_0 new file mode 100644 index 000000000..a5eb893d6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/11c36f842b32102c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/124e14e2cf6ba9d1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/124e14e2cf6ba9d1_0 new file mode 100644 index 000000000..7490059d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/124e14e2cf6ba9d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/127b2c2e270c7e89_0 b/notebooklm_chrome_profile/Default/Code Cache/js/127b2c2e270c7e89_0 new file mode 100644 index 000000000..4aa4726cb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/127b2c2e270c7e89_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/12830b18953445b5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/12830b18953445b5_0 new file mode 100644 index 000000000..ba8116b85 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/12830b18953445b5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/128e69030a085eff_0 b/notebooklm_chrome_profile/Default/Code Cache/js/128e69030a085eff_0 new file mode 100644 index 000000000..648515cbc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/128e69030a085eff_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/129fca5d5b54c50a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/129fca5d5b54c50a_0 new file mode 100644 index 000000000..86ca3b61d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/129fca5d5b54c50a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/132ba908cf670785_0 b/notebooklm_chrome_profile/Default/Code Cache/js/132ba908cf670785_0 index ac7a27a2d..35151f03f 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/132ba908cf670785_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/132ba908cf670785_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1355536b6989215e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1355536b6989215e_0 new file mode 100644 index 000000000..0eafdbe84 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1355536b6989215e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/13765fa4585c031a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/13765fa4585c031a_0 new file mode 100644 index 000000000..f0439e74e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/13765fa4585c031a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/13ff7550d6390ca0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/13ff7550d6390ca0_0 new file mode 100644 index 000000000..63a1383a9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/13ff7550d6390ca0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/14229a8ae5ba02c4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/14229a8ae5ba02c4_0 new file mode 100644 index 000000000..bc42a7d6c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/14229a8ae5ba02c4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/14279effcd686882_0 b/notebooklm_chrome_profile/Default/Code Cache/js/14279effcd686882_0 new file mode 100644 index 000000000..222e869b9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/14279effcd686882_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/142d8b8a041b7773_0 b/notebooklm_chrome_profile/Default/Code Cache/js/142d8b8a041b7773_0 index 128e70c55..680849fca 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/142d8b8a041b7773_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/142d8b8a041b7773_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1446a5c17f4981e4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1446a5c17f4981e4_0 new file mode 100644 index 000000000..c36c27423 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1446a5c17f4981e4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/14a9f870e9330833_0 b/notebooklm_chrome_profile/Default/Code Cache/js/14a9f870e9330833_0 new file mode 100644 index 000000000..21d8b3876 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/14a9f870e9330833_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/14ac6355b0d2080f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/14ac6355b0d2080f_0 new file mode 100644 index 000000000..4d2b9060c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/14ac6355b0d2080f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/14adac18e217f208_0 b/notebooklm_chrome_profile/Default/Code Cache/js/14adac18e217f208_0 new file mode 100644 index 000000000..cb17643ef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/14adac18e217f208_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/14eea74f9a5818fa_0 b/notebooklm_chrome_profile/Default/Code Cache/js/14eea74f9a5818fa_0 new file mode 100644 index 000000000..abbdb5e14 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/14eea74f9a5818fa_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/14f0e98fe1d60d16_0 b/notebooklm_chrome_profile/Default/Code Cache/js/14f0e98fe1d60d16_0 new file mode 100644 index 000000000..7526c740c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/14f0e98fe1d60d16_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1500330d35942951_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1500330d35942951_0 index b4acea8f1..ccb0f6a91 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/1500330d35942951_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/1500330d35942951_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/15147bbe8585b9a1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/15147bbe8585b9a1_0 new file mode 100644 index 000000000..01d4a7600 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/15147bbe8585b9a1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/15559a074e0c5a08_0 b/notebooklm_chrome_profile/Default/Code Cache/js/15559a074e0c5a08_0 deleted file mode 100644 index efbb3762c..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/15559a074e0c5a08_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/157ac5dc69855318_0 b/notebooklm_chrome_profile/Default/Code Cache/js/157ac5dc69855318_0 index 60597e755..ec2e9159c 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/157ac5dc69855318_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/157ac5dc69855318_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/158272a0743da818_0 b/notebooklm_chrome_profile/Default/Code Cache/js/158272a0743da818_0 new file mode 100644 index 000000000..4d273d030 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/158272a0743da818_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1586ba43395889eb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1586ba43395889eb_0 new file mode 100644 index 000000000..5148189c0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1586ba43395889eb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/15976fc8b6cb3155_0 b/notebooklm_chrome_profile/Default/Code Cache/js/15976fc8b6cb3155_0 new file mode 100644 index 000000000..1528ce163 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/15976fc8b6cb3155_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/15b76130ef227f13_0 b/notebooklm_chrome_profile/Default/Code Cache/js/15b76130ef227f13_0 new file mode 100644 index 000000000..a6ef3dc5c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/15b76130ef227f13_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/16008889cf4f6d00_0 b/notebooklm_chrome_profile/Default/Code Cache/js/16008889cf4f6d00_0 new file mode 100644 index 000000000..29fa56a96 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/16008889cf4f6d00_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1642488a0e7e4971_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1642488a0e7e4971_0 new file mode 100644 index 000000000..3fcd8cde0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1642488a0e7e4971_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1656bc1b7a4fde08_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1656bc1b7a4fde08_0 new file mode 100644 index 000000000..96258f67b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1656bc1b7a4fde08_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1666ad797de1e56d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1666ad797de1e56d_0 new file mode 100644 index 000000000..cb6e040ef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1666ad797de1e56d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/16756aee89abe9fe_0 b/notebooklm_chrome_profile/Default/Code Cache/js/16756aee89abe9fe_0 new file mode 100644 index 000000000..cb163e335 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/16756aee89abe9fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/16da65b69055ed82_0 b/notebooklm_chrome_profile/Default/Code Cache/js/16da65b69055ed82_0 new file mode 100644 index 000000000..c54c2b13c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/16da65b69055ed82_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/16e1af9223871fd6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/16e1af9223871fd6_0 new file mode 100644 index 000000000..9f080ee67 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/16e1af9223871fd6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/170f1f30134c32ae_0 b/notebooklm_chrome_profile/Default/Code Cache/js/170f1f30134c32ae_0 new file mode 100644 index 000000000..7bc405da4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/170f1f30134c32ae_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/175974e91e6d0803_0 b/notebooklm_chrome_profile/Default/Code Cache/js/175974e91e6d0803_0 new file mode 100644 index 000000000..a6d1da0c4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/175974e91e6d0803_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/17661dc7b237555a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/17661dc7b237555a_0 new file mode 100644 index 000000000..ca7d41c2a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/17661dc7b237555a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/17ad50094e7acfd5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/17ad50094e7acfd5_0 new file mode 100644 index 000000000..b1fd07810 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/17ad50094e7acfd5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/17d9b597b442d231_0 b/notebooklm_chrome_profile/Default/Code Cache/js/17d9b597b442d231_0 new file mode 100644 index 000000000..224bec514 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/17d9b597b442d231_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/182a01df191ca894_0 b/notebooklm_chrome_profile/Default/Code Cache/js/182a01df191ca894_0 new file mode 100644 index 000000000..15b956916 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/182a01df191ca894_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/186fb2f8169f0dec_0 b/notebooklm_chrome_profile/Default/Code Cache/js/186fb2f8169f0dec_0 new file mode 100644 index 000000000..9e859dda4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/186fb2f8169f0dec_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/18c83bd8739c2353_0 b/notebooklm_chrome_profile/Default/Code Cache/js/18c83bd8739c2353_0 new file mode 100644 index 000000000..f8ebe9d78 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/18c83bd8739c2353_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1906c63720c94657_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1906c63720c94657_0 new file mode 100644 index 000000000..88e02042a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1906c63720c94657_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1945f8b29f27eaeb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1945f8b29f27eaeb_0 new file mode 100644 index 000000000..fd11441e9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1945f8b29f27eaeb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/197040011f80d94e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/197040011f80d94e_0 new file mode 100644 index 000000000..582ba26b4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/197040011f80d94e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/19779aba429f25cb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/19779aba429f25cb_0 index 769ad6f50..515cefe0c 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/19779aba429f25cb_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/19779aba429f25cb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1982a5cf51c9e54f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1982a5cf51c9e54f_0 new file mode 100644 index 000000000..930827d97 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1982a5cf51c9e54f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/19917c065a338f5e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/19917c065a338f5e_0 new file mode 100644 index 000000000..9082c1c73 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/19917c065a338f5e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/19d00dc8e2b13dc6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/19d00dc8e2b13dc6_0 new file mode 100644 index 000000000..a3e8a828a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/19d00dc8e2b13dc6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/19e223d872d9c912_0 b/notebooklm_chrome_profile/Default/Code Cache/js/19e223d872d9c912_0 new file mode 100644 index 000000000..d3f9450c4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/19e223d872d9c912_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/19f6723a4358021b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/19f6723a4358021b_0 index 04f7fe312..04aa9ca16 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/19f6723a4358021b_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/19f6723a4358021b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1a2e85dd500269d1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1a2e85dd500269d1_0 new file mode 100644 index 000000000..ca95f482d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1a2e85dd500269d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1a41344eb652f79a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1a41344eb652f79a_0 new file mode 100644 index 000000000..70ac66623 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1a41344eb652f79a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1a7411dc24e19567_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1a7411dc24e19567_0 new file mode 100644 index 000000000..e34bfce08 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1a7411dc24e19567_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1a8197f9dee49c28_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1a8197f9dee49c28_0 new file mode 100644 index 000000000..a45bad861 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1a8197f9dee49c28_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1a8b1d6921fe2461_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1a8b1d6921fe2461_0 new file mode 100644 index 000000000..555eefa7d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1a8b1d6921fe2461_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1abc7b45676a9f9a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1abc7b45676a9f9a_0 new file mode 100644 index 000000000..10edb155d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1abc7b45676a9f9a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1ac5bb9a08337938_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1ac5bb9a08337938_0 new file mode 100644 index 000000000..edad2c7a9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1ac5bb9a08337938_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1af689b3962440ed_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1af689b3962440ed_0 new file mode 100644 index 000000000..401e0f757 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1af689b3962440ed_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1b26816b9a4ff454_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1b26816b9a4ff454_0 new file mode 100644 index 000000000..43219f005 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1b26816b9a4ff454_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1bb55670a0c567ca_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1bb55670a0c567ca_0 index cc253d5a4..980d32435 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/1bb55670a0c567ca_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/1bb55670a0c567ca_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1be0da94225e5c44_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1be0da94225e5c44_0 new file mode 100644 index 000000000..4efd98de9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1be0da94225e5c44_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1bebca6030f7cbf0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1bebca6030f7cbf0_0 new file mode 100644 index 000000000..787b6c378 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1bebca6030f7cbf0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1c68cbe3e7b83b19_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1c68cbe3e7b83b19_0 new file mode 100644 index 000000000..63d6bf269 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1c68cbe3e7b83b19_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1c9d83e958befcd5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1c9d83e958befcd5_0 new file mode 100644 index 000000000..74abe635e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1c9d83e958befcd5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1cb5e6c8a9a20770_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1cb5e6c8a9a20770_0 deleted file mode 100644 index 7174eadfc..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/1cb5e6c8a9a20770_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1d55128a36f06365_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1d55128a36f06365_0 new file mode 100644 index 000000000..ae85948ab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1d55128a36f06365_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1d90154be049e240_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1d90154be049e240_0 new file mode 100644 index 000000000..4304bd9d3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1d90154be049e240_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1da0ed554cf7e0f4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1da0ed554cf7e0f4_0 new file mode 100644 index 000000000..ce6f9b5e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1da0ed554cf7e0f4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1e240e6622872d30_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1e240e6622872d30_0 index b22026b4e..7fc91b181 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/1e240e6622872d30_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/1e240e6622872d30_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1e46908dd1657b14_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1e46908dd1657b14_0 new file mode 100644 index 000000000..801189478 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1e46908dd1657b14_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1e46f67686b5e2dc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1e46f67686b5e2dc_0 new file mode 100644 index 000000000..5f48e9a43 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1e46f67686b5e2dc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1eb452ee177d72ae_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1eb452ee177d72ae_0 new file mode 100644 index 000000000..908dece4e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1eb452ee177d72ae_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1ecab8e2140b7be2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1ecab8e2140b7be2_0 new file mode 100644 index 000000000..91a1bbe4b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1ecab8e2140b7be2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1f027da1488890bf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1f027da1488890bf_0 new file mode 100644 index 000000000..c22da61a5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1f027da1488890bf_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1f0bd1f47f3406f3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1f0bd1f47f3406f3_0 new file mode 100644 index 000000000..23d761a23 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1f0bd1f47f3406f3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1f17d2cd2e77379a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1f17d2cd2e77379a_0 new file mode 100644 index 000000000..1e380e45f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1f17d2cd2e77379a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1f18c61c46a6e33b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1f18c61c46a6e33b_0 deleted file mode 100644 index bd1dad0fb..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/1f18c61c46a6e33b_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1f1c12d41ea77959_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1f1c12d41ea77959_0 new file mode 100644 index 000000000..8936c7db1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1f1c12d41ea77959_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1f1f5d4d5dfb1372_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1f1f5d4d5dfb1372_0 new file mode 100644 index 000000000..7e711c1d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1f1f5d4d5dfb1372_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1f3465fc13e97c43_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1f3465fc13e97c43_0 new file mode 100644 index 000000000..e9b72a3df Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1f3465fc13e97c43_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1f6966fe8c2c7224_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1f6966fe8c2c7224_0 new file mode 100644 index 000000000..5ad1c9086 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1f6966fe8c2c7224_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/1fd5728a0194d2f8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/1fd5728a0194d2f8_0 new file mode 100644 index 000000000..306801beb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/1fd5728a0194d2f8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/202a24c6ff52d4c0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/202a24c6ff52d4c0_0 new file mode 100644 index 000000000..3dc6fbd60 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/202a24c6ff52d4c0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/208858426f96f3e6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/208858426f96f3e6_0 new file mode 100644 index 000000000..290f4a278 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/208858426f96f3e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/20d708d5b0ff4c74_0 b/notebooklm_chrome_profile/Default/Code Cache/js/20d708d5b0ff4c74_0 new file mode 100644 index 000000000..0212884ac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/20d708d5b0ff4c74_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/215c40bca589a352_0 b/notebooklm_chrome_profile/Default/Code Cache/js/215c40bca589a352_0 deleted file mode 100644 index ebe13dbc8..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/215c40bca589a352_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/221e0172ab383b0a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/221e0172ab383b0a_0 new file mode 100644 index 000000000..a264d3d95 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/221e0172ab383b0a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/222215de276faf86_0 b/notebooklm_chrome_profile/Default/Code Cache/js/222215de276faf86_0 new file mode 100644 index 000000000..d1509899d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/222215de276faf86_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2230d0639a5563af_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2230d0639a5563af_0 new file mode 100644 index 000000000..f9288aba3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2230d0639a5563af_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/22a29fff2b2e6926_0 b/notebooklm_chrome_profile/Default/Code Cache/js/22a29fff2b2e6926_0 new file mode 100644 index 000000000..827a3463c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/22a29fff2b2e6926_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/22c7bb4d3a6ffb8f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/22c7bb4d3a6ffb8f_0 new file mode 100644 index 000000000..ec196e7cb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/22c7bb4d3a6ffb8f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/235f6e0744c97ef7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/235f6e0744c97ef7_0 new file mode 100644 index 000000000..710d21557 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/235f6e0744c97ef7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/238a859e52ade074_0 b/notebooklm_chrome_profile/Default/Code Cache/js/238a859e52ade074_0 deleted file mode 100644 index 35c036892..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/238a859e52ade074_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/238c4fe057bfa2f6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/238c4fe057bfa2f6_0 new file mode 100644 index 000000000..4b77dd2e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/238c4fe057bfa2f6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/23ca7aafd39b3ea4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/23ca7aafd39b3ea4_0 new file mode 100644 index 000000000..4df23cc37 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/23ca7aafd39b3ea4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/23df78b983b987ba_0 b/notebooklm_chrome_profile/Default/Code Cache/js/23df78b983b987ba_0 new file mode 100644 index 000000000..65028321e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/23df78b983b987ba_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/23e7f7b5b67da117_0 b/notebooklm_chrome_profile/Default/Code Cache/js/23e7f7b5b67da117_0 new file mode 100644 index 000000000..e813b0bf8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/23e7f7b5b67da117_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/23fc2f3f4ec255c2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/23fc2f3f4ec255c2_0 new file mode 100644 index 000000000..5bddfbf26 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/23fc2f3f4ec255c2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/240c17a4db6766f2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/240c17a4db6766f2_0 new file mode 100644 index 000000000..12e3487b9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/240c17a4db6766f2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2453b4fd5f0d0ae2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2453b4fd5f0d0ae2_0 new file mode 100644 index 000000000..f277fe498 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2453b4fd5f0d0ae2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/246798a9aabb67c2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/246798a9aabb67c2_0 new file mode 100644 index 000000000..821a47d35 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/246798a9aabb67c2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/24d71964cbafb08f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/24d71964cbafb08f_0 new file mode 100644 index 000000000..7db189345 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/24d71964cbafb08f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/24d9c17735ba369f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/24d9c17735ba369f_0 index e5933874b..ff74a2cba 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/24d9c17735ba369f_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/24d9c17735ba369f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/252806fe6b4d6230_0 b/notebooklm_chrome_profile/Default/Code Cache/js/252806fe6b4d6230_0 new file mode 100644 index 000000000..0afd15d27 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/252806fe6b4d6230_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2553404be5dc530d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2553404be5dc530d_0 new file mode 100644 index 000000000..427499408 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2553404be5dc530d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/258bee0372044d16_0 b/notebooklm_chrome_profile/Default/Code Cache/js/258bee0372044d16_0 deleted file mode 100644 index 2e3b2abae..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/258bee0372044d16_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/259fcbc53a0ed7f1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/259fcbc53a0ed7f1_0 new file mode 100644 index 000000000..d46417e82 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/259fcbc53a0ed7f1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/25c62281734df54d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/25c62281734df54d_0 new file mode 100644 index 000000000..871d8f8f2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/25c62281734df54d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/25f1a54ae3027f94_0 b/notebooklm_chrome_profile/Default/Code Cache/js/25f1a54ae3027f94_0 new file mode 100644 index 000000000..de8e9fd5e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/25f1a54ae3027f94_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/260668d024ac8d43_0 b/notebooklm_chrome_profile/Default/Code Cache/js/260668d024ac8d43_0 new file mode 100644 index 000000000..ddaadce40 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/260668d024ac8d43_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2628a119dcbd2994_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2628a119dcbd2994_0 new file mode 100644 index 000000000..d120c1bac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2628a119dcbd2994_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/262edbdb63b8f809_0 b/notebooklm_chrome_profile/Default/Code Cache/js/262edbdb63b8f809_0 new file mode 100644 index 000000000..44d85f2d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/262edbdb63b8f809_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/26381875c3d9a78d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/26381875c3d9a78d_0 new file mode 100644 index 000000000..5311e6682 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/26381875c3d9a78d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2641b57fd58e2044_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2641b57fd58e2044_0 new file mode 100644 index 000000000..e404ac76e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2641b57fd58e2044_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2697975b27d127ea_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2697975b27d127ea_0 new file mode 100644 index 000000000..b1aa86d80 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2697975b27d127ea_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/26b767f426687ccd_0 b/notebooklm_chrome_profile/Default/Code Cache/js/26b767f426687ccd_0 new file mode 100644 index 000000000..d15e2d44e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/26b767f426687ccd_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/26d143d5930a3b0a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/26d143d5930a3b0a_0 new file mode 100644 index 000000000..d177b9fcb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/26d143d5930a3b0a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/27b4cf57986b0561_0 b/notebooklm_chrome_profile/Default/Code Cache/js/27b4cf57986b0561_0 new file mode 100644 index 000000000..24e19e09c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/27b4cf57986b0561_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/27cd8116dee976f7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/27cd8116dee976f7_0 new file mode 100644 index 000000000..e4a39d4e8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/27cd8116dee976f7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/28032a7383e564a8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/28032a7383e564a8_0 new file mode 100644 index 000000000..4aae18fe0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/28032a7383e564a8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2865948778ce6f9f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2865948778ce6f9f_0 new file mode 100644 index 000000000..70dd4fc10 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2865948778ce6f9f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/28e884c8b9fb2d1f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/28e884c8b9fb2d1f_0 new file mode 100644 index 000000000..70e46b669 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/28e884c8b9fb2d1f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/291aca86e1c916f1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/291aca86e1c916f1_0 new file mode 100644 index 000000000..e9bac1952 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/291aca86e1c916f1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/295b666b2a31c778_0 b/notebooklm_chrome_profile/Default/Code Cache/js/295b666b2a31c778_0 new file mode 100644 index 000000000..78792cff2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/295b666b2a31c778_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/29955024f0e3efbc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/29955024f0e3efbc_0 new file mode 100644 index 000000000..0aaa55cb6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/29955024f0e3efbc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/29d2572c3b4bfcf3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/29d2572c3b4bfcf3_0 index f350262ff..41326299b 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/29d2572c3b4bfcf3_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/29d2572c3b4bfcf3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2a0fed9ce0810ebe_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2a0fed9ce0810ebe_0 new file mode 100644 index 000000000..7657d676c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2a0fed9ce0810ebe_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2a3e3155a6717466_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2a3e3155a6717466_0 new file mode 100644 index 000000000..46bcbca66 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2a3e3155a6717466_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2a54c166e6f81cbd_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2a54c166e6f81cbd_0 new file mode 100644 index 000000000..2bcfb623f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2a54c166e6f81cbd_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2a77617138f177e0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2a77617138f177e0_0 deleted file mode 100644 index 54676e601..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/2a77617138f177e0_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2ae6ab160557570f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2ae6ab160557570f_0 new file mode 100644 index 000000000..660c92684 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2ae6ab160557570f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2ae9abf530fddb2f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2ae9abf530fddb2f_0 new file mode 100644 index 000000000..3d9628026 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2ae9abf530fddb2f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2b41b54002b3b1c9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2b41b54002b3b1c9_0 new file mode 100644 index 000000000..32849e81d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2b41b54002b3b1c9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2b5bc3afed18d8b0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2b5bc3afed18d8b0_0 new file mode 100644 index 000000000..6ed101d1e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2b5bc3afed18d8b0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2b8a2bbfae6f724e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2b8a2bbfae6f724e_0 index bb0dfbf4b..7ad5aa02b 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/2b8a2bbfae6f724e_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/2b8a2bbfae6f724e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2ba73241a5e21095_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2ba73241a5e21095_0 new file mode 100644 index 000000000..0e62dc78b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2ba73241a5e21095_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2bdb8b22d01da60c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2bdb8b22d01da60c_0 new file mode 100644 index 000000000..a6ee71eb1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2bdb8b22d01da60c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2beb761e55fc064d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2beb761e55fc064d_0 index 0a63ee91f..fcd299a24 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/2beb761e55fc064d_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/2beb761e55fc064d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2c182d00309944f9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2c182d00309944f9_0 new file mode 100644 index 000000000..8d6c715f7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2c182d00309944f9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2c3630575be9275c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2c3630575be9275c_0 new file mode 100644 index 000000000..993cc1c65 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2c3630575be9275c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2cacb4ca6ebf017d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2cacb4ca6ebf017d_0 deleted file mode 100644 index 760a3ae60..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/2cacb4ca6ebf017d_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2cb92e9d50cfc9ba_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2cb92e9d50cfc9ba_0 new file mode 100644 index 000000000..94497cecd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2cb92e9d50cfc9ba_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2d981fa723da0e2b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2d981fa723da0e2b_0 new file mode 100644 index 000000000..3d1be6942 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2d981fa723da0e2b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2e01dedf5e10abea_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2e01dedf5e10abea_0 new file mode 100644 index 000000000..abbbde8a2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2e01dedf5e10abea_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2e09c6129f30b28c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2e09c6129f30b28c_0 new file mode 100644 index 000000000..1694ba59f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2e09c6129f30b28c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2e0bd8eeea1f496f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2e0bd8eeea1f496f_0 new file mode 100644 index 000000000..148837c0a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2e0bd8eeea1f496f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2e128eb89f2f1298_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2e128eb89f2f1298_0 new file mode 100644 index 000000000..68a54160b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2e128eb89f2f1298_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2e14bc83bdab64d8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2e14bc83bdab64d8_0 new file mode 100644 index 000000000..24c98433b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2e14bc83bdab64d8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2e1de27ac9bf53fc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2e1de27ac9bf53fc_0 new file mode 100644 index 000000000..329e684de Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2e1de27ac9bf53fc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2e4f03d0263412f3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2e4f03d0263412f3_0 new file mode 100644 index 000000000..82387ccc6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2e4f03d0263412f3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2eab2a10d853570d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2eab2a10d853570d_0 new file mode 100644 index 000000000..68e8df0e1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2eab2a10d853570d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2f6a182667f5e527_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2f6a182667f5e527_0 new file mode 100644 index 000000000..d351f0cfa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2f6a182667f5e527_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2f8b144609fc4bee_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2f8b144609fc4bee_0 new file mode 100644 index 000000000..cbd29297d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2f8b144609fc4bee_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2fba844c6d413664_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2fba844c6d413664_0 new file mode 100644 index 000000000..997233b2b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2fba844c6d413664_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2fda1dbb96e4d541_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2fda1dbb96e4d541_0 new file mode 100644 index 000000000..af420a639 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2fda1dbb96e4d541_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/2ff51de3bfe8925f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/2ff51de3bfe8925f_0 new file mode 100644 index 000000000..f8e4b8041 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/2ff51de3bfe8925f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/300a8952a14e313d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/300a8952a14e313d_0 new file mode 100644 index 000000000..ba508a923 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/300a8952a14e313d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/300ce674f1bd7ee8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/300ce674f1bd7ee8_0 new file mode 100644 index 000000000..ed623a3bd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/300ce674f1bd7ee8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/301bfc2cc2173a9c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/301bfc2cc2173a9c_0 deleted file mode 100644 index aa0d301f7..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/301bfc2cc2173a9c_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/309cb9b2c8c7b385_0 b/notebooklm_chrome_profile/Default/Code Cache/js/309cb9b2c8c7b385_0 new file mode 100644 index 000000000..4d0a5eba4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/309cb9b2c8c7b385_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/311b970fb9e108e4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/311b970fb9e108e4_0 new file mode 100644 index 000000000..8a693723d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/311b970fb9e108e4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3131ce6d96fe0742_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3131ce6d96fe0742_0 new file mode 100644 index 000000000..9490a02bf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3131ce6d96fe0742_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/31c022eb140f876c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/31c022eb140f876c_0 new file mode 100644 index 000000000..75917883d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/31c022eb140f876c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/31d3c6e13399906b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/31d3c6e13399906b_0 new file mode 100644 index 000000000..ace79e6ab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/31d3c6e13399906b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3208a1ee55f791b8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3208a1ee55f791b8_0 new file mode 100644 index 000000000..fa3827090 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3208a1ee55f791b8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/321a31b9c12cc688_0 b/notebooklm_chrome_profile/Default/Code Cache/js/321a31b9c12cc688_0 new file mode 100644 index 000000000..2dd46523e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/321a31b9c12cc688_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/322205350afca2a3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/322205350afca2a3_0 new file mode 100644 index 000000000..4f3a3d5f4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/322205350afca2a3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/32497cfb68c48799_0 b/notebooklm_chrome_profile/Default/Code Cache/js/32497cfb68c48799_0 new file mode 100644 index 000000000..47f2ffb64 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/32497cfb68c48799_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/326524868b2c4a2c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/326524868b2c4a2c_0 new file mode 100644 index 000000000..b8e9b7d73 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/326524868b2c4a2c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3265552b3fb1ea5f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3265552b3fb1ea5f_0 new file mode 100644 index 000000000..77bfdbec9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3265552b3fb1ea5f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/326cbda6280af41e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/326cbda6280af41e_0 new file mode 100644 index 000000000..5bccd0e55 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/326cbda6280af41e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/327b291fbc79ab32_0 b/notebooklm_chrome_profile/Default/Code Cache/js/327b291fbc79ab32_0 new file mode 100644 index 000000000..9278ff99d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/327b291fbc79ab32_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/32b10b0c39104b63_0 b/notebooklm_chrome_profile/Default/Code Cache/js/32b10b0c39104b63_0 new file mode 100644 index 000000000..b45bffabb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/32b10b0c39104b63_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/32d73009e10d0474_0 b/notebooklm_chrome_profile/Default/Code Cache/js/32d73009e10d0474_0 index c30334f09..cc988fffa 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/32d73009e10d0474_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/32d73009e10d0474_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/32f599935ceaec2e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/32f599935ceaec2e_0 new file mode 100644 index 000000000..b402a9f79 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/32f599935ceaec2e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3307f2da62085672_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3307f2da62085672_0 new file mode 100644 index 000000000..70c891799 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3307f2da62085672_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3327b23e2fd6d207_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3327b23e2fd6d207_0 new file mode 100644 index 000000000..c7f6b6aa0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3327b23e2fd6d207_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/334425fefff7cf2c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/334425fefff7cf2c_0 new file mode 100644 index 000000000..8a95eb0e1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/334425fefff7cf2c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/335e69ddec2b9ac6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/335e69ddec2b9ac6_0 index ddd8724b5..ab91bb174 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/335e69ddec2b9ac6_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/335e69ddec2b9ac6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/336587260ed28c17_0 b/notebooklm_chrome_profile/Default/Code Cache/js/336587260ed28c17_0 new file mode 100644 index 000000000..7eb981397 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/336587260ed28c17_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/33f228f0a3602ad3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/33f228f0a3602ad3_0 new file mode 100644 index 000000000..6f175e586 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/33f228f0a3602ad3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3427c769c6a71907_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3427c769c6a71907_0 new file mode 100644 index 000000000..4ead6f790 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3427c769c6a71907_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/343118cca5c25aeb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/343118cca5c25aeb_0 new file mode 100644 index 000000000..31d720ae1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/343118cca5c25aeb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3432fdce5709037f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3432fdce5709037f_0 new file mode 100644 index 000000000..5f661f0c9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3432fdce5709037f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3434ef3274ca0bfa_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3434ef3274ca0bfa_0 new file mode 100644 index 000000000..256223a10 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3434ef3274ca0bfa_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/34368f527278e218_0 b/notebooklm_chrome_profile/Default/Code Cache/js/34368f527278e218_0 new file mode 100644 index 000000000..a97eac6c8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/34368f527278e218_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/343979bb8408749d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/343979bb8408749d_0 new file mode 100644 index 000000000..9d44b8130 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/343979bb8408749d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/34438a193d086836_0 b/notebooklm_chrome_profile/Default/Code Cache/js/34438a193d086836_0 new file mode 100644 index 000000000..cd341d71b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/34438a193d086836_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/347732872e933d2e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/347732872e933d2e_0 new file mode 100644 index 000000000..5ca58801a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/347732872e933d2e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/348e43acdc5d40de_0 b/notebooklm_chrome_profile/Default/Code Cache/js/348e43acdc5d40de_0 new file mode 100644 index 000000000..8c4f4b3cb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/348e43acdc5d40de_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/349abdea37d8938c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/349abdea37d8938c_0 new file mode 100644 index 000000000..00640831c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/349abdea37d8938c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/35108e6f4f86b42b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/35108e6f4f86b42b_0 new file mode 100644 index 000000000..8113dd480 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/35108e6f4f86b42b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/35237f65c65ec1bf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/35237f65c65ec1bf_0 new file mode 100644 index 000000000..f1403c0e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/35237f65c65ec1bf_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/355e4e8c6134ebe6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/355e4e8c6134ebe6_0 new file mode 100644 index 000000000..cce87a9ef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/355e4e8c6134ebe6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/357b3e092a9b9db8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/357b3e092a9b9db8_0 new file mode 100644 index 000000000..490f8f5f8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/357b3e092a9b9db8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/35dc66930526ff3c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/35dc66930526ff3c_0 new file mode 100644 index 000000000..7334bd6f3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/35dc66930526ff3c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/361eb437f8dcad0e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/361eb437f8dcad0e_0 new file mode 100644 index 000000000..4435b6c1d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/361eb437f8dcad0e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/36244d15d2cfb593_0 b/notebooklm_chrome_profile/Default/Code Cache/js/36244d15d2cfb593_0 new file mode 100644 index 000000000..4e9d6e634 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/36244d15d2cfb593_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3641f00ef30c80d5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3641f00ef30c80d5_0 index 69a494bb7..badad813f 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/3641f00ef30c80d5_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/3641f00ef30c80d5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/36b5869308372432_0 b/notebooklm_chrome_profile/Default/Code Cache/js/36b5869308372432_0 new file mode 100644 index 000000000..1c25cc25b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/36b5869308372432_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/36c9a35c46008a85_0 b/notebooklm_chrome_profile/Default/Code Cache/js/36c9a35c46008a85_0 new file mode 100644 index 000000000..c57b618ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/36c9a35c46008a85_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/379d7fe13f9108e9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/379d7fe13f9108e9_0 new file mode 100644 index 000000000..a7f13e889 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/379d7fe13f9108e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/379f8a8c8d9caafa_0 b/notebooklm_chrome_profile/Default/Code Cache/js/379f8a8c8d9caafa_0 new file mode 100644 index 000000000..c57feefb4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/379f8a8c8d9caafa_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/37bbbe8318a7f4a2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/37bbbe8318a7f4a2_0 new file mode 100644 index 000000000..22ce775bd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/37bbbe8318a7f4a2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/386eaceb23457673_0 b/notebooklm_chrome_profile/Default/Code Cache/js/386eaceb23457673_0 index e124dd695..0335332e3 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/386eaceb23457673_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/386eaceb23457673_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/38c11275482314ac_0 b/notebooklm_chrome_profile/Default/Code Cache/js/38c11275482314ac_0 new file mode 100644 index 000000000..d25fc61f0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/38c11275482314ac_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/38d55573679e611c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/38d55573679e611c_0 new file mode 100644 index 000000000..96f651db2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/38d55573679e611c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3907361577fb6144_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3907361577fb6144_0 index 435e0846c..3c6bc172f 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/3907361577fb6144_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/3907361577fb6144_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/393444dfc6c0158f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/393444dfc6c0158f_0 deleted file mode 100644 index 38ce8d7da..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/393444dfc6c0158f_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3957b09c22f44cdc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3957b09c22f44cdc_0 new file mode 100644 index 000000000..2672c86b2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3957b09c22f44cdc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3966f31568a0945b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3966f31568a0945b_0 new file mode 100644 index 000000000..7df0cd65c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3966f31568a0945b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/398af7595c851674_0 b/notebooklm_chrome_profile/Default/Code Cache/js/398af7595c851674_0 new file mode 100644 index 000000000..6c94ab722 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/398af7595c851674_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3a120e52a0686e5f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3a120e52a0686e5f_0 new file mode 100644 index 000000000..d4fe1b29f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3a120e52a0686e5f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3a1428cde5156eb4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3a1428cde5156eb4_0 new file mode 100644 index 000000000..35a204419 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3a1428cde5156eb4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3a74bfd79afe7e40_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3a74bfd79afe7e40_0 new file mode 100644 index 000000000..a88fc35e6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3a74bfd79afe7e40_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3a839c601474f42f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3a839c601474f42f_0 new file mode 100644 index 000000000..d9a2f4475 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3a839c601474f42f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3a97a802249f8b28_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3a97a802249f8b28_0 new file mode 100644 index 000000000..2352930b9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3a97a802249f8b28_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3aab692bc7c29289_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3aab692bc7c29289_0 new file mode 100644 index 000000000..b2d60c85b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3aab692bc7c29289_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3aabb980d6832607_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3aabb980d6832607_0 index de95186b2..3e932fa52 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/3aabb980d6832607_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/3aabb980d6832607_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3ae188d2c5620704_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3ae188d2c5620704_0 new file mode 100644 index 000000000..f683fa2f4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3ae188d2c5620704_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3ae541904104874a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3ae541904104874a_0 index aa4759e39..61d93fb90 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/3ae541904104874a_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/3ae541904104874a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3aea11ce9ef65773_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3aea11ce9ef65773_0 new file mode 100644 index 000000000..9258a1187 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3aea11ce9ef65773_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3b31f649e976d6f9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3b31f649e976d6f9_0 new file mode 100644 index 000000000..a14883de1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3b31f649e976d6f9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3b61938370100288_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3b61938370100288_0 new file mode 100644 index 000000000..830f49a8e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3b61938370100288_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3b62e70be3081084_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3b62e70be3081084_0 new file mode 100644 index 000000000..de7f3b477 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3b62e70be3081084_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3b8b8dc957b3301f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3b8b8dc957b3301f_0 new file mode 100644 index 000000000..cae6a8c65 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3b8b8dc957b3301f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3c421e7936a0932b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3c421e7936a0932b_0 new file mode 100644 index 000000000..30c7a5d5e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3c421e7936a0932b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3c691ee8bdf646ea_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3c691ee8bdf646ea_0 index c0b7d415f..baa56ef23 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/3c691ee8bdf646ea_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/3c691ee8bdf646ea_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3d074e2ecdd5af5e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3d074e2ecdd5af5e_0 new file mode 100644 index 000000000..c38380704 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3d074e2ecdd5af5e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3d0baa8c493e2665_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3d0baa8c493e2665_0 new file mode 100644 index 000000000..8d64459dc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3d0baa8c493e2665_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3d8464579635ed0d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3d8464579635ed0d_0 new file mode 100644 index 000000000..9f067b804 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3d8464579635ed0d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3da17f724c015536_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3da17f724c015536_0 new file mode 100644 index 000000000..65606ef9f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3da17f724c015536_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3dbd65cb84c656a0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3dbd65cb84c656a0_0 new file mode 100644 index 000000000..2449f5be6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3dbd65cb84c656a0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3dbe54b7c92541c6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3dbe54b7c92541c6_0 index e43bde02f..a71bff428 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/3dbe54b7c92541c6_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/3dbe54b7c92541c6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3de243b6188a6468_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3de243b6188a6468_0 new file mode 100644 index 000000000..b9858b96b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3de243b6188a6468_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3e1e5e426bb9428f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3e1e5e426bb9428f_0 new file mode 100644 index 000000000..898e6f8eb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3e1e5e426bb9428f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3f7a6b20fce3e1f8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3f7a6b20fce3e1f8_0 new file mode 100644 index 000000000..ad4b2883c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3f7a6b20fce3e1f8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3fc0b22efac73ffb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3fc0b22efac73ffb_0 new file mode 100644 index 000000000..6e86173d3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3fc0b22efac73ffb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3fd420a0d45dee9d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3fd420a0d45dee9d_0 new file mode 100644 index 000000000..242f3f303 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3fd420a0d45dee9d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/3ff327e1c8e563fc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/3ff327e1c8e563fc_0 new file mode 100644 index 000000000..d680e249c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/3ff327e1c8e563fc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4008e4a0568f3ebc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4008e4a0568f3ebc_0 new file mode 100644 index 000000000..006b01ef0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4008e4a0568f3ebc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4040f3281bbdfabf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4040f3281bbdfabf_0 new file mode 100644 index 000000000..9519d4540 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4040f3281bbdfabf_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/406383eec4faa245_0 b/notebooklm_chrome_profile/Default/Code Cache/js/406383eec4faa245_0 new file mode 100644 index 000000000..e6ce3bd74 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/406383eec4faa245_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/408963b9d51a731b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/408963b9d51a731b_0 new file mode 100644 index 000000000..d04f15246 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/408963b9d51a731b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/40ab9835709f07e0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/40ab9835709f07e0_0 deleted file mode 100644 index 38f3664e8..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/40ab9835709f07e0_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/40c300ed69eae38b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/40c300ed69eae38b_0 new file mode 100644 index 000000000..a712da762 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/40c300ed69eae38b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4100e76c591f6c1f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4100e76c591f6c1f_0 new file mode 100644 index 000000000..0db0ff8e7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4100e76c591f6c1f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/41381603a1102276_0 b/notebooklm_chrome_profile/Default/Code Cache/js/41381603a1102276_0 new file mode 100644 index 000000000..6ba46e535 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/41381603a1102276_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/417552840588e423_0 b/notebooklm_chrome_profile/Default/Code Cache/js/417552840588e423_0 new file mode 100644 index 000000000..be564cc18 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/417552840588e423_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4190d06d54a89884_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4190d06d54a89884_0 new file mode 100644 index 000000000..0317849d3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4190d06d54a89884_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/41ca508cdf5d744e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/41ca508cdf5d744e_0 new file mode 100644 index 000000000..72aace2b3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/41ca508cdf5d744e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4223d19e01da7d61_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4223d19e01da7d61_0 new file mode 100644 index 000000000..fecf99c91 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4223d19e01da7d61_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/423ce5f23d90e2be_0 b/notebooklm_chrome_profile/Default/Code Cache/js/423ce5f23d90e2be_0 new file mode 100644 index 000000000..6c7917f5a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/423ce5f23d90e2be_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/42e648e104f01388_0 b/notebooklm_chrome_profile/Default/Code Cache/js/42e648e104f01388_0 new file mode 100644 index 000000000..25991aafa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/42e648e104f01388_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/42e8b73a5ee09d31_0 b/notebooklm_chrome_profile/Default/Code Cache/js/42e8b73a5ee09d31_0 new file mode 100644 index 000000000..39242c831 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/42e8b73a5ee09d31_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/42f08c052e719b85_0 b/notebooklm_chrome_profile/Default/Code Cache/js/42f08c052e719b85_0 new file mode 100644 index 000000000..f136ec244 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/42f08c052e719b85_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/433debe5ef11d0b6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/433debe5ef11d0b6_0 new file mode 100644 index 000000000..e451bfbbe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/433debe5ef11d0b6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/43406286fc46b826_0 b/notebooklm_chrome_profile/Default/Code Cache/js/43406286fc46b826_0 new file mode 100644 index 000000000..49663d1f7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/43406286fc46b826_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/435d631bf55d8cc2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/435d631bf55d8cc2_0 new file mode 100644 index 000000000..f1f4fc6cd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/435d631bf55d8cc2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/435e4507d95357d9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/435e4507d95357d9_0 new file mode 100644 index 000000000..d5b205520 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/435e4507d95357d9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/438fd2f5e9caa603_0 b/notebooklm_chrome_profile/Default/Code Cache/js/438fd2f5e9caa603_0 new file mode 100644 index 000000000..945a9b1c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/438fd2f5e9caa603_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/43a8b46b1b3b2a20_0 b/notebooklm_chrome_profile/Default/Code Cache/js/43a8b46b1b3b2a20_0 new file mode 100644 index 000000000..91c09bda2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/43a8b46b1b3b2a20_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/43b34374d624c80f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/43b34374d624c80f_0 new file mode 100644 index 000000000..8acb952e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/43b34374d624c80f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/43c3b853aa907585_0 b/notebooklm_chrome_profile/Default/Code Cache/js/43c3b853aa907585_0 new file mode 100644 index 000000000..43d264755 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/43c3b853aa907585_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/43e66593b6733449_0 b/notebooklm_chrome_profile/Default/Code Cache/js/43e66593b6733449_0 new file mode 100644 index 000000000..9ddfba311 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/43e66593b6733449_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/43f06b9433578dde_0 b/notebooklm_chrome_profile/Default/Code Cache/js/43f06b9433578dde_0 new file mode 100644 index 000000000..ea5a8b8b0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/43f06b9433578dde_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4403420be7aca36b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4403420be7aca36b_0 new file mode 100644 index 000000000..62cb551af Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4403420be7aca36b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/441392583b120b29_0 b/notebooklm_chrome_profile/Default/Code Cache/js/441392583b120b29_0 new file mode 100644 index 000000000..954aa192f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/441392583b120b29_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/447137aa5b1cc494_0 b/notebooklm_chrome_profile/Default/Code Cache/js/447137aa5b1cc494_0 new file mode 100644 index 000000000..d61b1606c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/447137aa5b1cc494_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/447725eee272d141_0 b/notebooklm_chrome_profile/Default/Code Cache/js/447725eee272d141_0 new file mode 100644 index 000000000..1c887263c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/447725eee272d141_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4485ae28c61e5337_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4485ae28c61e5337_0 deleted file mode 100644 index 908393c14..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/4485ae28c61e5337_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/449ce2d8ede8bd5a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/449ce2d8ede8bd5a_0 new file mode 100644 index 000000000..4696af37b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/449ce2d8ede8bd5a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/44e2a5a3261be241_0 b/notebooklm_chrome_profile/Default/Code Cache/js/44e2a5a3261be241_0 new file mode 100644 index 000000000..069afe5d1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/44e2a5a3261be241_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4521079f1da84230_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4521079f1da84230_0 new file mode 100644 index 000000000..6ca97cc7f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4521079f1da84230_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/453ff29bb6301c67_0 b/notebooklm_chrome_profile/Default/Code Cache/js/453ff29bb6301c67_0 new file mode 100644 index 000000000..44314b982 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/453ff29bb6301c67_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4544ea0d0a931100_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4544ea0d0a931100_0 new file mode 100644 index 000000000..a3b4a3a4c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4544ea0d0a931100_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/45a40fba66a03689_0 b/notebooklm_chrome_profile/Default/Code Cache/js/45a40fba66a03689_0 new file mode 100644 index 000000000..cc220c216 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/45a40fba66a03689_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/45d0fa4898a28628_0 b/notebooklm_chrome_profile/Default/Code Cache/js/45d0fa4898a28628_0 new file mode 100644 index 000000000..df79a9068 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/45d0fa4898a28628_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/45e96b1d0434187b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/45e96b1d0434187b_0 new file mode 100644 index 000000000..18c5c19df Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/45e96b1d0434187b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4607044b2f5eda40_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4607044b2f5eda40_0 new file mode 100644 index 000000000..9d4859bbe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4607044b2f5eda40_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/464f2d3e14963e75_0 b/notebooklm_chrome_profile/Default/Code Cache/js/464f2d3e14963e75_0 new file mode 100644 index 000000000..f7d44672b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/464f2d3e14963e75_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/465c53cc17ab7c3a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/465c53cc17ab7c3a_0 new file mode 100644 index 000000000..350081a27 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/465c53cc17ab7c3a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/466031f4eb1da392_0 b/notebooklm_chrome_profile/Default/Code Cache/js/466031f4eb1da392_0 new file mode 100644 index 000000000..943849708 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/466031f4eb1da392_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/46852d95e642bb71_0 b/notebooklm_chrome_profile/Default/Code Cache/js/46852d95e642bb71_0 new file mode 100644 index 000000000..571a1fc03 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/46852d95e642bb71_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/46a78cd7083234f1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/46a78cd7083234f1_0 new file mode 100644 index 000000000..297e5f7fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/46a78cd7083234f1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/47052e1e4b14bc82_0 b/notebooklm_chrome_profile/Default/Code Cache/js/47052e1e4b14bc82_0 new file mode 100644 index 000000000..c7e2a469b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/47052e1e4b14bc82_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/473930d14b48a23f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/473930d14b48a23f_0 new file mode 100644 index 000000000..cc200847e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/473930d14b48a23f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/474f00df5b840924_0 b/notebooklm_chrome_profile/Default/Code Cache/js/474f00df5b840924_0 new file mode 100644 index 000000000..71cea4be9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/474f00df5b840924_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4750ec4b9036b8fd_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4750ec4b9036b8fd_0 new file mode 100644 index 000000000..c83a901b9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4750ec4b9036b8fd_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/475e825839013204_0 b/notebooklm_chrome_profile/Default/Code Cache/js/475e825839013204_0 new file mode 100644 index 000000000..0a5818c09 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/475e825839013204_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/47627265a21c5e02_0 b/notebooklm_chrome_profile/Default/Code Cache/js/47627265a21c5e02_0 new file mode 100644 index 000000000..03ab37c7b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/47627265a21c5e02_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/479ebfb66d3a60e9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/479ebfb66d3a60e9_0 new file mode 100644 index 000000000..fe212b372 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/479ebfb66d3a60e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/47f89f60a7a4f0d0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/47f89f60a7a4f0d0_0 new file mode 100644 index 000000000..be9fa50ea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/47f89f60a7a4f0d0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/47fc0597dac40958_0 b/notebooklm_chrome_profile/Default/Code Cache/js/47fc0597dac40958_0 new file mode 100644 index 000000000..375ee4abe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/47fc0597dac40958_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/48027debcf7467de_0 b/notebooklm_chrome_profile/Default/Code Cache/js/48027debcf7467de_0 new file mode 100644 index 000000000..06eade7ba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/48027debcf7467de_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/489e4c16114d173d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/489e4c16114d173d_0 new file mode 100644 index 000000000..ecdab2589 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/489e4c16114d173d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/490e0f62d0685a8d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/490e0f62d0685a8d_0 new file mode 100644 index 000000000..36bd13ea7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/490e0f62d0685a8d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/491c179549460dc7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/491c179549460dc7_0 new file mode 100644 index 000000000..14e1da68b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/491c179549460dc7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4924963c6c21fe55_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4924963c6c21fe55_0 new file mode 100644 index 000000000..910c2505b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4924963c6c21fe55_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4927c7ea832dc4e0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4927c7ea832dc4e0_0 new file mode 100644 index 000000000..41a8ecadc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4927c7ea832dc4e0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4947004c3ed8e1d8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4947004c3ed8e1d8_0 new file mode 100644 index 000000000..4e7a89eff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4947004c3ed8e1d8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/494e60775f15e4bf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/494e60775f15e4bf_0 new file mode 100644 index 000000000..58fbf8ce6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/494e60775f15e4bf_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/49745782f513cd34_0 b/notebooklm_chrome_profile/Default/Code Cache/js/49745782f513cd34_0 new file mode 100644 index 000000000..a5e6b328b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/49745782f513cd34_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/49a26507e9ebb4fb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/49a26507e9ebb4fb_0 new file mode 100644 index 000000000..3bfe66e27 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/49a26507e9ebb4fb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/49b129b2d173a0d9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/49b129b2d173a0d9_0 new file mode 100644 index 000000000..7c81a4212 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/49b129b2d173a0d9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/49c57a7c929c8fbf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/49c57a7c929c8fbf_0 new file mode 100644 index 000000000..b90ccec07 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/49c57a7c929c8fbf_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/49c912c4f54b5890_0 b/notebooklm_chrome_profile/Default/Code Cache/js/49c912c4f54b5890_0 new file mode 100644 index 000000000..51485e971 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/49c912c4f54b5890_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4a08ff8250460543_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4a08ff8250460543_0 new file mode 100644 index 000000000..00088ad2b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4a08ff8250460543_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4a238f1ebdccfc14_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4a238f1ebdccfc14_0 new file mode 100644 index 000000000..dbfd9a4f4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4a238f1ebdccfc14_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4a2f17c651d1cc54_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4a2f17c651d1cc54_0 new file mode 100644 index 000000000..b907abb93 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4a2f17c651d1cc54_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4a500f2e6e0a6d51_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4a500f2e6e0a6d51_0 new file mode 100644 index 000000000..9013d3d91 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4a500f2e6e0a6d51_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4a837406f06cf448_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4a837406f06cf448_0 new file mode 100644 index 000000000..1c4886e4f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4a837406f06cf448_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4b730bf2b4a7606c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4b730bf2b4a7606c_0 new file mode 100644 index 000000000..267dcf1cf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4b730bf2b4a7606c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4b7be3b460b89ee2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4b7be3b460b89ee2_0 new file mode 100644 index 000000000..f49e3d944 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4b7be3b460b89ee2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4bdc8bc46660aa16_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4bdc8bc46660aa16_0 new file mode 100644 index 000000000..c40861393 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4bdc8bc46660aa16_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4be355ba12f812d3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4be355ba12f812d3_0 new file mode 100644 index 000000000..a6222c51e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4be355ba12f812d3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4c002b2129385295_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4c002b2129385295_0 new file mode 100644 index 000000000..b7b1d40ac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4c002b2129385295_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4c2c895cc6ba2004_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4c2c895cc6ba2004_0 new file mode 100644 index 000000000..0ce4905fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4c2c895cc6ba2004_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4c5bb97d1c14bde1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4c5bb97d1c14bde1_0 new file mode 100644 index 000000000..049c49232 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4c5bb97d1c14bde1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4c958a625a077378_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4c958a625a077378_0 deleted file mode 100644 index 8aa58ce92..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/4c958a625a077378_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4cd08a692fa41740_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4cd08a692fa41740_0 new file mode 100644 index 000000000..9e333f485 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4cd08a692fa41740_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4cd5ef926d131b96_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4cd5ef926d131b96_0 new file mode 100644 index 000000000..94561fe45 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4cd5ef926d131b96_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4ce07c12994c7895_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4ce07c12994c7895_0 new file mode 100644 index 000000000..4dc55e02c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4ce07c12994c7895_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4d07b3e6cbfed2d1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4d07b3e6cbfed2d1_0 new file mode 100644 index 000000000..90bc2bc3d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4d07b3e6cbfed2d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4d0eccbcdb5dc3a5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4d0eccbcdb5dc3a5_0 new file mode 100644 index 000000000..1e73af337 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4d0eccbcdb5dc3a5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4d1b45648f87f815_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4d1b45648f87f815_0 new file mode 100644 index 000000000..13e5bf9ef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4d1b45648f87f815_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4d89e7dd4e62fa40_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4d89e7dd4e62fa40_0 new file mode 100644 index 000000000..ba51a6b83 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4d89e7dd4e62fa40_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4daab2d453647623_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4daab2d453647623_0 new file mode 100644 index 000000000..2a6649ebb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4daab2d453647623_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4db87373523dead2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4db87373523dead2_0 new file mode 100644 index 000000000..f02318d7c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4db87373523dead2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4dc9b7439223b29e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4dc9b7439223b29e_0 new file mode 100644 index 000000000..94c9a078e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4dc9b7439223b29e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4e715bdfd63f2c67_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4e715bdfd63f2c67_0 new file mode 100644 index 000000000..2d47bdc94 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4e715bdfd63f2c67_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4e7be784c1b7cfdf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4e7be784c1b7cfdf_0 new file mode 100644 index 000000000..bb4f8c164 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4e7be784c1b7cfdf_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4ee17834f4cb2d7e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4ee17834f4cb2d7e_0 new file mode 100644 index 000000000..3b4113f99 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4ee17834f4cb2d7e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4ee6a5a34e0b4380_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4ee6a5a34e0b4380_0 new file mode 100644 index 000000000..74bda4f1b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4ee6a5a34e0b4380_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4f5e545ded3bf86e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4f5e545ded3bf86e_0 new file mode 100644 index 000000000..b824a600e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4f5e545ded3bf86e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/4fdb475657e70837_0 b/notebooklm_chrome_profile/Default/Code Cache/js/4fdb475657e70837_0 new file mode 100644 index 000000000..43913f1e7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/4fdb475657e70837_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/504c66992fa30c7f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/504c66992fa30c7f_0 new file mode 100644 index 000000000..e62be55a9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/504c66992fa30c7f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5065d7f504bb70a0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5065d7f504bb70a0_0 index b88bb1d4e..1def47c5c 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/5065d7f504bb70a0_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/5065d7f504bb70a0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/507a1c57e77335ef_0 b/notebooklm_chrome_profile/Default/Code Cache/js/507a1c57e77335ef_0 new file mode 100644 index 000000000..b06ec6bee Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/507a1c57e77335ef_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/50953f92d8b6b33f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/50953f92d8b6b33f_0 new file mode 100644 index 000000000..49fd026c1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/50953f92d8b6b33f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/50f657483261658f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/50f657483261658f_0 new file mode 100644 index 000000000..b93a009ac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/50f657483261658f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5103a775703853e7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5103a775703853e7_0 new file mode 100644 index 000000000..4c718e978 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5103a775703853e7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5120befc972a06e5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5120befc972a06e5_0 new file mode 100644 index 000000000..75165d089 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5120befc972a06e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5128a0d5cf4a227b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5128a0d5cf4a227b_0 new file mode 100644 index 000000000..83eb4c0a7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5128a0d5cf4a227b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/513d361c526b3189_0 b/notebooklm_chrome_profile/Default/Code Cache/js/513d361c526b3189_0 new file mode 100644 index 000000000..d3123fce9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/513d361c526b3189_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/51430d60b082ef63_0 b/notebooklm_chrome_profile/Default/Code Cache/js/51430d60b082ef63_0 new file mode 100644 index 000000000..4b47db707 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/51430d60b082ef63_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/515cee0942d195f8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/515cee0942d195f8_0 new file mode 100644 index 000000000..b55d23764 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/515cee0942d195f8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5191f7e49e4fcc15_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5191f7e49e4fcc15_0 new file mode 100644 index 000000000..03ad28ca7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5191f7e49e4fcc15_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/51b45d7ecbab33ba_0 b/notebooklm_chrome_profile/Default/Code Cache/js/51b45d7ecbab33ba_0 new file mode 100644 index 000000000..945df0470 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/51b45d7ecbab33ba_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/51e94fb101bee900_0 b/notebooklm_chrome_profile/Default/Code Cache/js/51e94fb101bee900_0 new file mode 100644 index 000000000..aa995b910 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/51e94fb101bee900_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/51facf8e70e4fe09_0 b/notebooklm_chrome_profile/Default/Code Cache/js/51facf8e70e4fe09_0 new file mode 100644 index 000000000..d587d80d1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/51facf8e70e4fe09_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/524682af8d60ea36_0 b/notebooklm_chrome_profile/Default/Code Cache/js/524682af8d60ea36_0 new file mode 100644 index 000000000..cbd23a4fa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/524682af8d60ea36_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/52629cb04b2e21cb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/52629cb04b2e21cb_0 new file mode 100644 index 000000000..632b0a8c9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/52629cb04b2e21cb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5262e1eefe20003e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5262e1eefe20003e_0 new file mode 100644 index 000000000..6076221ba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5262e1eefe20003e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/52a317f9d0df6650_0 b/notebooklm_chrome_profile/Default/Code Cache/js/52a317f9d0df6650_0 new file mode 100644 index 000000000..acd37de51 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/52a317f9d0df6650_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/530ca782c03ee13a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/530ca782c03ee13a_0 new file mode 100644 index 000000000..a6a3fa6ce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/530ca782c03ee13a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5348a2b2897b96ae_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5348a2b2897b96ae_0 new file mode 100644 index 000000000..d8d577210 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5348a2b2897b96ae_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/539b600d259d6e37_0 b/notebooklm_chrome_profile/Default/Code Cache/js/539b600d259d6e37_0 new file mode 100644 index 000000000..dc4899c9a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/539b600d259d6e37_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/53e90e333cb90c3c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/53e90e333cb90c3c_0 new file mode 100644 index 000000000..164b1f343 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/53e90e333cb90c3c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/53f290f4b6b3f66f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/53f290f4b6b3f66f_0 new file mode 100644 index 000000000..d4eeeb08f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/53f290f4b6b3f66f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/540f7db3bff0a5d2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/540f7db3bff0a5d2_0 new file mode 100644 index 000000000..1ce9ba633 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/540f7db3bff0a5d2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5435e98e05e165dc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5435e98e05e165dc_0 new file mode 100644 index 000000000..651b2a8a8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5435e98e05e165dc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5469aa6209ec61a2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5469aa6209ec61a2_0 new file mode 100644 index 000000000..87af49d8a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5469aa6209ec61a2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/547f67655b2a1a7f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/547f67655b2a1a7f_0 new file mode 100644 index 000000000..aa973eb5b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/547f67655b2a1a7f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/54a6bcc087760264_0 b/notebooklm_chrome_profile/Default/Code Cache/js/54a6bcc087760264_0 index 25f4e15dc..39a39fd75 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/54a6bcc087760264_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/54a6bcc087760264_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/54d31d9adc81c474_0 b/notebooklm_chrome_profile/Default/Code Cache/js/54d31d9adc81c474_0 new file mode 100644 index 000000000..a4cc26ab9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/54d31d9adc81c474_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/553232f096669b29_0 b/notebooklm_chrome_profile/Default/Code Cache/js/553232f096669b29_0 new file mode 100644 index 000000000..4c9844f75 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/553232f096669b29_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5568f9d6dc6679a6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5568f9d6dc6679a6_0 deleted file mode 100644 index 35696711d..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/5568f9d6dc6679a6_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/558df3f2632fd11b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/558df3f2632fd11b_0 new file mode 100644 index 000000000..e2f850534 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/558df3f2632fd11b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/55b1eb1247b5f7ce_0 b/notebooklm_chrome_profile/Default/Code Cache/js/55b1eb1247b5f7ce_0 new file mode 100644 index 000000000..d3eb66921 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/55b1eb1247b5f7ce_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/55ca2881f7f19eab_0 b/notebooklm_chrome_profile/Default/Code Cache/js/55ca2881f7f19eab_0 new file mode 100644 index 000000000..7f9457b66 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/55ca2881f7f19eab_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/55ee4c1bb2d3fe8a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/55ee4c1bb2d3fe8a_0 new file mode 100644 index 000000000..899fe4932 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/55ee4c1bb2d3fe8a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/56084f87e6fd63d2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/56084f87e6fd63d2_0 new file mode 100644 index 000000000..70bc2aa70 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/56084f87e6fd63d2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/568c29d77c6b71bf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/568c29d77c6b71bf_0 new file mode 100644 index 000000000..4554900a0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/568c29d77c6b71bf_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/56eb620c3c0171ca_0 b/notebooklm_chrome_profile/Default/Code Cache/js/56eb620c3c0171ca_0 new file mode 100644 index 000000000..72b05baae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/56eb620c3c0171ca_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/570458684f39c2c6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/570458684f39c2c6_0 index 8be7f107d..388070ed7 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/570458684f39c2c6_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/570458684f39c2c6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/572c2ad8bc192877_0 b/notebooklm_chrome_profile/Default/Code Cache/js/572c2ad8bc192877_0 new file mode 100644 index 000000000..d020e1b79 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/572c2ad8bc192877_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/57720bd9aed932b4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/57720bd9aed932b4_0 new file mode 100644 index 000000000..dd0b926ac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/57720bd9aed932b4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5779030344fe7795_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5779030344fe7795_0 new file mode 100644 index 000000000..1efd4d2e1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5779030344fe7795_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/57804cf4e150d3ab_0 b/notebooklm_chrome_profile/Default/Code Cache/js/57804cf4e150d3ab_0 new file mode 100644 index 000000000..89c472253 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/57804cf4e150d3ab_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/57d6fdc0323f6ddb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/57d6fdc0323f6ddb_0 new file mode 100644 index 000000000..af495f9ab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/57d6fdc0323f6ddb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/58013ba4e2259170_0 b/notebooklm_chrome_profile/Default/Code Cache/js/58013ba4e2259170_0 new file mode 100644 index 000000000..b9fe87979 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/58013ba4e2259170_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/58014a89f808c884_0 b/notebooklm_chrome_profile/Default/Code Cache/js/58014a89f808c884_0 new file mode 100644 index 000000000..1dc9d93ce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/58014a89f808c884_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5819c8eb3d980b75_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5819c8eb3d980b75_0 new file mode 100644 index 000000000..86f516dd8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5819c8eb3d980b75_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5846219b9926e8b3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5846219b9926e8b3_0 new file mode 100644 index 000000000..91437c3f4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5846219b9926e8b3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/588e408c0579d674_0 b/notebooklm_chrome_profile/Default/Code Cache/js/588e408c0579d674_0 new file mode 100644 index 000000000..1a5a4278e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/588e408c0579d674_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/58d64ddbed806564_0 b/notebooklm_chrome_profile/Default/Code Cache/js/58d64ddbed806564_0 new file mode 100644 index 000000000..e072b596f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/58d64ddbed806564_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/58e8e6482cae741c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/58e8e6482cae741c_0 new file mode 100644 index 000000000..55ee7bd02 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/58e8e6482cae741c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5938da1bff4ea89e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5938da1bff4ea89e_0 new file mode 100644 index 000000000..a3952dab4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5938da1bff4ea89e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/596c12d0a166620a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/596c12d0a166620a_0 new file mode 100644 index 000000000..148c7482e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/596c12d0a166620a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/597ca95f4fc99db7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/597ca95f4fc99db7_0 new file mode 100644 index 000000000..0e049d680 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/597ca95f4fc99db7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/59e604127916c47c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/59e604127916c47c_0 new file mode 100644 index 000000000..89bcbd70f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/59e604127916c47c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5a3e3b2daf869977_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5a3e3b2daf869977_0 new file mode 100644 index 000000000..641da2421 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5a3e3b2daf869977_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5a68ee39b3eb0d03_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5a68ee39b3eb0d03_0 new file mode 100644 index 000000000..d696fdf04 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5a68ee39b3eb0d03_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5aae6217238bb1d6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5aae6217238bb1d6_0 new file mode 100644 index 000000000..c0d2d0c91 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5aae6217238bb1d6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5b0f3d26883ee516_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5b0f3d26883ee516_0 new file mode 100644 index 000000000..86e21c8d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5b0f3d26883ee516_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5b783755a5d8bb3b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5b783755a5d8bb3b_0 new file mode 100644 index 000000000..dc03c75ef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5b783755a5d8bb3b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5b83baca252bead1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5b83baca252bead1_0 new file mode 100644 index 000000000..cda57a703 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5b83baca252bead1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5ba659f38f5233f5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5ba659f38f5233f5_0 new file mode 100644 index 000000000..839ecd835 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5ba659f38f5233f5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5ba9967b7f1c425d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5ba9967b7f1c425d_0 new file mode 100644 index 000000000..d0aa75f7b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5ba9967b7f1c425d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5bb1d4fda3c2fd4f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5bb1d4fda3c2fd4f_0 new file mode 100644 index 000000000..0b38f3581 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5bb1d4fda3c2fd4f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5bc34ba6889227ff_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5bc34ba6889227ff_0 new file mode 100644 index 000000000..a9ea51f88 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5bc34ba6889227ff_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5c54e934121b5480_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5c54e934121b5480_0 new file mode 100644 index 000000000..f2b17cfa6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5c54e934121b5480_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5c75f7bf9ed08078_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5c75f7bf9ed08078_0 new file mode 100644 index 000000000..6bb251241 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5c75f7bf9ed08078_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5c851e345ba26ce0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5c851e345ba26ce0_0 new file mode 100644 index 000000000..d69665441 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5c851e345ba26ce0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5c8f0018e2252e98_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5c8f0018e2252e98_0 new file mode 100644 index 000000000..1958946ad Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5c8f0018e2252e98_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5c96a159372fd75c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5c96a159372fd75c_0 new file mode 100644 index 000000000..a810ce3a5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5c96a159372fd75c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5ca4c1bf53a42df1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5ca4c1bf53a42df1_0 new file mode 100644 index 000000000..88ccd69c6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5ca4c1bf53a42df1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5cbd1d41941bb25a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5cbd1d41941bb25a_0 new file mode 100644 index 000000000..bf589c4a5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5cbd1d41941bb25a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5cc8695bfd203bfe_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5cc8695bfd203bfe_0 new file mode 100644 index 000000000..6c05d48fc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5cc8695bfd203bfe_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5ccf636a7066daf2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5ccf636a7066daf2_0 new file mode 100644 index 000000000..6d03a1464 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5ccf636a7066daf2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5cebb7d67ef22906_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5cebb7d67ef22906_0 new file mode 100644 index 000000000..f503e6785 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5cebb7d67ef22906_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5cf25433b80efe33_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5cf25433b80efe33_0 new file mode 100644 index 000000000..0739df806 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5cf25433b80efe33_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5d09d64f43ed8aad_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5d09d64f43ed8aad_0 new file mode 100644 index 000000000..181b9db37 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5d09d64f43ed8aad_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5d56a3473999c11e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5d56a3473999c11e_0 deleted file mode 100644 index feb0c059e..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/5d56a3473999c11e_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5d7edcf9ec33e3c8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5d7edcf9ec33e3c8_0 new file mode 100644 index 000000000..ede858e1a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5d7edcf9ec33e3c8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5d8608e9c583b1c4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5d8608e9c583b1c4_0 new file mode 100644 index 000000000..3b39b44a9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5d8608e9c583b1c4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5db9390da74b2958_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5db9390da74b2958_0 index a29d51514..e7aa3f4de 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/5db9390da74b2958_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/5db9390da74b2958_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5dcd5d0e39a52484_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5dcd5d0e39a52484_0 new file mode 100644 index 000000000..f45d04844 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5dcd5d0e39a52484_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5dd0e5af41d6bdb7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5dd0e5af41d6bdb7_0 new file mode 100644 index 000000000..d6f38498c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5dd0e5af41d6bdb7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5dd6d5621f8485d6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5dd6d5621f8485d6_0 new file mode 100644 index 000000000..9d14f8d48 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5dd6d5621f8485d6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5e1790a7d6af0a5e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5e1790a7d6af0a5e_0 new file mode 100644 index 000000000..4a63bae8d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5e1790a7d6af0a5e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5e204685b96e2422_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5e204685b96e2422_0 new file mode 100644 index 000000000..2b4444533 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5e204685b96e2422_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5e25dd71deeaac11_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5e25dd71deeaac11_0 deleted file mode 100644 index 7aa504272..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/5e25dd71deeaac11_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5e5ffbd10030be47_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5e5ffbd10030be47_0 new file mode 100644 index 000000000..6eda8e2f5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5e5ffbd10030be47_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5e64f8a708c278dd_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5e64f8a708c278dd_0 new file mode 100644 index 000000000..51f2e5dc7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5e64f8a708c278dd_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5e9c4f15dafc94c3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5e9c4f15dafc94c3_0 new file mode 100644 index 000000000..7c80fdfb3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5e9c4f15dafc94c3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5ebdaba41f0fa309_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5ebdaba41f0fa309_0 new file mode 100644 index 000000000..547a48207 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5ebdaba41f0fa309_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5ec103a6d37376ac_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5ec103a6d37376ac_0 new file mode 100644 index 000000000..4a18a82f9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5ec103a6d37376ac_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5ee4e1ed04f8041c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5ee4e1ed04f8041c_0 new file mode 100644 index 000000000..90475ae96 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5ee4e1ed04f8041c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5ef0cd1b6dfa9a8f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5ef0cd1b6dfa9a8f_0 new file mode 100644 index 000000000..114ca2e1e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5ef0cd1b6dfa9a8f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5fa099c19f984c4d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5fa099c19f984c4d_0 new file mode 100644 index 000000000..2a5851291 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5fa099c19f984c4d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5faa2cc1b5163b3f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5faa2cc1b5163b3f_0 new file mode 100644 index 000000000..a9626a70a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/5faa2cc1b5163b3f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/5ff5687daeb95701_0 b/notebooklm_chrome_profile/Default/Code Cache/js/5ff5687daeb95701_0 index 660d4b80b..de0b807ff 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/5ff5687daeb95701_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/5ff5687daeb95701_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/603f1ccdf4b66c9b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/603f1ccdf4b66c9b_0 new file mode 100644 index 000000000..2d8400b34 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/603f1ccdf4b66c9b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6056efc3fff8700f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6056efc3fff8700f_0 new file mode 100644 index 000000000..79a0d7935 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6056efc3fff8700f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/605d3c86b3be9f9a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/605d3c86b3be9f9a_0 new file mode 100644 index 000000000..4d20236ab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/605d3c86b3be9f9a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/60cc85a548de33b5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/60cc85a548de33b5_0 index 63aaa2bef..8ceeec7c3 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/60cc85a548de33b5_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/60cc85a548de33b5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/60ddad8452b31c78_0 b/notebooklm_chrome_profile/Default/Code Cache/js/60ddad8452b31c78_0 new file mode 100644 index 000000000..92a85b6ea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/60ddad8452b31c78_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/613a7f6489b0ef42_0 b/notebooklm_chrome_profile/Default/Code Cache/js/613a7f6489b0ef42_0 new file mode 100644 index 000000000..6560849b2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/613a7f6489b0ef42_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/618283b1acc40f6c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/618283b1acc40f6c_0 new file mode 100644 index 000000000..313a13e81 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/618283b1acc40f6c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/619ef05b8623fa3d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/619ef05b8623fa3d_0 new file mode 100644 index 000000000..6a46f34ac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/619ef05b8623fa3d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/61c1d890fdb0b5e5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/61c1d890fdb0b5e5_0 new file mode 100644 index 000000000..02ef1829d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/61c1d890fdb0b5e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6208db8651428b39_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6208db8651428b39_0 deleted file mode 100644 index fe4c4b085..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/6208db8651428b39_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/625957dcc624d893_0 b/notebooklm_chrome_profile/Default/Code Cache/js/625957dcc624d893_0 new file mode 100644 index 000000000..9afef0910 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/625957dcc624d893_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6282bb3829945e2a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6282bb3829945e2a_0 new file mode 100644 index 000000000..7060184dd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6282bb3829945e2a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/62cc9ad8638f8c26_0 b/notebooklm_chrome_profile/Default/Code Cache/js/62cc9ad8638f8c26_0 new file mode 100644 index 000000000..a644c435c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/62cc9ad8638f8c26_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/62ed0388ee1a7890_0 b/notebooklm_chrome_profile/Default/Code Cache/js/62ed0388ee1a7890_0 new file mode 100644 index 000000000..0787fe040 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/62ed0388ee1a7890_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/63082578c91793eb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/63082578c91793eb_0 new file mode 100644 index 000000000..ee1ba768e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/63082578c91793eb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/630d601f3f74166b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/630d601f3f74166b_0 new file mode 100644 index 000000000..5f618b265 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/630d601f3f74166b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/632417892d621aed_0 b/notebooklm_chrome_profile/Default/Code Cache/js/632417892d621aed_0 index 85948203a..8b6cce69c 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/632417892d621aed_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/632417892d621aed_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/635dad1e63a76fee_0 b/notebooklm_chrome_profile/Default/Code Cache/js/635dad1e63a76fee_0 new file mode 100644 index 000000000..866bdb9f5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/635dad1e63a76fee_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6378e56cf3efbbed_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6378e56cf3efbbed_0 new file mode 100644 index 000000000..dcf580c0d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6378e56cf3efbbed_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/639bac33801ef816_0 b/notebooklm_chrome_profile/Default/Code Cache/js/639bac33801ef816_0 new file mode 100644 index 000000000..7cbcdfcc5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/639bac33801ef816_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/63adade9104f5516_0 b/notebooklm_chrome_profile/Default/Code Cache/js/63adade9104f5516_0 new file mode 100644 index 000000000..4489cacc6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/63adade9104f5516_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/63cf14ed1db000a4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/63cf14ed1db000a4_0 new file mode 100644 index 000000000..d1072f566 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/63cf14ed1db000a4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/63eb99f60ad36bf5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/63eb99f60ad36bf5_0 new file mode 100644 index 000000000..8ac5b1b90 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/63eb99f60ad36bf5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/640a069c68b32d87_0 b/notebooklm_chrome_profile/Default/Code Cache/js/640a069c68b32d87_0 new file mode 100644 index 000000000..cd93062f1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/640a069c68b32d87_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/641012311e963c99_0 b/notebooklm_chrome_profile/Default/Code Cache/js/641012311e963c99_0 new file mode 100644 index 000000000..dc06eb7a0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/641012311e963c99_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/64144a287f3c045a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/64144a287f3c045a_0 new file mode 100644 index 000000000..8f4e740b4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/64144a287f3c045a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/64257b65583d13eb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/64257b65583d13eb_0 new file mode 100644 index 000000000..6123f13ed Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/64257b65583d13eb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/64542420af8855ef_0 b/notebooklm_chrome_profile/Default/Code Cache/js/64542420af8855ef_0 new file mode 100644 index 000000000..e5a70507d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/64542420af8855ef_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/64646ba9926cad33_0 b/notebooklm_chrome_profile/Default/Code Cache/js/64646ba9926cad33_0 new file mode 100644 index 000000000..318599e73 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/64646ba9926cad33_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6466cac1825b247f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6466cac1825b247f_0 new file mode 100644 index 000000000..ea5fb4ddb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6466cac1825b247f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6478660e4dbb2837_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6478660e4dbb2837_0 new file mode 100644 index 000000000..823a46d39 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6478660e4dbb2837_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/64ead13b26ab9780_0 b/notebooklm_chrome_profile/Default/Code Cache/js/64ead13b26ab9780_0 new file mode 100644 index 000000000..3012d50b9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/64ead13b26ab9780_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/651cbf777fe5c630_0 b/notebooklm_chrome_profile/Default/Code Cache/js/651cbf777fe5c630_0 new file mode 100644 index 000000000..49602499c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/651cbf777fe5c630_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/652e9da09cb136aa_0 b/notebooklm_chrome_profile/Default/Code Cache/js/652e9da09cb136aa_0 new file mode 100644 index 000000000..291c406d3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/652e9da09cb136aa_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/653603738794af32_0 b/notebooklm_chrome_profile/Default/Code Cache/js/653603738794af32_0 new file mode 100644 index 000000000..0257e3f2d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/653603738794af32_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/657131e2c51a2a73_0 b/notebooklm_chrome_profile/Default/Code Cache/js/657131e2c51a2a73_0 new file mode 100644 index 000000000..671ba86ed Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/657131e2c51a2a73_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/65aa609b38ea606e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/65aa609b38ea606e_0 new file mode 100644 index 000000000..769184286 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/65aa609b38ea606e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/65fc2a1c1e439764_0 b/notebooklm_chrome_profile/Default/Code Cache/js/65fc2a1c1e439764_0 new file mode 100644 index 000000000..844745655 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/65fc2a1c1e439764_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/66ae09214eff45fb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/66ae09214eff45fb_0 new file mode 100644 index 000000000..9d79165cb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/66ae09214eff45fb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/66fb1899b8329e86_0 b/notebooklm_chrome_profile/Default/Code Cache/js/66fb1899b8329e86_0 new file mode 100644 index 000000000..a2378012b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/66fb1899b8329e86_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/67254012c95405c2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/67254012c95405c2_0 new file mode 100644 index 000000000..fb379fa4b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/67254012c95405c2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/675e0c264bcb6e0e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/675e0c264bcb6e0e_0 new file mode 100644 index 000000000..9c2e302cc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/675e0c264bcb6e0e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6762e027a945f272_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6762e027a945f272_0 new file mode 100644 index 000000000..78d90f69e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6762e027a945f272_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/67e449e9e9baab77_0 b/notebooklm_chrome_profile/Default/Code Cache/js/67e449e9e9baab77_0 new file mode 100644 index 000000000..29a041ae8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/67e449e9e9baab77_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/685aeaf127573336_0 b/notebooklm_chrome_profile/Default/Code Cache/js/685aeaf127573336_0 new file mode 100644 index 000000000..019ebd46a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/685aeaf127573336_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/685bcd2f6ce183eb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/685bcd2f6ce183eb_0 new file mode 100644 index 000000000..d48be22ab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/685bcd2f6ce183eb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6894a9d9d1e323f2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6894a9d9d1e323f2_0 new file mode 100644 index 000000000..60923aea7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6894a9d9d1e323f2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/689d196ae58d0934_0 b/notebooklm_chrome_profile/Default/Code Cache/js/689d196ae58d0934_0 new file mode 100644 index 000000000..6a6eaa145 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/689d196ae58d0934_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/68c2df1740aad509_0 b/notebooklm_chrome_profile/Default/Code Cache/js/68c2df1740aad509_0 new file mode 100644 index 000000000..8335766b7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/68c2df1740aad509_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/694544695683cc34_0 b/notebooklm_chrome_profile/Default/Code Cache/js/694544695683cc34_0 new file mode 100644 index 000000000..81c81ed14 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/694544695683cc34_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/695c06307ffeba0e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/695c06307ffeba0e_0 new file mode 100644 index 000000000..aceb80f79 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/695c06307ffeba0e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/69953066692762a2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/69953066692762a2_0 deleted file mode 100644 index aa43d6e3f..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/69953066692762a2_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/699d287dbfbb2b6f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/699d287dbfbb2b6f_0 new file mode 100644 index 000000000..54b7c304c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/699d287dbfbb2b6f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/69c2f0c263d1d2fb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/69c2f0c263d1d2fb_0 new file mode 100644 index 000000000..c40737fc6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/69c2f0c263d1d2fb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/69fa2b5dc2a6b0f3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/69fa2b5dc2a6b0f3_0 index eeb662bf0..de7aa9f43 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/69fa2b5dc2a6b0f3_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/69fa2b5dc2a6b0f3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6a1844515ecf1906_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6a1844515ecf1906_0 new file mode 100644 index 000000000..41904af85 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6a1844515ecf1906_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6a35aabad1e72357_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6a35aabad1e72357_0 new file mode 100644 index 000000000..a81e57383 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6a35aabad1e72357_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6aedb81499a0bc0f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6aedb81499a0bc0f_0 new file mode 100644 index 000000000..9da2da5d1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6aedb81499a0bc0f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6af97a6ea2e6b1ba_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6af97a6ea2e6b1ba_0 new file mode 100644 index 000000000..150b8d14b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6af97a6ea2e6b1ba_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6b128fa0ccc33523_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6b128fa0ccc33523_0 new file mode 100644 index 000000000..fe65387c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6b128fa0ccc33523_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6b223fa19d9f1687_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6b223fa19d9f1687_0 new file mode 100644 index 000000000..4f298e21f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6b223fa19d9f1687_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6b53a598182366be_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6b53a598182366be_0 new file mode 100644 index 000000000..c805bdd11 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6b53a598182366be_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6c0f133c1dc7e38b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6c0f133c1dc7e38b_0 new file mode 100644 index 000000000..48daf09fc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6c0f133c1dc7e38b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6c0fd1b0d6428686_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6c0fd1b0d6428686_0 new file mode 100644 index 000000000..9d5bc6929 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6c0fd1b0d6428686_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6c351a5d54a15c89_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6c351a5d54a15c89_0 new file mode 100644 index 000000000..087d5f6ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6c351a5d54a15c89_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6c89935625b1d6b5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6c89935625b1d6b5_0 new file mode 100644 index 000000000..c0f05c1b8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6c89935625b1d6b5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6caa3ad9179d6212_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6caa3ad9179d6212_0 new file mode 100644 index 000000000..0ac5841f6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6caa3ad9179d6212_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6caff229ca278b58_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6caff229ca278b58_0 new file mode 100644 index 000000000..c987f1b6c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6caff229ca278b58_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6cdf44358415da92_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6cdf44358415da92_0 index 98688aee5..a70843925 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/6cdf44358415da92_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/6cdf44358415da92_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6cdf93c03120a91a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6cdf93c03120a91a_0 new file mode 100644 index 000000000..cbe705d7c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6cdf93c03120a91a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6da5d4ff32bc61fb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6da5d4ff32bc61fb_0 new file mode 100644 index 000000000..01d465e94 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6da5d4ff32bc61fb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6dd4ac4e83e80fb6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6dd4ac4e83e80fb6_0 new file mode 100644 index 000000000..320e384e5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6dd4ac4e83e80fb6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6e139bc7bdbf1167_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6e139bc7bdbf1167_0 new file mode 100644 index 000000000..f4d76b366 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6e139bc7bdbf1167_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6e15adab402cdec7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6e15adab402cdec7_0 new file mode 100644 index 000000000..7e19bf7af Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6e15adab402cdec7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6e24e7faa0b27473_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6e24e7faa0b27473_0 new file mode 100644 index 000000000..de7b0a888 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6e24e7faa0b27473_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6e7cb515fc62cf68_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6e7cb515fc62cf68_0 new file mode 100644 index 000000000..6e1eb3b5e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6e7cb515fc62cf68_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6eba1b44a14eebc7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6eba1b44a14eebc7_0 new file mode 100644 index 000000000..6aceac873 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6eba1b44a14eebc7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6f1bbcbb44d46cd0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6f1bbcbb44d46cd0_0 new file mode 100644 index 000000000..ece364f4e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6f1bbcbb44d46cd0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6f8f07e6b9f9043a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6f8f07e6b9f9043a_0 new file mode 100644 index 000000000..aa98b229d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6f8f07e6b9f9043a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/6fb5f8706bb43bc1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/6fb5f8706bb43bc1_0 new file mode 100644 index 000000000..4f705b05c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/6fb5f8706bb43bc1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/700d3f1201365534_0 b/notebooklm_chrome_profile/Default/Code Cache/js/700d3f1201365534_0 new file mode 100644 index 000000000..fc4f2b149 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/700d3f1201365534_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7016addadf711c13_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7016addadf711c13_0 new file mode 100644 index 000000000..40a157bac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7016addadf711c13_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7021ecbec6161e4e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7021ecbec6161e4e_0 new file mode 100644 index 000000000..2651a0039 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7021ecbec6161e4e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7055710cfca8f404_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7055710cfca8f404_0 new file mode 100644 index 000000000..ea5f1e460 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7055710cfca8f404_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7068e02e6f968972_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7068e02e6f968972_0 deleted file mode 100644 index 68c24b183..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/7068e02e6f968972_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/70801a87c507ee07_0 b/notebooklm_chrome_profile/Default/Code Cache/js/70801a87c507ee07_0 new file mode 100644 index 000000000..f6ed3dd52 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/70801a87c507ee07_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/712daedafbd7ec24_0 b/notebooklm_chrome_profile/Default/Code Cache/js/712daedafbd7ec24_0 new file mode 100644 index 000000000..40a137cd2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/712daedafbd7ec24_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/713ff02585fe2c65_0 b/notebooklm_chrome_profile/Default/Code Cache/js/713ff02585fe2c65_0 new file mode 100644 index 000000000..6e9f7fa0b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/713ff02585fe2c65_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/71749028ff7546d9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/71749028ff7546d9_0 new file mode 100644 index 000000000..c49e0ce03 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/71749028ff7546d9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/71dd3acde17f4868_0 b/notebooklm_chrome_profile/Default/Code Cache/js/71dd3acde17f4868_0 new file mode 100644 index 000000000..2ccdd2d7d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/71dd3acde17f4868_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/71e1e44b2a335d7e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/71e1e44b2a335d7e_0 new file mode 100644 index 000000000..2b0715cbf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/71e1e44b2a335d7e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/721df46ad5c98186_0 b/notebooklm_chrome_profile/Default/Code Cache/js/721df46ad5c98186_0 new file mode 100644 index 000000000..d9bab5de9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/721df46ad5c98186_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/72472b550dfecf24_0 b/notebooklm_chrome_profile/Default/Code Cache/js/72472b550dfecf24_0 new file mode 100644 index 000000000..5e75997ea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/72472b550dfecf24_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/725b6385bf931c9b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/725b6385bf931c9b_0 new file mode 100644 index 000000000..f693faf96 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/725b6385bf931c9b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/72609391f405d954_0 b/notebooklm_chrome_profile/Default/Code Cache/js/72609391f405d954_0 new file mode 100644 index 000000000..90755f88b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/72609391f405d954_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/72e256bbfcb97c5c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/72e256bbfcb97c5c_0 new file mode 100644 index 000000000..5c1e43af4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/72e256bbfcb97c5c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7311371a34a074e7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7311371a34a074e7_0 new file mode 100644 index 000000000..9045b36e2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7311371a34a074e7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/731b03f3efdcb2cb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/731b03f3efdcb2cb_0 new file mode 100644 index 000000000..88e6662b0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/731b03f3efdcb2cb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7323af63503238d0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7323af63503238d0_0 new file mode 100644 index 000000000..66068579f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7323af63503238d0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/73e16a070ea7f1bc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/73e16a070ea7f1bc_0 deleted file mode 100644 index e3a6c37bf..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/73e16a070ea7f1bc_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/74440503fc3b0581_0 b/notebooklm_chrome_profile/Default/Code Cache/js/74440503fc3b0581_0 new file mode 100644 index 000000000..234cb552c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/74440503fc3b0581_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7450023b5c4a7260_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7450023b5c4a7260_0 new file mode 100644 index 000000000..08e99cdb6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7450023b5c4a7260_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/74648f6f550ec3dc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/74648f6f550ec3dc_0 new file mode 100644 index 000000000..0974c0eb3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/74648f6f550ec3dc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7469b26791c96566_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7469b26791c96566_0 new file mode 100644 index 000000000..53d0db692 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7469b26791c96566_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7476e5c32ad97e96_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7476e5c32ad97e96_0 new file mode 100644 index 000000000..8ed6db69f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7476e5c32ad97e96_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/74afd5b56e32d299_0 b/notebooklm_chrome_profile/Default/Code Cache/js/74afd5b56e32d299_0 new file mode 100644 index 000000000..e051c4bb1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/74afd5b56e32d299_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7509152e849b8993_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7509152e849b8993_0 new file mode 100644 index 000000000..bff01ec98 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7509152e849b8993_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7578e0aa6843f667_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7578e0aa6843f667_0 new file mode 100644 index 000000000..8badef9f8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7578e0aa6843f667_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/75c485b76593b8cb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/75c485b76593b8cb_0 new file mode 100644 index 000000000..21b7dba0a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/75c485b76593b8cb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/761a13f208f6942c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/761a13f208f6942c_0 new file mode 100644 index 000000000..e31fd0f86 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/761a13f208f6942c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/768e6d1d1fa3fe02_0 b/notebooklm_chrome_profile/Default/Code Cache/js/768e6d1d1fa3fe02_0 new file mode 100644 index 000000000..de5662244 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/768e6d1d1fa3fe02_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/768ef9b254a45d70_0 b/notebooklm_chrome_profile/Default/Code Cache/js/768ef9b254a45d70_0 index 72cf24482..ead625097 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/768ef9b254a45d70_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/768ef9b254a45d70_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/769cb4805d5266be_0 b/notebooklm_chrome_profile/Default/Code Cache/js/769cb4805d5266be_0 new file mode 100644 index 000000000..c45425b20 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/769cb4805d5266be_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/76bd1c0261eebab7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/76bd1c0261eebab7_0 new file mode 100644 index 000000000..abcafc879 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/76bd1c0261eebab7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/76c3c0937da3ce02_0 b/notebooklm_chrome_profile/Default/Code Cache/js/76c3c0937da3ce02_0 new file mode 100644 index 000000000..ed354efcb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/76c3c0937da3ce02_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/76d71cd148151f22_0 b/notebooklm_chrome_profile/Default/Code Cache/js/76d71cd148151f22_0 new file mode 100644 index 000000000..ff56e82af Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/76d71cd148151f22_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/771cc30d24a6bfeb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/771cc30d24a6bfeb_0 index e09beb987..6fbea4e94 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/771cc30d24a6bfeb_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/771cc30d24a6bfeb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/772c0734342b25ab_0 b/notebooklm_chrome_profile/Default/Code Cache/js/772c0734342b25ab_0 new file mode 100644 index 000000000..c10f59fd2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/772c0734342b25ab_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/77b0a86c68ce3588_0 b/notebooklm_chrome_profile/Default/Code Cache/js/77b0a86c68ce3588_0 new file mode 100644 index 000000000..7e1c7f2bc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/77b0a86c68ce3588_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/78649efa12d2c2fa_0 b/notebooklm_chrome_profile/Default/Code Cache/js/78649efa12d2c2fa_0 new file mode 100644 index 000000000..a0a162a31 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/78649efa12d2c2fa_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/789d4e0fd53e3fd8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/789d4e0fd53e3fd8_0 index a533ae173..d421790ea 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/789d4e0fd53e3fd8_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/789d4e0fd53e3fd8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/78b33f0d07f487d7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/78b33f0d07f487d7_0 new file mode 100644 index 000000000..dca84f86d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/78b33f0d07f487d7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/78bca0282aef2399_0 b/notebooklm_chrome_profile/Default/Code Cache/js/78bca0282aef2399_0 new file mode 100644 index 000000000..a3bc2eee7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/78bca0282aef2399_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/797db7b0060e6b1b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/797db7b0060e6b1b_0 new file mode 100644 index 000000000..3261c94b0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/797db7b0060e6b1b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/798d4af3b2f123ff_0 b/notebooklm_chrome_profile/Default/Code Cache/js/798d4af3b2f123ff_0 new file mode 100644 index 000000000..4d120a015 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/798d4af3b2f123ff_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/79ab0713cfc5b98c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/79ab0713cfc5b98c_0 index 522d617d9..28ebc5ff3 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/79ab0713cfc5b98c_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/79ab0713cfc5b98c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/79ac25046b74a431_0 b/notebooklm_chrome_profile/Default/Code Cache/js/79ac25046b74a431_0 new file mode 100644 index 000000000..ed6e67102 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/79ac25046b74a431_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/79bac160c30bae15_0 b/notebooklm_chrome_profile/Default/Code Cache/js/79bac160c30bae15_0 new file mode 100644 index 000000000..5805b9a38 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/79bac160c30bae15_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/79bf1e0db9e61fa7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/79bf1e0db9e61fa7_0 new file mode 100644 index 000000000..f827d131e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/79bf1e0db9e61fa7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/79e0fbfe0bad874e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/79e0fbfe0bad874e_0 new file mode 100644 index 000000000..7bd3da73f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/79e0fbfe0bad874e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7ab69e64cccceaaa_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7ab69e64cccceaaa_0 new file mode 100644 index 000000000..30f117cf2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7ab69e64cccceaaa_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7ad9c3b2d7dea7d1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7ad9c3b2d7dea7d1_0 new file mode 100644 index 000000000..ea86bc076 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7ad9c3b2d7dea7d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7afb76df8beb6ba4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7afb76df8beb6ba4_0 new file mode 100644 index 000000000..5bda5d3af Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7afb76df8beb6ba4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7b460ee311c48995_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7b460ee311c48995_0 new file mode 100644 index 000000000..633a8a324 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7b460ee311c48995_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7b73fcafcd979704_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7b73fcafcd979704_0 new file mode 100644 index 000000000..af976dab3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7b73fcafcd979704_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7b8dc70eec09718f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7b8dc70eec09718f_0 new file mode 100644 index 000000000..d8ea7d5a8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7b8dc70eec09718f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7b9632fe66107d52_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7b9632fe66107d52_0 new file mode 100644 index 000000000..c5a939475 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7b9632fe66107d52_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7bea3f302898601a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7bea3f302898601a_0 new file mode 100644 index 000000000..9a09f0d1e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7bea3f302898601a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7c00b79864fc9ccf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7c00b79864fc9ccf_0 new file mode 100644 index 000000000..75f573e90 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7c00b79864fc9ccf_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7c589f58bbb45752_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7c589f58bbb45752_0 new file mode 100644 index 000000000..9bec596ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7c589f58bbb45752_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7c6d03773d33cf0d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7c6d03773d33cf0d_0 new file mode 100644 index 000000000..ec02f76fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7c6d03773d33cf0d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7c90f8543e9f0105_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7c90f8543e9f0105_0 new file mode 100644 index 000000000..71238d125 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7c90f8543e9f0105_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7cbe7eb330d6beea_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7cbe7eb330d6beea_0 new file mode 100644 index 000000000..b4fe76430 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7cbe7eb330d6beea_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7ce2371ca8ab8b31_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7ce2371ca8ab8b31_0 new file mode 100644 index 000000000..6f8ad6b74 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7ce2371ca8ab8b31_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7ce2f5f68964a3a9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7ce2f5f68964a3a9_0 new file mode 100644 index 000000000..40161fc1d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7ce2f5f68964a3a9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7d39195f459c4d6f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7d39195f459c4d6f_0 new file mode 100644 index 000000000..5931c5c10 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7d39195f459c4d6f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7d3e3b973777f2f8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7d3e3b973777f2f8_0 new file mode 100644 index 000000000..caf282dc9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7d3e3b973777f2f8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7d4f27a26ff5fc14_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7d4f27a26ff5fc14_0 new file mode 100644 index 000000000..b2e450694 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7d4f27a26ff5fc14_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7db235b8ab0a9a66_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7db235b8ab0a9a66_0 new file mode 100644 index 000000000..13d30be28 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7db235b8ab0a9a66_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7db34fad3d2bf74f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7db34fad3d2bf74f_0 new file mode 100644 index 000000000..311b61912 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7db34fad3d2bf74f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7dd0cf8e9c34c239_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7dd0cf8e9c34c239_0 new file mode 100644 index 000000000..033a19654 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7dd0cf8e9c34c239_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7df66f7f86e703b0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7df66f7f86e703b0_0 new file mode 100644 index 000000000..ad3be6bd5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7df66f7f86e703b0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7e23c4508161bc23_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7e23c4508161bc23_0 new file mode 100644 index 000000000..b806aba18 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7e23c4508161bc23_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7e46fdd5483facd1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7e46fdd5483facd1_0 deleted file mode 100644 index 8d96814c7..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/7e46fdd5483facd1_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7e554d4aa98287a7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7e554d4aa98287a7_0 new file mode 100644 index 000000000..c46ea8f9d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7e554d4aa98287a7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7ec7480d52cf89c0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7ec7480d52cf89c0_0 new file mode 100644 index 000000000..7ea6e1daf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7ec7480d52cf89c0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7ed2f4ac28b7c5a6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7ed2f4ac28b7c5a6_0 new file mode 100644 index 000000000..796a4a56b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7ed2f4ac28b7c5a6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7efaac1c5c4b46d7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7efaac1c5c4b46d7_0 new file mode 100644 index 000000000..c9d3c4079 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7efaac1c5c4b46d7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7f1f98ba435312dc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7f1f98ba435312dc_0 new file mode 100644 index 000000000..011e979cf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7f1f98ba435312dc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7f378fb9ff9e759c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7f378fb9ff9e759c_0 index 4ed565e4c..c6167eb38 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/7f378fb9ff9e759c_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/7f378fb9ff9e759c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7f69d29e4d0049ce_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7f69d29e4d0049ce_0 new file mode 100644 index 000000000..313c8c03c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7f69d29e4d0049ce_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7f6ebbb4a9e443fa_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7f6ebbb4a9e443fa_0 new file mode 100644 index 000000000..59f5455ac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7f6ebbb4a9e443fa_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7f8ebae931d20903_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7f8ebae931d20903_0 new file mode 100644 index 000000000..09f9e52dc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7f8ebae931d20903_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7faa7ee3359f6506_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7faa7ee3359f6506_0 new file mode 100644 index 000000000..c6eed9c97 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7faa7ee3359f6506_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7faad942b8923230_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7faad942b8923230_0 new file mode 100644 index 000000000..a7e42a8d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7faad942b8923230_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7fafc436e6fb88be_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7fafc436e6fb88be_0 new file mode 100644 index 000000000..ff3c1b237 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7fafc436e6fb88be_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7fbe33e28e9bfc6f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7fbe33e28e9bfc6f_0 new file mode 100644 index 000000000..f5caf299b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7fbe33e28e9bfc6f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7fc8fd6349952033_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7fc8fd6349952033_0 new file mode 100644 index 000000000..c16baf086 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7fc8fd6349952033_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7fe2c635b29f83c5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7fe2c635b29f83c5_0 index 5752def7c..d9a379b94 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/7fe2c635b29f83c5_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/7fe2c635b29f83c5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/7ff461124a6f80da_0 b/notebooklm_chrome_profile/Default/Code Cache/js/7ff461124a6f80da_0 new file mode 100644 index 000000000..84576d510 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/7ff461124a6f80da_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/80cbed5705fadd06_0 b/notebooklm_chrome_profile/Default/Code Cache/js/80cbed5705fadd06_0 new file mode 100644 index 000000000..01b3bc2fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/80cbed5705fadd06_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/80d671a9b071fc8e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/80d671a9b071fc8e_0 new file mode 100644 index 000000000..9a83daa85 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/80d671a9b071fc8e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/80db826c61b74d93_0 b/notebooklm_chrome_profile/Default/Code Cache/js/80db826c61b74d93_0 new file mode 100644 index 000000000..259948f01 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/80db826c61b74d93_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/80dd14fd1aa6bb54_0 b/notebooklm_chrome_profile/Default/Code Cache/js/80dd14fd1aa6bb54_0 new file mode 100644 index 000000000..7654aabda Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/80dd14fd1aa6bb54_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8115a8bce335306d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8115a8bce335306d_0 new file mode 100644 index 000000000..094081b56 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8115a8bce335306d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8148a7cc1691c806_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8148a7cc1691c806_0 new file mode 100644 index 000000000..37e6ade98 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8148a7cc1691c806_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/81520bb110df76c4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/81520bb110df76c4_0 new file mode 100644 index 000000000..8b9bbe731 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/81520bb110df76c4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/81738a67bc5a888c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/81738a67bc5a888c_0 new file mode 100644 index 000000000..87f986c91 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/81738a67bc5a888c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/819d2234636b18a9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/819d2234636b18a9_0 new file mode 100644 index 000000000..6ade51b46 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/819d2234636b18a9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/81a35759207d5b0d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/81a35759207d5b0d_0 new file mode 100644 index 000000000..7e394308b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/81a35759207d5b0d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/81b1c6e9a616077c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/81b1c6e9a616077c_0 new file mode 100644 index 000000000..8977d34d4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/81b1c6e9a616077c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/81e261b37219f358_0 b/notebooklm_chrome_profile/Default/Code Cache/js/81e261b37219f358_0 new file mode 100644 index 000000000..4c9962790 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/81e261b37219f358_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/81edda9bbc1e4a80_0 b/notebooklm_chrome_profile/Default/Code Cache/js/81edda9bbc1e4a80_0 new file mode 100644 index 000000000..008fa61f2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/81edda9bbc1e4a80_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/81f5d8c44ed12d66_0 b/notebooklm_chrome_profile/Default/Code Cache/js/81f5d8c44ed12d66_0 new file mode 100644 index 000000000..b5efddf75 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/81f5d8c44ed12d66_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/81f8195a39f7565b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/81f8195a39f7565b_0 new file mode 100644 index 000000000..d1b0d3b6b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/81f8195a39f7565b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/81fa2987e820bdd7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/81fa2987e820bdd7_0 new file mode 100644 index 000000000..89e55b38e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/81fa2987e820bdd7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8266416a0b9b2b13_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8266416a0b9b2b13_0 new file mode 100644 index 000000000..66ea961f9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8266416a0b9b2b13_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/828ae67fb4c93620_0 b/notebooklm_chrome_profile/Default/Code Cache/js/828ae67fb4c93620_0 deleted file mode 100644 index 7ca51dcca..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/828ae67fb4c93620_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/82b7156dc8ae5134_0 b/notebooklm_chrome_profile/Default/Code Cache/js/82b7156dc8ae5134_0 new file mode 100644 index 000000000..d142ac876 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/82b7156dc8ae5134_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/82b914cf2c2bbb8a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/82b914cf2c2bbb8a_0 new file mode 100644 index 000000000..14854834b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/82b914cf2c2bbb8a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/82fb782538b4d6e0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/82fb782538b4d6e0_0 new file mode 100644 index 000000000..672c243c8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/82fb782538b4d6e0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/82febaf7ca4c5b81_0 b/notebooklm_chrome_profile/Default/Code Cache/js/82febaf7ca4c5b81_0 new file mode 100644 index 000000000..74e8b3de3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/82febaf7ca4c5b81_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/834f15c9d96e27bf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/834f15c9d96e27bf_0 new file mode 100644 index 000000000..56a4c0beb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/834f15c9d96e27bf_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/837278b9948dadc3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/837278b9948dadc3_0 new file mode 100644 index 000000000..44b091490 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/837278b9948dadc3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/83a18acca83ef805_0 b/notebooklm_chrome_profile/Default/Code Cache/js/83a18acca83ef805_0 deleted file mode 100644 index 3d7fcfb15..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/83a18acca83ef805_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/83acffd71de4c0cb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/83acffd71de4c0cb_0 new file mode 100644 index 000000000..f67ed24a8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/83acffd71de4c0cb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/83e09b6cc30c5952_0 b/notebooklm_chrome_profile/Default/Code Cache/js/83e09b6cc30c5952_0 new file mode 100644 index 000000000..1ced44284 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/83e09b6cc30c5952_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/83e6a35b39e47419_0 b/notebooklm_chrome_profile/Default/Code Cache/js/83e6a35b39e47419_0 new file mode 100644 index 000000000..2909576fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/83e6a35b39e47419_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/83ea927b9cac5f2d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/83ea927b9cac5f2d_0 new file mode 100644 index 000000000..50ef474d8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/83ea927b9cac5f2d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/84584a18dc98bd84_0 b/notebooklm_chrome_profile/Default/Code Cache/js/84584a18dc98bd84_0 new file mode 100644 index 000000000..e9df75456 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/84584a18dc98bd84_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/84c403a38b4ed21d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/84c403a38b4ed21d_0 new file mode 100644 index 000000000..0cd37b124 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/84c403a38b4ed21d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/84fd2030bd2202f8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/84fd2030bd2202f8_0 new file mode 100644 index 000000000..13c04ef0a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/84fd2030bd2202f8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/851f1d3d1c7f172f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/851f1d3d1c7f172f_0 new file mode 100644 index 000000000..5899370d4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/851f1d3d1c7f172f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/857e9050bb04aa09_0 b/notebooklm_chrome_profile/Default/Code Cache/js/857e9050bb04aa09_0 new file mode 100644 index 000000000..a63ebdc98 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/857e9050bb04aa09_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8590f2c67270834b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8590f2c67270834b_0 new file mode 100644 index 000000000..e02b2e995 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8590f2c67270834b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8593e7cbd325040d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8593e7cbd325040d_0 new file mode 100644 index 000000000..f7eeb5046 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8593e7cbd325040d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8595c8f493a20e2e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8595c8f493a20e2e_0 new file mode 100644 index 000000000..d04724113 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8595c8f493a20e2e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/85b665174783da77_0 b/notebooklm_chrome_profile/Default/Code Cache/js/85b665174783da77_0 new file mode 100644 index 000000000..98bcf6ecf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/85b665174783da77_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/85bb79629c09a748_0 b/notebooklm_chrome_profile/Default/Code Cache/js/85bb79629c09a748_0 new file mode 100644 index 000000000..d841fc59a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/85bb79629c09a748_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8618f7b505689202_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8618f7b505689202_0 new file mode 100644 index 000000000..dad5551af Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8618f7b505689202_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8643893d92e7f68f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8643893d92e7f68f_0 new file mode 100644 index 000000000..687f55714 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8643893d92e7f68f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8682391c3eb563c3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8682391c3eb563c3_0 new file mode 100644 index 000000000..d2396e4cb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8682391c3eb563c3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/868d3db353b34f7e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/868d3db353b34f7e_0 new file mode 100644 index 000000000..32893565f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/868d3db353b34f7e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/86a5756d93156ffa_0 b/notebooklm_chrome_profile/Default/Code Cache/js/86a5756d93156ffa_0 new file mode 100644 index 000000000..8b13f0bbb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/86a5756d93156ffa_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/86adcda07d02c0c2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/86adcda07d02c0c2_0 new file mode 100644 index 000000000..2cde07493 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/86adcda07d02c0c2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/86d0e526a73a75d8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/86d0e526a73a75d8_0 deleted file mode 100644 index 556e754a4..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/86d0e526a73a75d8_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/86d833eb11d60932_0 b/notebooklm_chrome_profile/Default/Code Cache/js/86d833eb11d60932_0 new file mode 100644 index 000000000..ad57f97c6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/86d833eb11d60932_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8796eeda3ef5ac6d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8796eeda3ef5ac6d_0 new file mode 100644 index 000000000..53a9d24d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8796eeda3ef5ac6d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/87bea40a1915d1c1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/87bea40a1915d1c1_0 new file mode 100644 index 000000000..41c423790 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/87bea40a1915d1c1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8801dfb6ac861223_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8801dfb6ac861223_0 new file mode 100644 index 000000000..bf508c998 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8801dfb6ac861223_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8806379f455a2473_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8806379f455a2473_0 new file mode 100644 index 000000000..900a6f489 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8806379f455a2473_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/88065d3fa5bc2bde_0 b/notebooklm_chrome_profile/Default/Code Cache/js/88065d3fa5bc2bde_0 new file mode 100644 index 000000000..a5a4681ee Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/88065d3fa5bc2bde_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/880f3d5ee1fdafd6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/880f3d5ee1fdafd6_0 new file mode 100644 index 000000000..7b9edb3a5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/880f3d5ee1fdafd6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/882165b1239d977c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/882165b1239d977c_0 new file mode 100644 index 000000000..4aee82f8a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/882165b1239d977c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/882a0f679db30224_0 b/notebooklm_chrome_profile/Default/Code Cache/js/882a0f679db30224_0 new file mode 100644 index 000000000..bc2f624ea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/882a0f679db30224_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8858aa8641ba6c4b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8858aa8641ba6c4b_0 new file mode 100644 index 000000000..8c0ed1d81 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8858aa8641ba6c4b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/886ee48d7246038f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/886ee48d7246038f_0 new file mode 100644 index 000000000..1a4bf97af Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/886ee48d7246038f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/88864e10fce5a9a9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/88864e10fce5a9a9_0 new file mode 100644 index 000000000..a9a33f2e1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/88864e10fce5a9a9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/88b3009a79799503_0 b/notebooklm_chrome_profile/Default/Code Cache/js/88b3009a79799503_0 new file mode 100644 index 000000000..e6a576c0e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/88b3009a79799503_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/88e972975d5c00e2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/88e972975d5c00e2_0 new file mode 100644 index 000000000..218957c2d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/88e972975d5c00e2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/891cb89b57e1da2d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/891cb89b57e1da2d_0 new file mode 100644 index 000000000..35ab14b42 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/891cb89b57e1da2d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8943a1d94eb13b4d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8943a1d94eb13b4d_0 new file mode 100644 index 000000000..eb384ff33 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8943a1d94eb13b4d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/89523a7a890abc95_0 b/notebooklm_chrome_profile/Default/Code Cache/js/89523a7a890abc95_0 new file mode 100644 index 000000000..f2fb68b1d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/89523a7a890abc95_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/899359292e654c74_0 b/notebooklm_chrome_profile/Default/Code Cache/js/899359292e654c74_0 new file mode 100644 index 000000000..97cece3d3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/899359292e654c74_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/89cd090ffdd0c1a1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/89cd090ffdd0c1a1_0 new file mode 100644 index 000000000..376af01be Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/89cd090ffdd0c1a1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8a472a8ba568380a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8a472a8ba568380a_0 new file mode 100644 index 000000000..6d13e3e40 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8a472a8ba568380a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8a5442e77c128bd8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8a5442e77c128bd8_0 new file mode 100644 index 000000000..fa6290ba3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8a5442e77c128bd8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8a63e984fae4b6cf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8a63e984fae4b6cf_0 new file mode 100644 index 000000000..08d0032e2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8a63e984fae4b6cf_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8a649fedc31511eb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8a649fedc31511eb_0 new file mode 100644 index 000000000..a5312bcdf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8a649fedc31511eb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8a8257c07e91eea0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8a8257c07e91eea0_0 new file mode 100644 index 000000000..34cedd330 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8a8257c07e91eea0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8ac9f24b2d3d7199_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8ac9f24b2d3d7199_0 new file mode 100644 index 000000000..3427d15ee Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8ac9f24b2d3d7199_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8b129f4e437a3b20_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8b129f4e437a3b20_0 new file mode 100644 index 000000000..5002804e8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8b129f4e437a3b20_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8b19c0cd9076c4e2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8b19c0cd9076c4e2_0 new file mode 100644 index 000000000..03dee5f42 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8b19c0cd9076c4e2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8b1ce0d98ab3d6a7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8b1ce0d98ab3d6a7_0 index 540d9ad1e..38243ff10 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/8b1ce0d98ab3d6a7_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/8b1ce0d98ab3d6a7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8b35350a9299878e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8b35350a9299878e_0 new file mode 100644 index 000000000..cd4ea1004 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8b35350a9299878e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8b47dce05e0f4325_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8b47dce05e0f4325_0 index 8d0822c95..b35ae5bb7 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/8b47dce05e0f4325_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/8b47dce05e0f4325_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8bb7a4052c106626_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8bb7a4052c106626_0 new file mode 100644 index 000000000..2c2a7a595 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8bb7a4052c106626_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8be99855e21d34aa_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8be99855e21d34aa_0 new file mode 100644 index 000000000..4215d0de8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8be99855e21d34aa_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8c1550f14070362d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8c1550f14070362d_0 new file mode 100644 index 000000000..c45b091c8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8c1550f14070362d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8c26f41fb4922ab9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8c26f41fb4922ab9_0 new file mode 100644 index 000000000..0914545db Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8c26f41fb4922ab9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8c4748d616199ec1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8c4748d616199ec1_0 new file mode 100644 index 000000000..71109cfb8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8c4748d616199ec1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8cada991f2b4d4e9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8cada991f2b4d4e9_0 new file mode 100644 index 000000000..53d991459 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8cada991f2b4d4e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8cf41ce86877bd0d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8cf41ce86877bd0d_0 new file mode 100644 index 000000000..0ccbd220b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8cf41ce86877bd0d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8cfb493dfc04c5e2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8cfb493dfc04c5e2_0 new file mode 100644 index 000000000..10f9a1d5e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8cfb493dfc04c5e2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8d02a7c6f0641bd7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8d02a7c6f0641bd7_0 new file mode 100644 index 000000000..e7fabf36c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8d02a7c6f0641bd7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8d33007049fea386_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8d33007049fea386_0 new file mode 100644 index 000000000..9bbb08e15 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8d33007049fea386_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8d6da218c48b9586_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8d6da218c48b9586_0 new file mode 100644 index 000000000..3d5751ebd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8d6da218c48b9586_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8d8b6287b000e154_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8d8b6287b000e154_0 new file mode 100644 index 000000000..eac08adec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8d8b6287b000e154_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8dd4f999c2ce97fa_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8dd4f999c2ce97fa_0 new file mode 100644 index 000000000..7a5953824 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8dd4f999c2ce97fa_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8df02d43b6c17de8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8df02d43b6c17de8_0 new file mode 100644 index 000000000..2646c816f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8df02d43b6c17de8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8e11ccd25e70f8b4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8e11ccd25e70f8b4_0 new file mode 100644 index 000000000..c464110cd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8e11ccd25e70f8b4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8e323edd557834ba_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8e323edd557834ba_0 new file mode 100644 index 000000000..ebb3d6e49 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8e323edd557834ba_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8e6f48774964af3f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8e6f48774964af3f_0 new file mode 100644 index 000000000..9c97ba8a6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8e6f48774964af3f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8ea3fa6265b7cd0d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8ea3fa6265b7cd0d_0 new file mode 100644 index 000000000..4e272cf3a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8ea3fa6265b7cd0d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8eadc1a0a3107cd7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8eadc1a0a3107cd7_0 new file mode 100644 index 000000000..6524b34af Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8eadc1a0a3107cd7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8ecab253d4dea6fe_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8ecab253d4dea6fe_0 new file mode 100644 index 000000000..bc6739d80 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8ecab253d4dea6fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8ee5ca554c931b68_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8ee5ca554c931b68_0 new file mode 100644 index 000000000..3e3d72cf8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8ee5ca554c931b68_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8f310423a4f2df13_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8f310423a4f2df13_0 new file mode 100644 index 000000000..2e4290823 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8f310423a4f2df13_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8f369352346fd583_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8f369352346fd583_0 index adb1ccd50..f324958f1 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/8f369352346fd583_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/8f369352346fd583_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8f7950c280742c1f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8f7950c280742c1f_0 new file mode 100644 index 000000000..55e6b1d01 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8f7950c280742c1f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8f99294a612950d7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8f99294a612950d7_0 new file mode 100644 index 000000000..e5e97e14d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8f99294a612950d7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8f9be0a5daf5ae05_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8f9be0a5daf5ae05_0 new file mode 100644 index 000000000..cca35772b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8f9be0a5daf5ae05_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/8fdd8c87a50586a2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/8fdd8c87a50586a2_0 new file mode 100644 index 000000000..d8fb02aa8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/8fdd8c87a50586a2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9046c5f73fa84bc8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9046c5f73fa84bc8_0 new file mode 100644 index 000000000..83dbc417e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9046c5f73fa84bc8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/905a5c0719cfcda9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/905a5c0719cfcda9_0 new file mode 100644 index 000000000..c79886656 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/905a5c0719cfcda9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/905b8966c6507968_0 b/notebooklm_chrome_profile/Default/Code Cache/js/905b8966c6507968_0 new file mode 100644 index 000000000..b2416b870 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/905b8966c6507968_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/90765a5f0a6ec9a7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/90765a5f0a6ec9a7_0 new file mode 100644 index 000000000..44482ffa7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/90765a5f0a6ec9a7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/90a703e3687f7116_0 b/notebooklm_chrome_profile/Default/Code Cache/js/90a703e3687f7116_0 new file mode 100644 index 000000000..e537ea1b4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/90a703e3687f7116_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/90b2b758e0410339_0 b/notebooklm_chrome_profile/Default/Code Cache/js/90b2b758e0410339_0 deleted file mode 100644 index 23cf39cc0..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/90b2b758e0410339_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/90cafdace6e51996_0 b/notebooklm_chrome_profile/Default/Code Cache/js/90cafdace6e51996_0 new file mode 100644 index 000000000..d57fdb0ec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/90cafdace6e51996_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/90e583a9d94430df_0 b/notebooklm_chrome_profile/Default/Code Cache/js/90e583a9d94430df_0 new file mode 100644 index 000000000..f6816ec99 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/90e583a9d94430df_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/90feb3d85eb8782b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/90feb3d85eb8782b_0 new file mode 100644 index 000000000..b393ec2aa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/90feb3d85eb8782b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/91225e95572038a8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/91225e95572038a8_0 new file mode 100644 index 000000000..e288887a3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/91225e95572038a8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9152b74182630124_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9152b74182630124_0 new file mode 100644 index 000000000..532422de3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9152b74182630124_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/91b0bffbd3a2a323_0 b/notebooklm_chrome_profile/Default/Code Cache/js/91b0bffbd3a2a323_0 index 71f447806..bc5deb98d 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/91b0bffbd3a2a323_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/91b0bffbd3a2a323_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/91bf7d0d2865bfd3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/91bf7d0d2865bfd3_0 new file mode 100644 index 000000000..6f2d2ad95 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/91bf7d0d2865bfd3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9207bd57d1b0fea0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9207bd57d1b0fea0_0 new file mode 100644 index 000000000..c020d33ac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9207bd57d1b0fea0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/92b14eafbb602204_0 b/notebooklm_chrome_profile/Default/Code Cache/js/92b14eafbb602204_0 new file mode 100644 index 000000000..964ac705d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/92b14eafbb602204_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/93473e730f80ee03_0 b/notebooklm_chrome_profile/Default/Code Cache/js/93473e730f80ee03_0 index 992594f6d..d672a079f 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/93473e730f80ee03_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/93473e730f80ee03_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/93611e6623527d0b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/93611e6623527d0b_0 new file mode 100644 index 000000000..e8bd9383a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/93611e6623527d0b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/93ddb77ca13ac8a1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/93ddb77ca13ac8a1_0 new file mode 100644 index 000000000..8e1644f8f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/93ddb77ca13ac8a1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/93e1d1e42fccbd4a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/93e1d1e42fccbd4a_0 new file mode 100644 index 000000000..15a9c6a5a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/93e1d1e42fccbd4a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/940455fbbf4eeabb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/940455fbbf4eeabb_0 new file mode 100644 index 000000000..0d47773e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/940455fbbf4eeabb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9425d7aad400084c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9425d7aad400084c_0 new file mode 100644 index 000000000..1767622dc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9425d7aad400084c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/947091dea26c0b35_0 b/notebooklm_chrome_profile/Default/Code Cache/js/947091dea26c0b35_0 index ae387d67c..ee882a111 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/947091dea26c0b35_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/947091dea26c0b35_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/94984e7151a37bfc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/94984e7151a37bfc_0 new file mode 100644 index 000000000..d96e5bb57 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/94984e7151a37bfc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/94dd1152d3fe766f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/94dd1152d3fe766f_0 deleted file mode 100644 index c15960089..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/94dd1152d3fe766f_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9504d22242d443c5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9504d22242d443c5_0 new file mode 100644 index 000000000..b4ea83fb9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9504d22242d443c5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9513f025d6fc26b7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9513f025d6fc26b7_0 new file mode 100644 index 000000000..ff4cc037e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9513f025d6fc26b7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9518b2a56207e287_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9518b2a56207e287_0 new file mode 100644 index 000000000..b626849ce Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9518b2a56207e287_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/955503160011d93a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/955503160011d93a_0 new file mode 100644 index 000000000..9abd15188 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/955503160011d93a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/95c8d486ea38123d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/95c8d486ea38123d_0 new file mode 100644 index 000000000..73d75d777 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/95c8d486ea38123d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/963e2b44784dba35_0 b/notebooklm_chrome_profile/Default/Code Cache/js/963e2b44784dba35_0 new file mode 100644 index 000000000..b943ab7ae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/963e2b44784dba35_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/966b9b862a6c3307_0 b/notebooklm_chrome_profile/Default/Code Cache/js/966b9b862a6c3307_0 new file mode 100644 index 000000000..44f04c9cd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/966b9b862a6c3307_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/96d5ec3d1e93abb4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/96d5ec3d1e93abb4_0 new file mode 100644 index 000000000..56f39ca40 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/96d5ec3d1e93abb4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/96f75b0a1af48074_0 b/notebooklm_chrome_profile/Default/Code Cache/js/96f75b0a1af48074_0 deleted file mode 100644 index 683f57246..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/96f75b0a1af48074_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/976f271df8861dc8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/976f271df8861dc8_0 new file mode 100644 index 000000000..a4d304472 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/976f271df8861dc8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/981d0b47f72ad873_0 b/notebooklm_chrome_profile/Default/Code Cache/js/981d0b47f72ad873_0 new file mode 100644 index 000000000..bc980346c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/981d0b47f72ad873_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/982966abb4bd88fd_0 b/notebooklm_chrome_profile/Default/Code Cache/js/982966abb4bd88fd_0 new file mode 100644 index 000000000..c323a7223 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/982966abb4bd88fd_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/98b53cf728f52020_0 b/notebooklm_chrome_profile/Default/Code Cache/js/98b53cf728f52020_0 new file mode 100644 index 000000000..d2b3a67d2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/98b53cf728f52020_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/98d19df0902febdc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/98d19df0902febdc_0 new file mode 100644 index 000000000..79586bd7a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/98d19df0902febdc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/98e8c97d9c3737a0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/98e8c97d9c3737a0_0 new file mode 100644 index 000000000..ae7718237 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/98e8c97d9c3737a0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/98f3e198689ba135_0 b/notebooklm_chrome_profile/Default/Code Cache/js/98f3e198689ba135_0 index bfdb34182..32cc6c2f8 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/98f3e198689ba135_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/98f3e198689ba135_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/995bade7a1982e93_0 b/notebooklm_chrome_profile/Default/Code Cache/js/995bade7a1982e93_0 new file mode 100644 index 000000000..30df87579 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/995bade7a1982e93_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/99e7f763dbeb1566_0 b/notebooklm_chrome_profile/Default/Code Cache/js/99e7f763dbeb1566_0 new file mode 100644 index 000000000..ec1e8bcaa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/99e7f763dbeb1566_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9a1a06de3dc2c4aa_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9a1a06de3dc2c4aa_0 new file mode 100644 index 000000000..a50c8fda9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9a1a06de3dc2c4aa_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9a1ae3f0ed6a1970_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9a1ae3f0ed6a1970_0 new file mode 100644 index 000000000..4ae1bf2e1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9a1ae3f0ed6a1970_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9a242488970a3f66_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9a242488970a3f66_0 new file mode 100644 index 000000000..7894c8e76 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9a242488970a3f66_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9a26a2a0250d2aec_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9a26a2a0250d2aec_0 new file mode 100644 index 000000000..6de2e82c1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9a26a2a0250d2aec_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9a44f8cf8f85da42_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9a44f8cf8f85da42_0 new file mode 100644 index 000000000..cc06df6e5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9a44f8cf8f85da42_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9ab2f08a169b7ce3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9ab2f08a169b7ce3_0 new file mode 100644 index 000000000..5147f4dd8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9ab2f08a169b7ce3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9ac910723bb3b2c7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9ac910723bb3b2c7_0 deleted file mode 100644 index dda3602e1..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/9ac910723bb3b2c7_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9ad96e2a753ff1a5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9ad96e2a753ff1a5_0 new file mode 100644 index 000000000..6e8c8c5a1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9ad96e2a753ff1a5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9b4ebf6169f56b35_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9b4ebf6169f56b35_0 new file mode 100644 index 000000000..97a2b92d9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9b4ebf6169f56b35_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9b7736de78aa5adb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9b7736de78aa5adb_0 new file mode 100644 index 000000000..b93fe58ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9b7736de78aa5adb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9b8e0c287e9aef88_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9b8e0c287e9aef88_0 new file mode 100644 index 000000000..28b040ffe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9b8e0c287e9aef88_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9c0a8e164aae8ae5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9c0a8e164aae8ae5_0 new file mode 100644 index 000000000..8949ee4a6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9c0a8e164aae8ae5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9c2c5563d28818f9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9c2c5563d28818f9_0 new file mode 100644 index 000000000..bf51ff9c8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9c2c5563d28818f9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9c35f8bcba1e7a25_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9c35f8bcba1e7a25_0 new file mode 100644 index 000000000..ce09f89c8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9c35f8bcba1e7a25_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9c387734ccd5689e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9c387734ccd5689e_0 new file mode 100644 index 000000000..7b6ebc321 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9c387734ccd5689e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9c48c5fc3d238425_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9c48c5fc3d238425_0 new file mode 100644 index 000000000..277046bb4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9c48c5fc3d238425_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9c53543b507d860c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9c53543b507d860c_0 new file mode 100644 index 000000000..f32f00936 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9c53543b507d860c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9c90c3d21994f242_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9c90c3d21994f242_0 new file mode 100644 index 000000000..9ed9a1e3d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9c90c3d21994f242_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9c9c1ac9d6b6b289_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9c9c1ac9d6b6b289_0 deleted file mode 100644 index 8f704c2b8..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/9c9c1ac9d6b6b289_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9ca0863fcbc9ed88_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9ca0863fcbc9ed88_0 index 2e2c135c1..af5bffe34 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/9ca0863fcbc9ed88_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/9ca0863fcbc9ed88_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9ca3af4c5913c5a3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9ca3af4c5913c5a3_0 new file mode 100644 index 000000000..8da782d0c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9ca3af4c5913c5a3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9cac94bdcec26025_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9cac94bdcec26025_0 new file mode 100644 index 000000000..1c6d87d1c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9cac94bdcec26025_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9cafbb803896ba7b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9cafbb803896ba7b_0 new file mode 100644 index 000000000..50ff4767a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9cafbb803896ba7b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9cd0368e5c542f12_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9cd0368e5c542f12_0 new file mode 100644 index 000000000..fd953f8e9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9cd0368e5c542f12_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9cf8987d262ad710_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9cf8987d262ad710_0 new file mode 100644 index 000000000..bbaff4e94 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9cf8987d262ad710_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9cfa3bdeef3d18b3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9cfa3bdeef3d18b3_0 new file mode 100644 index 000000000..b3a3994b2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9cfa3bdeef3d18b3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9cffe095bfffe968_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9cffe095bfffe968_0 new file mode 100644 index 000000000..50c3f4169 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9cffe095bfffe968_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9d0fcb173dfd6af4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9d0fcb173dfd6af4_0 new file mode 100644 index 000000000..52f3e4999 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9d0fcb173dfd6af4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9d5d5ccf618a5eae_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9d5d5ccf618a5eae_0 new file mode 100644 index 000000000..042d41a96 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9d5d5ccf618a5eae_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9deed1b489b2d96e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9deed1b489b2d96e_0 index 1efb873aa..a1a947671 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/9deed1b489b2d96e_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/9deed1b489b2d96e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9df84671edc0de9c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9df84671edc0de9c_0 index bf7008f83..28919d087 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/9df84671edc0de9c_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/9df84671edc0de9c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9e84abd223b5fba0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9e84abd223b5fba0_0 new file mode 100644 index 000000000..ef81e0ad7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9e84abd223b5fba0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9eb928a6b81eddb6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9eb928a6b81eddb6_0 new file mode 100644 index 000000000..dd3bcaf7b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9eb928a6b81eddb6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9f3ad4cd350044d6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9f3ad4cd350044d6_0 new file mode 100644 index 000000000..2192dd008 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9f3ad4cd350044d6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9f58683a68d7547c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9f58683a68d7547c_0 new file mode 100644 index 000000000..7277e2631 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9f58683a68d7547c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/9fbde26b47116e1a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/9fbde26b47116e1a_0 new file mode 100644 index 000000000..0c97387dd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/9fbde26b47116e1a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a01068b200bdcf91_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a01068b200bdcf91_0 new file mode 100644 index 000000000..ed4fabcb3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a01068b200bdcf91_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a08701102c51a38b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a08701102c51a38b_0 new file mode 100644 index 000000000..c6202f0c0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a08701102c51a38b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a12f9f3d84d19064_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a12f9f3d84d19064_0 new file mode 100644 index 000000000..7154836cf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a12f9f3d84d19064_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a173c7f38f2279c8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a173c7f38f2279c8_0 new file mode 100644 index 000000000..4330fff04 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a173c7f38f2279c8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a213e1e581786f6d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a213e1e581786f6d_0 new file mode 100644 index 000000000..017d5194c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a213e1e581786f6d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a254a40e0a7059e6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a254a40e0a7059e6_0 new file mode 100644 index 000000000..1bece2805 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a254a40e0a7059e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a2a96cafa2aa8094_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a2a96cafa2aa8094_0 new file mode 100644 index 000000000..40c4fd008 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a2a96cafa2aa8094_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a2b61542820e04a9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a2b61542820e04a9_0 new file mode 100644 index 000000000..67c5a123c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a2b61542820e04a9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a2b9e6076db497f5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a2b9e6076db497f5_0 new file mode 100644 index 000000000..945c66c8a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a2b9e6076db497f5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a2d105f88bfce09a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a2d105f88bfce09a_0 new file mode 100644 index 000000000..04d0b3b69 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a2d105f88bfce09a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a2db866ffdb97a5b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a2db866ffdb97a5b_0 new file mode 100644 index 000000000..973156fb8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a2db866ffdb97a5b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a357ead506d7746f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a357ead506d7746f_0 new file mode 100644 index 000000000..30d852773 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a357ead506d7746f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a36dad75e3cb0b7c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a36dad75e3cb0b7c_0 new file mode 100644 index 000000000..0042e1f53 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a36dad75e3cb0b7c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a3894372425a05e9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a3894372425a05e9_0 new file mode 100644 index 000000000..783009095 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a3894372425a05e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a3943ac9377886e1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a3943ac9377886e1_0 new file mode 100644 index 000000000..d96988713 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a3943ac9377886e1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a3a5caa44ac3f017_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a3a5caa44ac3f017_0 new file mode 100644 index 000000000..1c160d72a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a3a5caa44ac3f017_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a3b29fe040e813ad_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a3b29fe040e813ad_0 new file mode 100644 index 000000000..7ce6b3b83 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a3b29fe040e813ad_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a40069ca8e92a0ef_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a40069ca8e92a0ef_0 new file mode 100644 index 000000000..14c4d4826 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a40069ca8e92a0ef_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a4075a8d5da4f27e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a4075a8d5da4f27e_0 new file mode 100644 index 000000000..1e96960e5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a4075a8d5da4f27e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a41c263cba427f44_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a41c263cba427f44_0 new file mode 100644 index 000000000..bf28dc458 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a41c263cba427f44_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a43211d4e682a41e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a43211d4e682a41e_0 new file mode 100644 index 000000000..2e371e5f7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a43211d4e682a41e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a49c63bad7633d0f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a49c63bad7633d0f_0 new file mode 100644 index 000000000..ab25ce8e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a49c63bad7633d0f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a4c18d65e4262aa7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a4c18d65e4262aa7_0 new file mode 100644 index 000000000..704dc954d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a4c18d65e4262aa7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a4e8c270f3c9163b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a4e8c270f3c9163b_0 new file mode 100644 index 000000000..79715dcd1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a4e8c270f3c9163b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a535a024c22cede8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a535a024c22cede8_0 new file mode 100644 index 000000000..2ce2b6ae2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a535a024c22cede8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a54e16746f6cf491_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a54e16746f6cf491_0 new file mode 100644 index 000000000..a1b414aed Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a54e16746f6cf491_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a56a466ac9321cbf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a56a466ac9321cbf_0 index c72c84ffc..fbfd19f97 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/a56a466ac9321cbf_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/a56a466ac9321cbf_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a5924ad2de922432_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a5924ad2de922432_0 new file mode 100644 index 000000000..adbdde67e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a5924ad2de922432_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a5bc39f7055a8234_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a5bc39f7055a8234_0 new file mode 100644 index 000000000..1c59d2169 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a5bc39f7055a8234_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a610a9650e5a3132_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a610a9650e5a3132_0 index d0d817093..cc8198faf 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/a610a9650e5a3132_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/a610a9650e5a3132_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a617bb6d93afed7f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a617bb6d93afed7f_0 new file mode 100644 index 000000000..1e680b52a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a617bb6d93afed7f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a6581aee91fcf02e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a6581aee91fcf02e_0 new file mode 100644 index 000000000..843fe364e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a6581aee91fcf02e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a688b7347b8d6700_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a688b7347b8d6700_0 new file mode 100644 index 000000000..206b92c6a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a688b7347b8d6700_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a6b683b53b30d234_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a6b683b53b30d234_0 new file mode 100644 index 000000000..5a8ceeffd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a6b683b53b30d234_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a6e2919e37ea9d12_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a6e2919e37ea9d12_0 new file mode 100644 index 000000000..c99203848 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a6e2919e37ea9d12_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a73f2b86159bf163_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a73f2b86159bf163_0 new file mode 100644 index 000000000..12ef5582c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a73f2b86159bf163_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a7620039351cb751_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a7620039351cb751_0 new file mode 100644 index 000000000..a2fb12e0f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a7620039351cb751_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a7702c1cf0fce442_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a7702c1cf0fce442_0 new file mode 100644 index 000000000..7e7a318fd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a7702c1cf0fce442_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a7d19af45ef9da26_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a7d19af45ef9da26_0 new file mode 100644 index 000000000..77485e275 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a7d19af45ef9da26_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a7db08d4c329e614_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a7db08d4c329e614_0 new file mode 100644 index 000000000..1180b96a0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a7db08d4c329e614_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a7ebc6813d0c5db0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a7ebc6813d0c5db0_0 new file mode 100644 index 000000000..a5936fe20 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a7ebc6813d0c5db0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a7fc0ed5200c10d6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a7fc0ed5200c10d6_0 new file mode 100644 index 000000000..eea84cb9c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a7fc0ed5200c10d6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a8568994a5b7f8da_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a8568994a5b7f8da_0 new file mode 100644 index 000000000..6c5f9bc31 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a8568994a5b7f8da_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a875fea17f0e19e8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a875fea17f0e19e8_0 new file mode 100644 index 000000000..cb18d0b79 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a875fea17f0e19e8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a8ddbc33c1a75905_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a8ddbc33c1a75905_0 new file mode 100644 index 000000000..2d0822bdb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a8ddbc33c1a75905_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a8ef0ac951e55694_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a8ef0ac951e55694_0 index 3ae0dc85c..cfc6e3dd4 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/a8ef0ac951e55694_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/a8ef0ac951e55694_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a8f7661ec184bbf4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a8f7661ec184bbf4_0 new file mode 100644 index 000000000..35d2cff6c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a8f7661ec184bbf4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a91cf6b470dede27_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a91cf6b470dede27_0 new file mode 100644 index 000000000..a33e41bc0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a91cf6b470dede27_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a9399e2a89b3fd81_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a9399e2a89b3fd81_0 index e777c2b8f..8bda959e3 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/a9399e2a89b3fd81_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/a9399e2a89b3fd81_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a9401d43cfd6e979_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a9401d43cfd6e979_0 new file mode 100644 index 000000000..b8682e7bf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a9401d43cfd6e979_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a94500d3bd2d6e6a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a94500d3bd2d6e6a_0 new file mode 100644 index 000000000..966ad4706 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a94500d3bd2d6e6a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a98939371681bd8d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a98939371681bd8d_0 index 3aa26eafc..c8d8f1851 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/a98939371681bd8d_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/a98939371681bd8d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a9b87ce209356eba_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a9b87ce209356eba_0 new file mode 100644 index 000000000..2ee70ad36 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a9b87ce209356eba_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a9c6ce491b4939be_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a9c6ce491b4939be_0 index 47e57adbe..a94526670 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/a9c6ce491b4939be_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/a9c6ce491b4939be_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a9df8bf7c5ee3932_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a9df8bf7c5ee3932_0 new file mode 100644 index 000000000..1ca615a3a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a9df8bf7c5ee3932_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a9fa317b9d6687fd_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a9fa317b9d6687fd_0 new file mode 100644 index 000000000..e2c9d06a2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a9fa317b9d6687fd_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/a9fba161c5e1c5f3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/a9fba161c5e1c5f3_0 new file mode 100644 index 000000000..136e93899 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/a9fba161c5e1c5f3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/aa4064eed8949dbf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/aa4064eed8949dbf_0 deleted file mode 100644 index 9d92b9472..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/aa4064eed8949dbf_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/aa41d5895c6c9888_0 b/notebooklm_chrome_profile/Default/Code Cache/js/aa41d5895c6c9888_0 new file mode 100644 index 000000000..4054378ae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/aa41d5895c6c9888_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/aa595461ab4881df_0 b/notebooklm_chrome_profile/Default/Code Cache/js/aa595461ab4881df_0 new file mode 100644 index 000000000..8dd2c2430 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/aa595461ab4881df_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/aa7b4ad0480f657f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/aa7b4ad0480f657f_0 new file mode 100644 index 000000000..83529e403 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/aa7b4ad0480f657f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/aaded15b0775fc54_0 b/notebooklm_chrome_profile/Default/Code Cache/js/aaded15b0775fc54_0 new file mode 100644 index 000000000..aa3a12705 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/aaded15b0775fc54_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ab0e23cd9f9febc8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ab0e23cd9f9febc8_0 new file mode 100644 index 000000000..37bf1d0ec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ab0e23cd9f9febc8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ab25726feb7c45c0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ab25726feb7c45c0_0 new file mode 100644 index 000000000..039615777 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ab25726feb7c45c0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ab2b5a90a3141c76_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ab2b5a90a3141c76_0 new file mode 100644 index 000000000..769dae8fa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ab2b5a90a3141c76_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ab2ff116955e6663_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ab2ff116955e6663_0 new file mode 100644 index 000000000..273c3da90 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ab2ff116955e6663_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ab481d9f0bc33069_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ab481d9f0bc33069_0 new file mode 100644 index 000000000..c498bde08 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ab481d9f0bc33069_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/aba92626266c0b84_0 b/notebooklm_chrome_profile/Default/Code Cache/js/aba92626266c0b84_0 new file mode 100644 index 000000000..93484b745 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/aba92626266c0b84_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ac339e60fcee487b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ac339e60fcee487b_0 new file mode 100644 index 000000000..6352aae05 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ac339e60fcee487b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ac3897ad9a1a1899_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ac3897ad9a1a1899_0 new file mode 100644 index 000000000..26067ac1e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ac3897ad9a1a1899_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ac3f40dd9b196212_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ac3f40dd9b196212_0 new file mode 100644 index 000000000..a63410c9e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ac3f40dd9b196212_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ac86f9d08f380534_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ac86f9d08f380534_0 new file mode 100644 index 000000000..139ad37d8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ac86f9d08f380534_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ac912d8d9b49d32e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ac912d8d9b49d32e_0 new file mode 100644 index 000000000..b616d5d33 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ac912d8d9b49d32e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ac94be897561af38_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ac94be897561af38_0 new file mode 100644 index 000000000..8b176508e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ac94be897561af38_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/aca8876efc1061b3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/aca8876efc1061b3_0 new file mode 100644 index 000000000..522c7136e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/aca8876efc1061b3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ace03c6eb44886e5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ace03c6eb44886e5_0 new file mode 100644 index 000000000..a9591f25c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ace03c6eb44886e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/acf05fb5e59ba58d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/acf05fb5e59ba58d_0 new file mode 100644 index 000000000..af91cfc4a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/acf05fb5e59ba58d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ad2ccef28e4e6c72_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ad2ccef28e4e6c72_0 new file mode 100644 index 000000000..ba2ed8247 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ad2ccef28e4e6c72_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ad36bd2a37964b3e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ad36bd2a37964b3e_0 new file mode 100644 index 000000000..2b0e99965 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ad36bd2a37964b3e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ad37be5d7a258106_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ad37be5d7a258106_0 new file mode 100644 index 000000000..77fe16bb2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ad37be5d7a258106_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ad431cdd77d448cb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ad431cdd77d448cb_0 new file mode 100644 index 000000000..90895668d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ad431cdd77d448cb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ada5ed4485643ef2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ada5ed4485643ef2_0 new file mode 100644 index 000000000..b177247ae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ada5ed4485643ef2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ae01bcb7e0523919_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ae01bcb7e0523919_0 new file mode 100644 index 000000000..8bf366df2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ae01bcb7e0523919_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ae276f63f5a595de_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ae276f63f5a595de_0 new file mode 100644 index 000000000..e18dfee89 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ae276f63f5a595de_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ae36c576bb6ae026_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ae36c576bb6ae026_0 new file mode 100644 index 000000000..078eea5e1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ae36c576bb6ae026_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ae4ea2794842f858_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ae4ea2794842f858_0 new file mode 100644 index 000000000..b618186b0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ae4ea2794842f858_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/aec8cbce31fc04cd_0 b/notebooklm_chrome_profile/Default/Code Cache/js/aec8cbce31fc04cd_0 new file mode 100644 index 000000000..a58dccc9a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/aec8cbce31fc04cd_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/aef1584c3d0e1047_0 b/notebooklm_chrome_profile/Default/Code Cache/js/aef1584c3d0e1047_0 new file mode 100644 index 000000000..41a6d8612 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/aef1584c3d0e1047_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/aef7dba88abeeab3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/aef7dba88abeeab3_0 new file mode 100644 index 000000000..56281e093 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/aef7dba88abeeab3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/af492166c226c324_0 b/notebooklm_chrome_profile/Default/Code Cache/js/af492166c226c324_0 new file mode 100644 index 000000000..719ddaced Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/af492166c226c324_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/af5d1597597192fe_0 b/notebooklm_chrome_profile/Default/Code Cache/js/af5d1597597192fe_0 new file mode 100644 index 000000000..8cd9854c1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/af5d1597597192fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/afae4da2edb84711_0 b/notebooklm_chrome_profile/Default/Code Cache/js/afae4da2edb84711_0 new file mode 100644 index 000000000..38df49ce4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/afae4da2edb84711_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/afcb2d8fd8746dfd_0 b/notebooklm_chrome_profile/Default/Code Cache/js/afcb2d8fd8746dfd_0 new file mode 100644 index 000000000..d5a561c24 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/afcb2d8fd8746dfd_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/afd201195c0f2089_0 b/notebooklm_chrome_profile/Default/Code Cache/js/afd201195c0f2089_0 new file mode 100644 index 000000000..e141880f6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/afd201195c0f2089_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b07618bd87421098_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b07618bd87421098_0 new file mode 100644 index 000000000..2116f80bf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b07618bd87421098_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b0d2cdf9b95fc4b1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b0d2cdf9b95fc4b1_0 new file mode 100644 index 000000000..af91457fa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b0d2cdf9b95fc4b1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b124d2aaf1ae5d9e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b124d2aaf1ae5d9e_0 new file mode 100644 index 000000000..88cdf4bb1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b124d2aaf1ae5d9e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b14c38783fc75144_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b14c38783fc75144_0 new file mode 100644 index 000000000..cefb3423f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b14c38783fc75144_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b1816996ad3be502_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b1816996ad3be502_0 new file mode 100644 index 000000000..8fd3d65ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b1816996ad3be502_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b1865e7e2c7cb7b9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b1865e7e2c7cb7b9_0 new file mode 100644 index 000000000..51350a9ef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b1865e7e2c7cb7b9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b194f2cf2f936fdd_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b194f2cf2f936fdd_0 new file mode 100644 index 000000000..b634e55e3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b194f2cf2f936fdd_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b1a399363cc994bd_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b1a399363cc994bd_0 new file mode 100644 index 000000000..80fc5233a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b1a399363cc994bd_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b1ac8409dc386981_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b1ac8409dc386981_0 new file mode 100644 index 000000000..3b2fa899c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b1ac8409dc386981_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b1fb215b8ebfb192_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b1fb215b8ebfb192_0 new file mode 100644 index 000000000..caf2c5524 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b1fb215b8ebfb192_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b2197491bbd9b22c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b2197491bbd9b22c_0 new file mode 100644 index 000000000..3ae91610a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b2197491bbd9b22c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b21d2ae42ede69ed_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b21d2ae42ede69ed_0 new file mode 100644 index 000000000..bda053862 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b21d2ae42ede69ed_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b237d5e9c72fffd4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b237d5e9c72fffd4_0 new file mode 100644 index 000000000..5d1f3ecc9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b237d5e9c72fffd4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b2485da902350eaa_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b2485da902350eaa_0 new file mode 100644 index 000000000..925830032 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b2485da902350eaa_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b280f8c4d84b3d01_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b280f8c4d84b3d01_0 new file mode 100644 index 000000000..0671c747a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b280f8c4d84b3d01_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b283064851451905_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b283064851451905_0 new file mode 100644 index 000000000..d9cfd865d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b283064851451905_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b28e42218af2a5d1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b28e42218af2a5d1_0 index 10a6ffb1b..70c0bf50b 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/b28e42218af2a5d1_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/b28e42218af2a5d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b29908de61582f90_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b29908de61582f90_0 index 31cb31cba..dd744b04c 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/b29908de61582f90_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/b29908de61582f90_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b2b0e4121be2e8a9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b2b0e4121be2e8a9_0 new file mode 100644 index 000000000..6be72f2db Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b2b0e4121be2e8a9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b30115d2d38b8131_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b30115d2d38b8131_0 index 0eed88bfd..c219ba637 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/b30115d2d38b8131_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/b30115d2d38b8131_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b336246cb6a87aec_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b336246cb6a87aec_0 new file mode 100644 index 000000000..3972ed522 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b336246cb6a87aec_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b3398425e6227344_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b3398425e6227344_0 new file mode 100644 index 000000000..6916677a1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b3398425e6227344_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b341aa57f1539ea3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b341aa57f1539ea3_0 new file mode 100644 index 000000000..2827f9b07 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b341aa57f1539ea3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b36eebf062882693_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b36eebf062882693_0 new file mode 100644 index 000000000..cf1217aa4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b36eebf062882693_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b3bba3f10559f5e1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b3bba3f10559f5e1_0 new file mode 100644 index 000000000..f6f0d4a59 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b3bba3f10559f5e1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b3eea7c413546607_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b3eea7c413546607_0 new file mode 100644 index 000000000..c6e7887db Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b3eea7c413546607_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b42622ee1202a875_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b42622ee1202a875_0 index 8553a5337..01f3bf0da 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/b42622ee1202a875_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/b42622ee1202a875_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b4427059e14cb6cf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b4427059e14cb6cf_0 new file mode 100644 index 000000000..6a01b5d87 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b4427059e14cb6cf_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b457c62993661339_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b457c62993661339_0 deleted file mode 100644 index 55751db40..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/b457c62993661339_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b474451e6b691858_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b474451e6b691858_0 new file mode 100644 index 000000000..007375aa4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b474451e6b691858_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b47bf853c4f66ba0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b47bf853c4f66ba0_0 new file mode 100644 index 000000000..b700b6d03 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b47bf853c4f66ba0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b49fbb339313ac14_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b49fbb339313ac14_0 new file mode 100644 index 000000000..92fe8d1ee Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b49fbb339313ac14_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b4dfd54262316237_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b4dfd54262316237_0 new file mode 100644 index 000000000..e4d979987 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b4dfd54262316237_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b53c51d703ce9ba8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b53c51d703ce9ba8_0 deleted file mode 100644 index 7f8dc4de6..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/b53c51d703ce9ba8_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b541e92c88e45251_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b541e92c88e45251_0 new file mode 100644 index 000000000..ad806ff99 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b541e92c88e45251_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b5455ea490c0b1a0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b5455ea490c0b1a0_0 new file mode 100644 index 000000000..b9ae76ea9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b5455ea490c0b1a0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b546fc836351f7f7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b546fc836351f7f7_0 new file mode 100644 index 000000000..aaf8a22d9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b546fc836351f7f7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b567ef7817fcd54c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b567ef7817fcd54c_0 new file mode 100644 index 000000000..f60ac72e1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b567ef7817fcd54c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b5ac454b49bef868_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b5ac454b49bef868_0 new file mode 100644 index 000000000..7d586aa9d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b5ac454b49bef868_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b5af69f8c7f2d568_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b5af69f8c7f2d568_0 new file mode 100644 index 000000000..543d33635 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b5af69f8c7f2d568_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b5bbb53708bf2993_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b5bbb53708bf2993_0 new file mode 100644 index 000000000..49b2eb5ad Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b5bbb53708bf2993_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b5c1443bcf5b7cea_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b5c1443bcf5b7cea_0 new file mode 100644 index 000000000..ead1e6c00 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b5c1443bcf5b7cea_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b5d0722157d54011_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b5d0722157d54011_0 new file mode 100644 index 000000000..615ec57f3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b5d0722157d54011_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b61a5a412a967852_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b61a5a412a967852_0 new file mode 100644 index 000000000..4955c49c7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b61a5a412a967852_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b6333aceb0a9b41a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b6333aceb0a9b41a_0 new file mode 100644 index 000000000..cca91864a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b6333aceb0a9b41a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b63da5880dcb172d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b63da5880dcb172d_0 index 886715071..d9c2ae908 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/b63da5880dcb172d_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/b63da5880dcb172d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b64722d7bf6d3a4d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b64722d7bf6d3a4d_0 new file mode 100644 index 000000000..1b030218b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b64722d7bf6d3a4d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b666df52d390bb80_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b666df52d390bb80_0 new file mode 100644 index 000000000..2197b9b79 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b666df52d390bb80_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b6b66aebcb60980e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b6b66aebcb60980e_0 new file mode 100644 index 000000000..019c86548 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b6b66aebcb60980e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b6d58fa51fd6335b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b6d58fa51fd6335b_0 index fad6130dc..7fa02e296 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/b6d58fa51fd6335b_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/b6d58fa51fd6335b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b6ea4b68bd4b58f2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b6ea4b68bd4b58f2_0 new file mode 100644 index 000000000..2f2098547 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b6ea4b68bd4b58f2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b70053cadc085aa2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b70053cadc085aa2_0 new file mode 100644 index 000000000..c7c93f120 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b70053cadc085aa2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b73c23b3c7b5141f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b73c23b3c7b5141f_0 new file mode 100644 index 000000000..bba180ef0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b73c23b3c7b5141f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b73dabb796891d69_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b73dabb796891d69_0 new file mode 100644 index 000000000..85f4afc7a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b73dabb796891d69_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b750623708d821df_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b750623708d821df_0 new file mode 100644 index 000000000..55415b869 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b750623708d821df_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b75b4985845e349a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b75b4985845e349a_0 new file mode 100644 index 000000000..8c5950f6d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b75b4985845e349a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b779df74f27e56ee_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b779df74f27e56ee_0 new file mode 100644 index 000000000..582703cf2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b779df74f27e56ee_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b784928033b3813c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b784928033b3813c_0 new file mode 100644 index 000000000..9ad4172c6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b784928033b3813c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b7ab815847dacb11_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b7ab815847dacb11_0 new file mode 100644 index 000000000..aee79bb50 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b7ab815847dacb11_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b829a91943807eb4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b829a91943807eb4_0 new file mode 100644 index 000000000..a6c3da32c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b829a91943807eb4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b89be70008767590_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b89be70008767590_0 new file mode 100644 index 000000000..32310a3a1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b89be70008767590_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b8be9e84f9fcca97_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b8be9e84f9fcca97_0 new file mode 100644 index 000000000..957bb9c74 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b8be9e84f9fcca97_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b8f972c6fd85269a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b8f972c6fd85269a_0 new file mode 100644 index 000000000..1c47e1ee5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b8f972c6fd85269a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b8ffd9acc03f3e56_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b8ffd9acc03f3e56_0 new file mode 100644 index 000000000..b723be1a9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b8ffd9acc03f3e56_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b90a39498b21150a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b90a39498b21150a_0 new file mode 100644 index 000000000..a4fac4ccf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b90a39498b21150a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b936fd1394dd6050_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b936fd1394dd6050_0 new file mode 100644 index 000000000..2368dbb9d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b936fd1394dd6050_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b938949f48afbc99_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b938949f48afbc99_0 new file mode 100644 index 000000000..e6653a013 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b938949f48afbc99_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b9b902b642b8f6e9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b9b902b642b8f6e9_0 new file mode 100644 index 000000000..0b6b565b4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b9b902b642b8f6e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b9e5f47c999ff82b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b9e5f47c999ff82b_0 new file mode 100644 index 000000000..db6d3db67 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/b9e5f47c999ff82b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/b9e9b30f6c3e19eb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/b9e9b30f6c3e19eb_0 index 253fada36..176946a2f 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/b9e9b30f6c3e19eb_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/b9e9b30f6c3e19eb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ba17e28a69a49ff9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ba17e28a69a49ff9_0 new file mode 100644 index 000000000..de16a9e3e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ba17e28a69a49ff9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ba5dc9233ba1af61_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ba5dc9233ba1af61_0 new file mode 100644 index 000000000..15db11b64 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ba5dc9233ba1af61_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/baf561a911cfc4bd_0 b/notebooklm_chrome_profile/Default/Code Cache/js/baf561a911cfc4bd_0 new file mode 100644 index 000000000..3290edd50 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/baf561a911cfc4bd_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bb0dea8207710c89_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bb0dea8207710c89_0 new file mode 100644 index 000000000..a2ae4c2ad Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bb0dea8207710c89_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bb37d5dd4033b542_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bb37d5dd4033b542_0 new file mode 100644 index 000000000..83b91c6f5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bb37d5dd4033b542_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bb9a7a201f39036a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bb9a7a201f39036a_0 new file mode 100644 index 000000000..eb158380e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bb9a7a201f39036a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bba4b19d8833f353_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bba4b19d8833f353_0 new file mode 100644 index 000000000..d02fcc493 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bba4b19d8833f353_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bbdd4e141702be2c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bbdd4e141702be2c_0 new file mode 100644 index 000000000..3999aa900 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bbdd4e141702be2c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bbfce63b5701eeda_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bbfce63b5701eeda_0 new file mode 100644 index 000000000..6db75349f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bbfce63b5701eeda_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bc02f8d216e3f437_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bc02f8d216e3f437_0 new file mode 100644 index 000000000..a497728a7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bc02f8d216e3f437_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bc20ebbe348f1907_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bc20ebbe348f1907_0 new file mode 100644 index 000000000..d07703b96 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bc20ebbe348f1907_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bc32da7c2d067a9b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bc32da7c2d067a9b_0 new file mode 100644 index 000000000..da6de83a9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bc32da7c2d067a9b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bc7ef22f059b1f6d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bc7ef22f059b1f6d_0 new file mode 100644 index 000000000..8fadcb46f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bc7ef22f059b1f6d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bc7fd5f2cac28b28_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bc7fd5f2cac28b28_0 new file mode 100644 index 000000000..4f40e33e1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bc7fd5f2cac28b28_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bc8dbce11fce4df5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bc8dbce11fce4df5_0 new file mode 100644 index 000000000..6cf8723a1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bc8dbce11fce4df5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bc91f1535c1e770b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bc91f1535c1e770b_0 new file mode 100644 index 000000000..be523c659 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bc91f1535c1e770b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bcb187c3ec7e134f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bcb187c3ec7e134f_0 new file mode 100644 index 000000000..7835fe3e7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bcb187c3ec7e134f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bcc1091ba5a2cbe6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bcc1091ba5a2cbe6_0 new file mode 100644 index 000000000..16b039e37 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bcc1091ba5a2cbe6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bcc5edf8a71bda2c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bcc5edf8a71bda2c_0 new file mode 100644 index 000000000..94d841092 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bcc5edf8a71bda2c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bd0302c35cf92e73_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bd0302c35cf92e73_0 new file mode 100644 index 000000000..6bc9ae8e3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bd0302c35cf92e73_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bd09da4f44777be3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bd09da4f44777be3_0 new file mode 100644 index 000000000..8b39d77ea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bd09da4f44777be3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bd15588b1c3e521e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bd15588b1c3e521e_0 new file mode 100644 index 000000000..5ea8c43a6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bd15588b1c3e521e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bda9840dad01f390_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bda9840dad01f390_0 new file mode 100644 index 000000000..7b5f9109e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bda9840dad01f390_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bdd218e02d3b28e6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bdd218e02d3b28e6_0 new file mode 100644 index 000000000..0118566c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bdd218e02d3b28e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bdf0fb455484a600_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bdf0fb455484a600_0 new file mode 100644 index 000000000..ebbb7b0fd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bdf0fb455484a600_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/be2728be2847ea86_0 b/notebooklm_chrome_profile/Default/Code Cache/js/be2728be2847ea86_0 new file mode 100644 index 000000000..8396e81ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/be2728be2847ea86_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/be397b9648fad4d7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/be397b9648fad4d7_0 new file mode 100644 index 000000000..f5cdbbbc6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/be397b9648fad4d7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/be78144a0b0f2c2f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/be78144a0b0f2c2f_0 new file mode 100644 index 000000000..84f3c92ac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/be78144a0b0f2c2f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/be7d90ba64fd3a16_0 b/notebooklm_chrome_profile/Default/Code Cache/js/be7d90ba64fd3a16_0 new file mode 100644 index 000000000..e135ba77e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/be7d90ba64fd3a16_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/be88985bd2930566_0 b/notebooklm_chrome_profile/Default/Code Cache/js/be88985bd2930566_0 new file mode 100644 index 000000000..af6bc7c63 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/be88985bd2930566_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bea9ce5a500cb9b2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bea9ce5a500cb9b2_0 new file mode 100644 index 000000000..5c06aa282 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bea9ce5a500cb9b2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bef50e366a6d1b5c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bef50e366a6d1b5c_0 new file mode 100644 index 000000000..29e326052 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bef50e366a6d1b5c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bf19ecd6e8aeab1b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bf19ecd6e8aeab1b_0 new file mode 100644 index 000000000..69f5629c7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bf19ecd6e8aeab1b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bf232e55b99b107e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bf232e55b99b107e_0 new file mode 100644 index 000000000..0ed6dbdd5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bf232e55b99b107e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bf36388bea8628f1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bf36388bea8628f1_0 new file mode 100644 index 000000000..60636b7e3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bf36388bea8628f1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bf60b9bf42f03cfb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bf60b9bf42f03cfb_0 new file mode 100644 index 000000000..79e939baa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bf60b9bf42f03cfb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bfa2736c65bf9b23_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bfa2736c65bf9b23_0 new file mode 100644 index 000000000..ff26460a2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bfa2736c65bf9b23_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/bfcfdba0acaea5a3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/bfcfdba0acaea5a3_0 new file mode 100644 index 000000000..f9ce560ad Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/bfcfdba0acaea5a3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c023789ae8b8f556_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c023789ae8b8f556_0 new file mode 100644 index 000000000..8941e10fd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c023789ae8b8f556_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c04d3da6ad4b03ef_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c04d3da6ad4b03ef_0 deleted file mode 100644 index e5294a5db..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/c04d3da6ad4b03ef_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c0cb5aad5461ae79_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c0cb5aad5461ae79_0 new file mode 100644 index 000000000..d90b45f62 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c0cb5aad5461ae79_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c13aa8fe4a4e3864_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c13aa8fe4a4e3864_0 deleted file mode 100644 index e41ea1fbd..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/c13aa8fe4a4e3864_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c14abbd5cf00e5ec_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c14abbd5cf00e5ec_0 index 57bd05b77..331a3fc18 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/c14abbd5cf00e5ec_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/c14abbd5cf00e5ec_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c17881836376d388_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c17881836376d388_0 new file mode 100644 index 000000000..28fb27982 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c17881836376d388_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c1c52d339b1bfaa6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c1c52d339b1bfaa6_0 new file mode 100644 index 000000000..8d7a49697 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c1c52d339b1bfaa6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c1cc726413e4d8ba_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c1cc726413e4d8ba_0 new file mode 100644 index 000000000..8fd7afa3a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c1cc726413e4d8ba_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c1de2ace528f5145_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c1de2ace528f5145_0 new file mode 100644 index 000000000..7bb23399a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c1de2ace528f5145_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c2bc77b04987559a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c2bc77b04987559a_0 new file mode 100644 index 000000000..7e8855d1b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c2bc77b04987559a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c3069217cf97f4ee_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c3069217cf97f4ee_0 new file mode 100644 index 000000000..746567e27 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c3069217cf97f4ee_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c30756b6fab9bbc1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c30756b6fab9bbc1_0 new file mode 100644 index 000000000..ba1f8c8fc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c30756b6fab9bbc1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c3161835f08851fe_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c3161835f08851fe_0 index f6449262e..3dfe02f1c 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/c3161835f08851fe_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/c3161835f08851fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c35574db79073ecf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c35574db79073ecf_0 new file mode 100644 index 000000000..cc5f5567f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c35574db79073ecf_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c35a664d1b9381b9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c35a664d1b9381b9_0 new file mode 100644 index 000000000..9750dc4e1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c35a664d1b9381b9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c361e1ef88cf8577_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c361e1ef88cf8577_0 new file mode 100644 index 000000000..10a9101f1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c361e1ef88cf8577_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c38a99b337bcf257_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c38a99b337bcf257_0 new file mode 100644 index 000000000..48f914802 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c38a99b337bcf257_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c3930bec1351413c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c3930bec1351413c_0 new file mode 100644 index 000000000..7eaa54917 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c3930bec1351413c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c3d333557ea796e2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c3d333557ea796e2_0 deleted file mode 100644 index ab888a224..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/c3d333557ea796e2_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c3e2c5172f715efe_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c3e2c5172f715efe_0 new file mode 100644 index 000000000..1e15e02e6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c3e2c5172f715efe_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c3fce6910fb77037_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c3fce6910fb77037_0 new file mode 100644 index 000000000..a09212d7b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c3fce6910fb77037_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c44942e1712c5f4c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c44942e1712c5f4c_0 index c19d855ee..f53bd3938 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/c44942e1712c5f4c_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/c44942e1712c5f4c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c47dd6bafab7887f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c47dd6bafab7887f_0 index 1ad6c38e6..78fde3201 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/c47dd6bafab7887f_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/c47dd6bafab7887f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c47f2efce59e3a6a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c47f2efce59e3a6a_0 new file mode 100644 index 000000000..6d74cae07 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c47f2efce59e3a6a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c48797f07e968dec_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c48797f07e968dec_0 new file mode 100644 index 000000000..1c103bafc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c48797f07e968dec_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c5396bdaaac1a935_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c5396bdaaac1a935_0 new file mode 100644 index 000000000..de5b68c89 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c5396bdaaac1a935_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c55aa8073f6a4eb5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c55aa8073f6a4eb5_0 index b6ac6f936..85ec06c6b 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/c55aa8073f6a4eb5_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/c55aa8073f6a4eb5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c5a974d35ebf085a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c5a974d35ebf085a_0 new file mode 100644 index 000000000..d69c24bd6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c5a974d35ebf085a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c5c831e2e0501308_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c5c831e2e0501308_0 new file mode 100644 index 000000000..17ff72d2e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c5c831e2e0501308_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c62300e189d7df5d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c62300e189d7df5d_0 new file mode 100644 index 000000000..61ae4c5c0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c62300e189d7df5d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c6496fda402b211f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c6496fda402b211f_0 new file mode 100644 index 000000000..eeff690c4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c6496fda402b211f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c69f5ef745eab66e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c69f5ef745eab66e_0 new file mode 100644 index 000000000..b37b3601e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c69f5ef745eab66e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c6c2f225012375c9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c6c2f225012375c9_0 new file mode 100644 index 000000000..2decb9330 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c6c2f225012375c9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c6e5d030133c0de1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c6e5d030133c0de1_0 new file mode 100644 index 000000000..30c3cff48 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c6e5d030133c0de1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c78bd17a7f25022f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c78bd17a7f25022f_0 new file mode 100644 index 000000000..69975f48a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c78bd17a7f25022f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c790bf1f2ef389ca_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c790bf1f2ef389ca_0 new file mode 100644 index 000000000..38cb1d290 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c790bf1f2ef389ca_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c798dd1ad83b7a81_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c798dd1ad83b7a81_0 new file mode 100644 index 000000000..1c36fd87f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c798dd1ad83b7a81_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c7a4fb8750c7d1eb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c7a4fb8750c7d1eb_0 new file mode 100644 index 000000000..2cc5284d4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c7a4fb8750c7d1eb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c7d6a1eb507e31e5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c7d6a1eb507e31e5_0 new file mode 100644 index 000000000..2999de905 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c7d6a1eb507e31e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c7fc35428722a7fa_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c7fc35428722a7fa_0 new file mode 100644 index 000000000..d964123b8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c7fc35428722a7fa_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c7fc5830289cb6c1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c7fc5830289cb6c1_0 new file mode 100644 index 000000000..6a4fb3b2b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c7fc5830289cb6c1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c82c08f93a5da1e0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c82c08f93a5da1e0_0 new file mode 100644 index 000000000..d85096aef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c82c08f93a5da1e0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c87c714fe649fb11_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c87c714fe649fb11_0 new file mode 100644 index 000000000..9452cd937 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c87c714fe649fb11_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c8a42bbe1c4e6e70_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c8a42bbe1c4e6e70_0 new file mode 100644 index 000000000..75e6bbcd9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c8a42bbe1c4e6e70_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c8ae06f7fba66366_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c8ae06f7fba66366_0 new file mode 100644 index 000000000..254265feb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c8ae06f7fba66366_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c8ca7cc513f87f30_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c8ca7cc513f87f30_0 new file mode 100644 index 000000000..04ec62e99 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c8ca7cc513f87f30_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c8ed999f645503ec_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c8ed999f645503ec_0 new file mode 100644 index 000000000..ee5112dc7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c8ed999f645503ec_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c93a065b4b38bd76_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c93a065b4b38bd76_0 new file mode 100644 index 000000000..eef42a5b3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c93a065b4b38bd76_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c949b7f9b4556136_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c949b7f9b4556136_0 new file mode 100644 index 000000000..fd801b37f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c949b7f9b4556136_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/c9d4c4992fd6fb86_0 b/notebooklm_chrome_profile/Default/Code Cache/js/c9d4c4992fd6fb86_0 new file mode 100644 index 000000000..2052d9a6c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/c9d4c4992fd6fb86_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ca3165258dab4967_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ca3165258dab4967_0 new file mode 100644 index 000000000..1d6ce11dd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ca3165258dab4967_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ca48cc94f0bb979d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ca48cc94f0bb979d_0 new file mode 100644 index 000000000..3eaf20ab7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ca48cc94f0bb979d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cab7961396220f25_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cab7961396220f25_0 new file mode 100644 index 000000000..279f3f47c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cab7961396220f25_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cac3e67d6cf5dc92_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cac3e67d6cf5dc92_0 new file mode 100644 index 000000000..a60586272 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cac3e67d6cf5dc92_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cad13afe5167afb6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cad13afe5167afb6_0 new file mode 100644 index 000000000..65c35007b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cad13afe5167afb6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cb061811f6fd9025_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cb061811f6fd9025_0 new file mode 100644 index 000000000..1d4bad915 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cb061811f6fd9025_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cb08f73c6bbee339_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cb08f73c6bbee339_0 new file mode 100644 index 000000000..7468a6814 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cb08f73c6bbee339_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cb1edbe02267c5ee_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cb1edbe02267c5ee_0 new file mode 100644 index 000000000..b4f52556d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cb1edbe02267c5ee_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cb4322bb4c869b9f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cb4322bb4c869b9f_0 new file mode 100644 index 000000000..2fe76bb0a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cb4322bb4c869b9f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cb56d6234ae340b5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cb56d6234ae340b5_0 new file mode 100644 index 000000000..b925ae881 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cb56d6234ae340b5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cb649b380c362e4c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cb649b380c362e4c_0 new file mode 100644 index 000000000..0af52cf65 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cb649b380c362e4c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cb69ff4d029488dc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cb69ff4d029488dc_0 new file mode 100644 index 000000000..a045d4fe7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cb69ff4d029488dc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cb811ee7df89365a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cb811ee7df89365a_0 new file mode 100644 index 000000000..7378105dd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cb811ee7df89365a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cbe2d0675caccac6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cbe2d0675caccac6_0 new file mode 100644 index 000000000..1ed69ea55 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cbe2d0675caccac6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cc1f635c36f6333e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cc1f635c36f6333e_0 new file mode 100644 index 000000000..264aea0d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cc1f635c36f6333e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cc490cf21caeed56_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cc490cf21caeed56_0 new file mode 100644 index 000000000..0c49e07cf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cc490cf21caeed56_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cca4a0046a6b5bd5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cca4a0046a6b5bd5_0 new file mode 100644 index 000000000..369622c0d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cca4a0046a6b5bd5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ccbebf77d7bf41dc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ccbebf77d7bf41dc_0 new file mode 100644 index 000000000..eb7332b78 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ccbebf77d7bf41dc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ccd3934ca681879e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ccd3934ca681879e_0 new file mode 100644 index 000000000..fbfc90498 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ccd3934ca681879e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cce978d498e9b9bf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cce978d498e9b9bf_0 new file mode 100644 index 000000000..4ada9e907 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cce978d498e9b9bf_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ccea43cabb9da469_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ccea43cabb9da469_0 new file mode 100644 index 000000000..b42df6876 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ccea43cabb9da469_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cd02399a33b3f2ea_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cd02399a33b3f2ea_0 new file mode 100644 index 000000000..af2282cda Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cd02399a33b3f2ea_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cd0d7523333a91e1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cd0d7523333a91e1_0 new file mode 100644 index 000000000..4a0902f7e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cd0d7523333a91e1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cd96990fa93a9f21_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cd96990fa93a9f21_0 deleted file mode 100644 index 98cf00a55..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/cd96990fa93a9f21_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cda15e03468e5c20_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cda15e03468e5c20_0 new file mode 100644 index 000000000..73e9ebaad Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cda15e03468e5c20_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cdb679e9e97b4979_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cdb679e9e97b4979_0 new file mode 100644 index 000000000..1c308c327 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cdb679e9e97b4979_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cdbfacc0e77915db_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cdbfacc0e77915db_0 new file mode 100644 index 000000000..c7e705ed8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cdbfacc0e77915db_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cde06e46ccac8e74_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cde06e46ccac8e74_0 new file mode 100644 index 000000000..3208739c7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cde06e46ccac8e74_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ce44d0ebb0906599_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ce44d0ebb0906599_0 index 1d0315f2e..1a4a70b04 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/ce44d0ebb0906599_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/ce44d0ebb0906599_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ce492478171bb2fd_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ce492478171bb2fd_0 new file mode 100644 index 000000000..45235a3db Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ce492478171bb2fd_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ce4c325294514308_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ce4c325294514308_0 new file mode 100644 index 000000000..5111e8370 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ce4c325294514308_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ce4e48ec3605e906_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ce4e48ec3605e906_0 new file mode 100644 index 000000000..27b91d320 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ce4e48ec3605e906_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ce7e3b0f470f1b0f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ce7e3b0f470f1b0f_0 new file mode 100644 index 000000000..5e658f29a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ce7e3b0f470f1b0f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ce90f07117889722_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ce90f07117889722_0 new file mode 100644 index 000000000..e63fe57f6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ce90f07117889722_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cf4fb0e668e7147b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cf4fb0e668e7147b_0 new file mode 100644 index 000000000..4a50a1f17 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cf4fb0e668e7147b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cf52b5cbec3bd049_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cf52b5cbec3bd049_0 deleted file mode 100644 index 875d934c7..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/cf52b5cbec3bd049_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cf52caeb37075814_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cf52caeb37075814_0 new file mode 100644 index 000000000..8fef3c237 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cf52caeb37075814_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cf629de679256cc9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cf629de679256cc9_0 deleted file mode 100644 index 37a3467e5..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/cf629de679256cc9_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cf9048c4500bf3b1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cf9048c4500bf3b1_0 new file mode 100644 index 000000000..9fe0d2a27 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cf9048c4500bf3b1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cf90e318afb39b73_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cf90e318afb39b73_0 new file mode 100644 index 000000000..f57df8260 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cf90e318afb39b73_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cf98f7797e3bef3a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cf98f7797e3bef3a_0 new file mode 100644 index 000000000..42a17b699 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cf98f7797e3bef3a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cfc0bf1229a6cd0f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cfc0bf1229a6cd0f_0 new file mode 100644 index 000000000..4b8e0bb07 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cfc0bf1229a6cd0f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cfdda2408e644d1a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cfdda2408e644d1a_0 new file mode 100644 index 000000000..7863b2cc6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cfdda2408e644d1a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/cfeb9d7d036299ca_0 b/notebooklm_chrome_profile/Default/Code Cache/js/cfeb9d7d036299ca_0 new file mode 100644 index 000000000..86ad948a8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/cfeb9d7d036299ca_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d109fc72086df460_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d109fc72086df460_0 new file mode 100644 index 000000000..038c9f12c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d109fc72086df460_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d12fb39820cc2dc4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d12fb39820cc2dc4_0 new file mode 100644 index 000000000..973b63f84 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d12fb39820cc2dc4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d130c7926d227f79_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d130c7926d227f79_0 new file mode 100644 index 000000000..cd47c0aab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d130c7926d227f79_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d131ff28985b7a27_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d131ff28985b7a27_0 new file mode 100644 index 000000000..f6db9baac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d131ff28985b7a27_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d1ccb3e00b45e711_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d1ccb3e00b45e711_0 new file mode 100644 index 000000000..c689e8868 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d1ccb3e00b45e711_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d20168ff2c919ccc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d20168ff2c919ccc_0 new file mode 100644 index 000000000..60a85b4eb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d20168ff2c919ccc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d2120b20b4023e1a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d2120b20b4023e1a_0 new file mode 100644 index 000000000..47532bc53 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d2120b20b4023e1a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d298bd06e370c7f2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d298bd06e370c7f2_0 new file mode 100644 index 000000000..a1f8cc84c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d298bd06e370c7f2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d2b1b9924bc77ef6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d2b1b9924bc77ef6_0 new file mode 100644 index 000000000..f4df7bcc7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d2b1b9924bc77ef6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d2bbd2a073577f31_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d2bbd2a073577f31_0 new file mode 100644 index 000000000..c6feb551e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d2bbd2a073577f31_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d2bffe0be0f66cd2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d2bffe0be0f66cd2_0 new file mode 100644 index 000000000..e412b01ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d2bffe0be0f66cd2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d2e931a36bfc8bb7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d2e931a36bfc8bb7_0 new file mode 100644 index 000000000..6e760ef94 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d2e931a36bfc8bb7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d3141b84e5f13d34_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d3141b84e5f13d34_0 new file mode 100644 index 000000000..f08116e9d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d3141b84e5f13d34_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d36b3969d08fc69f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d36b3969d08fc69f_0 new file mode 100644 index 000000000..88587930e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d36b3969d08fc69f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d373a60f935458ac_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d373a60f935458ac_0 new file mode 100644 index 000000000..afcb99672 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d373a60f935458ac_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d3ce0288a94ea883_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d3ce0288a94ea883_0 new file mode 100644 index 000000000..6fcbd65e1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d3ce0288a94ea883_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d412b03a424ad4b3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d412b03a424ad4b3_0 deleted file mode 100644 index c3ed6eb17..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/d412b03a424ad4b3_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d41f11fd38957c14_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d41f11fd38957c14_0 new file mode 100644 index 000000000..147277055 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d41f11fd38957c14_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d457924431c355f3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d457924431c355f3_0 new file mode 100644 index 000000000..c43a052a0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d457924431c355f3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d4916bbe1926ccba_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d4916bbe1926ccba_0 new file mode 100644 index 000000000..8e649bc3c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d4916bbe1926ccba_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d4f3f5cc985e2689_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d4f3f5cc985e2689_0 new file mode 100644 index 000000000..a93b203bc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d4f3f5cc985e2689_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d50e942b999b4498_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d50e942b999b4498_0 new file mode 100644 index 000000000..4dc1c709b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d50e942b999b4498_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d51001e8a5735bdf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d51001e8a5735bdf_0 new file mode 100644 index 000000000..ecae94b54 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d51001e8a5735bdf_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d522943f22f63391_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d522943f22f63391_0 new file mode 100644 index 000000000..aac94e3fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d522943f22f63391_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d529292e143578a4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d529292e143578a4_0 new file mode 100644 index 000000000..3c5baf20d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d529292e143578a4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d543da7b93e46a20_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d543da7b93e46a20_0 new file mode 100644 index 000000000..643d18be5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d543da7b93e46a20_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d54f993b86d9009e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d54f993b86d9009e_0 new file mode 100644 index 000000000..bee8ae393 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d54f993b86d9009e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d569c2317ffb4299_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d569c2317ffb4299_0 new file mode 100644 index 000000000..d1d8d35c0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d569c2317ffb4299_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d57c2f595c06fe79_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d57c2f595c06fe79_0 index 235be1251..b0d51fcea 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/d57c2f595c06fe79_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/d57c2f595c06fe79_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d5809db531d0b7cf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d5809db531d0b7cf_0 index b1e94dd8c..fdf69889c 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/d5809db531d0b7cf_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/d5809db531d0b7cf_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d5944f3b0ec84855_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d5944f3b0ec84855_0 new file mode 100644 index 000000000..624b5492a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d5944f3b0ec84855_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d5df54e05c9a8d66_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d5df54e05c9a8d66_0 new file mode 100644 index 000000000..2376da999 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d5df54e05c9a8d66_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d5ec5751b6a1a6a0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d5ec5751b6a1a6a0_0 new file mode 100644 index 000000000..6509c8230 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d5ec5751b6a1a6a0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d623327df46a3a06_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d623327df46a3a06_0 new file mode 100644 index 000000000..572cbffdf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d623327df46a3a06_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d64702bdb6d98585_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d64702bdb6d98585_0 new file mode 100644 index 000000000..f2c25b254 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d64702bdb6d98585_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d650d9f8ad58edf2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d650d9f8ad58edf2_0 new file mode 100644 index 000000000..230e2641e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d650d9f8ad58edf2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d6d83878d89ba60c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d6d83878d89ba60c_0 new file mode 100644 index 000000000..c0643dd51 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d6d83878d89ba60c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d6fa6affae140eb6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d6fa6affae140eb6_0 new file mode 100644 index 000000000..c8aad2a77 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d6fa6affae140eb6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d73ad5b2e48c5c13_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d73ad5b2e48c5c13_0 new file mode 100644 index 000000000..36bd37182 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d73ad5b2e48c5c13_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d7596124a2f30960_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d7596124a2f30960_0 new file mode 100644 index 000000000..6713d6dec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d7596124a2f30960_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d788e49280d9d430_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d788e49280d9d430_0 new file mode 100644 index 000000000..5ddacf1bd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d788e49280d9d430_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d79ec0ba90dde633_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d79ec0ba90dde633_0 new file mode 100644 index 000000000..9461daf63 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d79ec0ba90dde633_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d87d704fd6ce02de_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d87d704fd6ce02de_0 new file mode 100644 index 000000000..390b8ade2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d87d704fd6ce02de_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d8a51ab5a64ceb9b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d8a51ab5a64ceb9b_0 new file mode 100644 index 000000000..84fd98c94 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d8a51ab5a64ceb9b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d8c64ecc58e425b0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d8c64ecc58e425b0_0 new file mode 100644 index 000000000..8107367c4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d8c64ecc58e425b0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d951db7d8349bf51_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d951db7d8349bf51_0 index fe374f64b..72eaa4bb4 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/d951db7d8349bf51_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/d951db7d8349bf51_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d954c749f4fd18bb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d954c749f4fd18bb_0 new file mode 100644 index 000000000..d7441075a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d954c749f4fd18bb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d97749424eca057b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d97749424eca057b_0 new file mode 100644 index 000000000..f39dabdad Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d97749424eca057b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d980834b07a15461_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d980834b07a15461_0 new file mode 100644 index 000000000..eb8f6df0b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d980834b07a15461_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d9982a915bff347f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d9982a915bff347f_0 new file mode 100644 index 000000000..871091f1a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d9982a915bff347f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/d9e07031e6e318cb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/d9e07031e6e318cb_0 new file mode 100644 index 000000000..b02af76a5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/d9e07031e6e318cb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/da4ad3eb8fdf543c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/da4ad3eb8fdf543c_0 new file mode 100644 index 000000000..928a520d3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/da4ad3eb8fdf543c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/daa3b42b7a86b72a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/daa3b42b7a86b72a_0 new file mode 100644 index 000000000..cb28d7fbf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/daa3b42b7a86b72a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/dacc57213417696b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/dacc57213417696b_0 new file mode 100644 index 000000000..91bd5e2ab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/dacc57213417696b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/dae3b45c5b2b876f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/dae3b45c5b2b876f_0 new file mode 100644 index 000000000..54985f851 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/dae3b45c5b2b876f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/daf5c042743c69a9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/daf5c042743c69a9_0 new file mode 100644 index 000000000..9a0339b9b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/daf5c042743c69a9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/db0031ec0c197dc8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/db0031ec0c197dc8_0 new file mode 100644 index 000000000..d680bacbb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/db0031ec0c197dc8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/db29cc6fbbbcfedb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/db29cc6fbbbcfedb_0 new file mode 100644 index 000000000..f4c8267ad Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/db29cc6fbbbcfedb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/db470731cc141a86_0 b/notebooklm_chrome_profile/Default/Code Cache/js/db470731cc141a86_0 new file mode 100644 index 000000000..1423c8a3d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/db470731cc141a86_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/db480cfeb5927ea2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/db480cfeb5927ea2_0 new file mode 100644 index 000000000..6c915bba6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/db480cfeb5927ea2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/db75582fc14d190b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/db75582fc14d190b_0 index 0646ef3b6..ae0a2e3f8 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/db75582fc14d190b_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/db75582fc14d190b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/dbe30f54f3c7f993_0 b/notebooklm_chrome_profile/Default/Code Cache/js/dbe30f54f3c7f993_0 new file mode 100644 index 000000000..f6e50d0f3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/dbe30f54f3c7f993_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/dc1532ac38c358ef_0 b/notebooklm_chrome_profile/Default/Code Cache/js/dc1532ac38c358ef_0 new file mode 100644 index 000000000..db56096ba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/dc1532ac38c358ef_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/dc4d883d128bd3a5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/dc4d883d128bd3a5_0 new file mode 100644 index 000000000..dab354499 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/dc4d883d128bd3a5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/dc61c57090b5f631_0 b/notebooklm_chrome_profile/Default/Code Cache/js/dc61c57090b5f631_0 new file mode 100644 index 000000000..69f588b75 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/dc61c57090b5f631_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/dc6d53d8f85c3bd4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/dc6d53d8f85c3bd4_0 new file mode 100644 index 000000000..1c802621c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/dc6d53d8f85c3bd4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/dc77d4dd0294953a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/dc77d4dd0294953a_0 new file mode 100644 index 000000000..17666aaf8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/dc77d4dd0294953a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/dc8b5983c47f44e2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/dc8b5983c47f44e2_0 new file mode 100644 index 000000000..2179a8dc2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/dc8b5983c47f44e2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/dccf03e6a51f578e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/dccf03e6a51f578e_0 new file mode 100644 index 000000000..3c4c6a813 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/dccf03e6a51f578e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/dcd460bfc60a7ba3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/dcd460bfc60a7ba3_0 new file mode 100644 index 000000000..e077122a7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/dcd460bfc60a7ba3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/dce00739cde1c974_0 b/notebooklm_chrome_profile/Default/Code Cache/js/dce00739cde1c974_0 new file mode 100644 index 000000000..e8d64fa6d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/dce00739cde1c974_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/dd40802ec54c9ffa_0 b/notebooklm_chrome_profile/Default/Code Cache/js/dd40802ec54c9ffa_0 new file mode 100644 index 000000000..54f74d324 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/dd40802ec54c9ffa_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ddcfbe91b9fc8e6e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ddcfbe91b9fc8e6e_0 new file mode 100644 index 000000000..6e1a3604d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ddcfbe91b9fc8e6e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/de183e5a62a1eade_0 b/notebooklm_chrome_profile/Default/Code Cache/js/de183e5a62a1eade_0 new file mode 100644 index 000000000..42965acbc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/de183e5a62a1eade_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/de6e837c5154db44_0 b/notebooklm_chrome_profile/Default/Code Cache/js/de6e837c5154db44_0 new file mode 100644 index 000000000..de8ff2198 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/de6e837c5154db44_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/de790130d5d168a8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/de790130d5d168a8_0 new file mode 100644 index 000000000..702a2fea7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/de790130d5d168a8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/debdf402803ce82f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/debdf402803ce82f_0 new file mode 100644 index 000000000..40c134e86 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/debdf402803ce82f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/def0bac60ab9ebd3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/def0bac60ab9ebd3_0 new file mode 100644 index 000000000..1fd648b54 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/def0bac60ab9ebd3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/defefc21f541a7ef_0 b/notebooklm_chrome_profile/Default/Code Cache/js/defefc21f541a7ef_0 new file mode 100644 index 000000000..daf00e603 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/defefc21f541a7ef_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/defffe015a7be088_0 b/notebooklm_chrome_profile/Default/Code Cache/js/defffe015a7be088_0 new file mode 100644 index 000000000..e09a2e3fe Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/defffe015a7be088_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/df20da7de581f658_0 b/notebooklm_chrome_profile/Default/Code Cache/js/df20da7de581f658_0 new file mode 100644 index 000000000..2a7ff4c07 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/df20da7de581f658_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/df2db86ec0c3b16d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/df2db86ec0c3b16d_0 index 23a80ad9e..fcf07fed7 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/df2db86ec0c3b16d_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/df2db86ec0c3b16d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/df714f49c7b65e90_0 b/notebooklm_chrome_profile/Default/Code Cache/js/df714f49c7b65e90_0 new file mode 100644 index 000000000..6262c1199 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/df714f49c7b65e90_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/dfa9fb5a965d7613_0 b/notebooklm_chrome_profile/Default/Code Cache/js/dfa9fb5a965d7613_0 new file mode 100644 index 000000000..009eb18a9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/dfa9fb5a965d7613_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/dff68672102ebfcf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/dff68672102ebfcf_0 new file mode 100644 index 000000000..2309185d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/dff68672102ebfcf_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e02725f7c228faff_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e02725f7c228faff_0 new file mode 100644 index 000000000..079031443 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e02725f7c228faff_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e0d0735816b29adb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e0d0735816b29adb_0 new file mode 100644 index 000000000..3cd066a10 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e0d0735816b29adb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e102d5a82a96a4c3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e102d5a82a96a4c3_0 new file mode 100644 index 000000000..dac009d2f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e102d5a82a96a4c3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e10fb7464801b14a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e10fb7464801b14a_0 new file mode 100644 index 000000000..308bf62dc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e10fb7464801b14a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e11bb88ae8603b38_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e11bb88ae8603b38_0 new file mode 100644 index 000000000..8f613a425 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e11bb88ae8603b38_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e136ae23401644d2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e136ae23401644d2_0 new file mode 100644 index 000000000..100975808 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e136ae23401644d2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e1480b21dd7dee11_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e1480b21dd7dee11_0 new file mode 100644 index 000000000..8d95736b4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e1480b21dd7dee11_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e1a5fddc0d687bf1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e1a5fddc0d687bf1_0 new file mode 100644 index 000000000..7eec1735c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e1a5fddc0d687bf1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e1b44ca17d1f411a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e1b44ca17d1f411a_0 new file mode 100644 index 000000000..0a6b8175c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e1b44ca17d1f411a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e1df9c52fe5f05a7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e1df9c52fe5f05a7_0 new file mode 100644 index 000000000..ceacd4dc5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e1df9c52fe5f05a7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e256fc862ed5938d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e256fc862ed5938d_0 new file mode 100644 index 000000000..9c15a4c48 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e256fc862ed5938d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e2d86a3292a9e0c2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e2d86a3292a9e0c2_0 new file mode 100644 index 000000000..9617af298 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e2d86a3292a9e0c2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e2ec98e43301f05e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e2ec98e43301f05e_0 index 2c7c12101..7ea07bd40 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/e2ec98e43301f05e_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/e2ec98e43301f05e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e2ed3953185ba55d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e2ed3953185ba55d_0 new file mode 100644 index 000000000..eaf8c3ca2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e2ed3953185ba55d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e32c3db736d753b7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e32c3db736d753b7_0 new file mode 100644 index 000000000..57dc76f6d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e32c3db736d753b7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e3b789dada07913e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e3b789dada07913e_0 new file mode 100644 index 000000000..3cee5aeb8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e3b789dada07913e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e3d1d85322e6ae81_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e3d1d85322e6ae81_0 new file mode 100644 index 000000000..4fd05e4e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e3d1d85322e6ae81_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e42f4ad61fb59ff6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e42f4ad61fb59ff6_0 new file mode 100644 index 000000000..6828e3c2f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e42f4ad61fb59ff6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e45c523f5df13d1f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e45c523f5df13d1f_0 new file mode 100644 index 000000000..14cb0e800 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e45c523f5df13d1f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e474597d3bc677a1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e474597d3bc677a1_0 new file mode 100644 index 000000000..39830fc80 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e474597d3bc677a1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e47d50742aeeba39_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e47d50742aeeba39_0 new file mode 100644 index 000000000..26939bebb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e47d50742aeeba39_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e4829b892ba4fbc3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e4829b892ba4fbc3_0 new file mode 100644 index 000000000..633757ef3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e4829b892ba4fbc3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e491e25b1d85088f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e491e25b1d85088f_0 new file mode 100644 index 000000000..15e422398 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e491e25b1d85088f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e51e8a3bc0f39bf3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e51e8a3bc0f39bf3_0 new file mode 100644 index 000000000..685640245 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e51e8a3bc0f39bf3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e520997d35c48724_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e520997d35c48724_0 new file mode 100644 index 000000000..bf75ec8ef Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e520997d35c48724_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e52a3995dcdd48e7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e52a3995dcdd48e7_0 new file mode 100644 index 000000000..970a3ef79 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e52a3995dcdd48e7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e52d21417095a3bc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e52d21417095a3bc_0 new file mode 100644 index 000000000..7601417ae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e52d21417095a3bc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e540cd7884759031_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e540cd7884759031_0 new file mode 100644 index 000000000..55f858843 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e540cd7884759031_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e559ccd9efb5c920_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e559ccd9efb5c920_0 new file mode 100644 index 000000000..a9a7a4098 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e559ccd9efb5c920_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e58918a143f1d6f6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e58918a143f1d6f6_0 new file mode 100644 index 000000000..8be6e73d1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e58918a143f1d6f6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e5af65333f14e380_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e5af65333f14e380_0 new file mode 100644 index 000000000..8add0f9d7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e5af65333f14e380_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e5d70e8f2f72bb04_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e5d70e8f2f72bb04_0 new file mode 100644 index 000000000..4788183b1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e5d70e8f2f72bb04_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e5e23bb608b026e2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e5e23bb608b026e2_0 new file mode 100644 index 000000000..3f7314118 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e5e23bb608b026e2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e602750a5c883837_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e602750a5c883837_0 new file mode 100644 index 000000000..ffa6402e1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e602750a5c883837_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e60ec83f9e6b3617_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e60ec83f9e6b3617_0 new file mode 100644 index 000000000..ef640074a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e60ec83f9e6b3617_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e65218a33bba8528_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e65218a33bba8528_0 index 3aef98b0b..be3a0132a 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/e65218a33bba8528_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/e65218a33bba8528_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e67c582fcaa38b69_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e67c582fcaa38b69_0 new file mode 100644 index 000000000..71dec7133 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e67c582fcaa38b69_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e6ce585510a696e6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e6ce585510a696e6_0 new file mode 100644 index 000000000..34a35e380 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e6ce585510a696e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e6dd495d84ef23fc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e6dd495d84ef23fc_0 new file mode 100644 index 000000000..3cb42fa6f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e6dd495d84ef23fc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e71d2b7bb87237bc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e71d2b7bb87237bc_0 deleted file mode 100644 index bbd33ae85..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/e71d2b7bb87237bc_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e73dc68724b7259f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e73dc68724b7259f_0 new file mode 100644 index 000000000..7f43923c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e73dc68724b7259f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e75f5d064a8ff640_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e75f5d064a8ff640_0 new file mode 100644 index 000000000..5573acab4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e75f5d064a8ff640_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e7641b332b610e43_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e7641b332b610e43_0 deleted file mode 100644 index aa141faa1..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/e7641b332b610e43_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e781de59e76ba330_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e781de59e76ba330_0 new file mode 100644 index 000000000..32398f95e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e781de59e76ba330_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e79727d9652a0408_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e79727d9652a0408_0 new file mode 100644 index 000000000..f9c8ca1f0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e79727d9652a0408_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e79c1a1563f9aec8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e79c1a1563f9aec8_0 deleted file mode 100644 index f9a1b0adc..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/e79c1a1563f9aec8_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e7b271510fbf216a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e7b271510fbf216a_0 new file mode 100644 index 000000000..d92f6246d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e7b271510fbf216a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e836433fac7dac6a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e836433fac7dac6a_0 deleted file mode 100644 index 45cefde7c..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/e836433fac7dac6a_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e889c94d957a351d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e889c94d957a351d_0 new file mode 100644 index 000000000..0e03b53e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e889c94d957a351d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e88fb92f1fc19f44_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e88fb92f1fc19f44_0 new file mode 100644 index 000000000..72a4b6a22 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e88fb92f1fc19f44_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e8ad1412904e226f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e8ad1412904e226f_0 new file mode 100644 index 000000000..56c2948b3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e8ad1412904e226f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e8c2cb2b7682d6a1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e8c2cb2b7682d6a1_0 new file mode 100644 index 000000000..4ea2efda9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e8c2cb2b7682d6a1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e958ccec59c092d0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e958ccec59c092d0_0 new file mode 100644 index 000000000..cc0730a38 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e958ccec59c092d0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e976d69fb2984015_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e976d69fb2984015_0 new file mode 100644 index 000000000..b3a09316e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e976d69fb2984015_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e9b3f148f6a3fd86_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e9b3f148f6a3fd86_0 new file mode 100644 index 000000000..72f036b24 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e9b3f148f6a3fd86_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e9c2bc9114e02728_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e9c2bc9114e02728_0 new file mode 100644 index 000000000..07c4350c8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e9c2bc9114e02728_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e9de826ef795829d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e9de826ef795829d_0 new file mode 100644 index 000000000..90b15c183 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e9de826ef795829d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/e9fc430784227aa4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/e9fc430784227aa4_0 new file mode 100644 index 000000000..2226ccea2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/e9fc430784227aa4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ea085d35f6fa8fa0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ea085d35f6fa8fa0_0 new file mode 100644 index 000000000..ee8c490ee Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ea085d35f6fa8fa0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ea3ea8e212c0e2f3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ea3ea8e212c0e2f3_0 new file mode 100644 index 000000000..be514a7c5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ea3ea8e212c0e2f3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ea88184e7bc30903_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ea88184e7bc30903_0 new file mode 100644 index 000000000..0965e1f5a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ea88184e7bc30903_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ea9f092d0592c94e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ea9f092d0592c94e_0 new file mode 100644 index 000000000..df80bdc7e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ea9f092d0592c94e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/eaa2afab2173535e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/eaa2afab2173535e_0 new file mode 100644 index 000000000..549dfc74c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/eaa2afab2173535e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/eaadbe102d851170_0 b/notebooklm_chrome_profile/Default/Code Cache/js/eaadbe102d851170_0 new file mode 100644 index 000000000..6a63aeeb6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/eaadbe102d851170_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/eac45ebff730ef38_0 b/notebooklm_chrome_profile/Default/Code Cache/js/eac45ebff730ef38_0 new file mode 100644 index 000000000..c65e8d861 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/eac45ebff730ef38_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/eae2e5903e38cb49_0 b/notebooklm_chrome_profile/Default/Code Cache/js/eae2e5903e38cb49_0 new file mode 100644 index 000000000..fc9b7c467 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/eae2e5903e38cb49_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/eaf9272e821ba90c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/eaf9272e821ba90c_0 index 2dcd1de73..c9838ea4e 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/eaf9272e821ba90c_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/eaf9272e821ba90c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/eb1eeb162d1aaa23_0 b/notebooklm_chrome_profile/Default/Code Cache/js/eb1eeb162d1aaa23_0 new file mode 100644 index 000000000..62510cf2a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/eb1eeb162d1aaa23_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/eb348f5da9ee89f2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/eb348f5da9ee89f2_0 new file mode 100644 index 000000000..34e64d710 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/eb348f5da9ee89f2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/eb799dfa12cec1bd_0 b/notebooklm_chrome_profile/Default/Code Cache/js/eb799dfa12cec1bd_0 new file mode 100644 index 000000000..53d2eed11 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/eb799dfa12cec1bd_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/eb7a0acb200b2f68_0 b/notebooklm_chrome_profile/Default/Code Cache/js/eb7a0acb200b2f68_0 new file mode 100644 index 000000000..086f8629a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/eb7a0acb200b2f68_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/eb7c575a809fe851_0 b/notebooklm_chrome_profile/Default/Code Cache/js/eb7c575a809fe851_0 new file mode 100644 index 000000000..09e7d2f4f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/eb7c575a809fe851_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/eb7db09855d315bd_0 b/notebooklm_chrome_profile/Default/Code Cache/js/eb7db09855d315bd_0 new file mode 100644 index 000000000..2710693b5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/eb7db09855d315bd_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ebc3537b0b33b80e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ebc3537b0b33b80e_0 new file mode 100644 index 000000000..5e0906f98 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ebc3537b0b33b80e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ec1743d0dc289600_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ec1743d0dc289600_0 index 160b0776f..77e53dfd0 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/ec1743d0dc289600_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/ec1743d0dc289600_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ec2d6c54c321d423_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ec2d6c54c321d423_0 new file mode 100644 index 000000000..91a292a19 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ec2d6c54c321d423_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ec4b53591819b11d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ec4b53591819b11d_0 new file mode 100644 index 000000000..b39b9d97b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ec4b53591819b11d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ec535f23d72b7c17_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ec535f23d72b7c17_0 new file mode 100644 index 000000000..7ad185a86 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ec535f23d72b7c17_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ecc3e899476ec9d5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ecc3e899476ec9d5_0 new file mode 100644 index 000000000..a1b0e76e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ecc3e899476ec9d5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ecd083557a20462f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ecd083557a20462f_0 new file mode 100644 index 000000000..2031990ff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ecd083557a20462f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ecdb3dc29f287a73_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ecdb3dc29f287a73_0 new file mode 100644 index 000000000..5b789d50e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ecdb3dc29f287a73_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ecf30b688db9e7b8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ecf30b688db9e7b8_0 new file mode 100644 index 000000000..13b2f5dd3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ecf30b688db9e7b8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ed088942082ed42e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ed088942082ed42e_0 new file mode 100644 index 000000000..7ea23ba86 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ed088942082ed42e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ed1ca1b3e2ded6c7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ed1ca1b3e2ded6c7_0 new file mode 100644 index 000000000..65199289a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ed1ca1b3e2ded6c7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ed418f94e5cbd721_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ed418f94e5cbd721_0 new file mode 100644 index 000000000..64a0150b9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ed418f94e5cbd721_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ed4f568b98380702_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ed4f568b98380702_0 new file mode 100644 index 000000000..61a6c3b6d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ed4f568b98380702_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ed5fc80d3a8e6b69_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ed5fc80d3a8e6b69_0 new file mode 100644 index 000000000..a18d4f2a9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ed5fc80d3a8e6b69_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ed69774797f463a9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ed69774797f463a9_0 new file mode 100644 index 000000000..a13e86de7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ed69774797f463a9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/edd48efabf1aaae9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/edd48efabf1aaae9_0 new file mode 100644 index 000000000..2833f188b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/edd48efabf1aaae9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/edfa732e1a883dbe_0 b/notebooklm_chrome_profile/Default/Code Cache/js/edfa732e1a883dbe_0 new file mode 100644 index 000000000..ea00e5d8a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/edfa732e1a883dbe_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ee0c7e0f98a700c7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ee0c7e0f98a700c7_0 new file mode 100644 index 000000000..503cff8e8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ee0c7e0f98a700c7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ee0ca03eebf60e3c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ee0ca03eebf60e3c_0 index ce30c8616..52bf7400b 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/ee0ca03eebf60e3c_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/ee0ca03eebf60e3c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ee15014ea9b811cb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ee15014ea9b811cb_0 new file mode 100644 index 000000000..9b234568b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ee15014ea9b811cb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ee2346f2a1162535_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ee2346f2a1162535_0 new file mode 100644 index 000000000..d4966039d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ee2346f2a1162535_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ee40e3201f2ffd2f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ee40e3201f2ffd2f_0 new file mode 100644 index 000000000..ebbfd7e65 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ee40e3201f2ffd2f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ee7a5451a20a8cbc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ee7a5451a20a8cbc_0 new file mode 100644 index 000000000..75245c8cb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ee7a5451a20a8cbc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ee86fa084ae4b7f3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ee86fa084ae4b7f3_0 new file mode 100644 index 000000000..4421f3ecb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ee86fa084ae4b7f3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/eea7f0006775d19e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/eea7f0006775d19e_0 new file mode 100644 index 000000000..df1bfb843 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/eea7f0006775d19e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/eed34a7639c06077_0 b/notebooklm_chrome_profile/Default/Code Cache/js/eed34a7639c06077_0 new file mode 100644 index 000000000..c41b428ff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/eed34a7639c06077_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ef2e46a99b499ae5_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ef2e46a99b499ae5_0 new file mode 100644 index 000000000..752b2a444 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ef2e46a99b499ae5_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/efa9d001a44b1b78_0 b/notebooklm_chrome_profile/Default/Code Cache/js/efa9d001a44b1b78_0 new file mode 100644 index 000000000..dbfd6e433 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/efa9d001a44b1b78_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/efc16cbde152de03_0 b/notebooklm_chrome_profile/Default/Code Cache/js/efc16cbde152de03_0 new file mode 100644 index 000000000..752382a02 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/efc16cbde152de03_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/efe2afb59d2f0e1e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/efe2afb59d2f0e1e_0 new file mode 100644 index 000000000..db32ada25 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/efe2afb59d2f0e1e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f0057e9b6734c9d2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f0057e9b6734c9d2_0 new file mode 100644 index 000000000..0329d4f72 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f0057e9b6734c9d2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f014737357780fdc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f014737357780fdc_0 new file mode 100644 index 000000000..54778130b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f014737357780fdc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f04d403f5685f9f6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f04d403f5685f9f6_0 new file mode 100644 index 000000000..6a74c3647 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f04d403f5685f9f6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f0634bfc6f60cf7c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f0634bfc6f60cf7c_0 new file mode 100644 index 000000000..51d93b895 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f0634bfc6f60cf7c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f0841757ca22a284_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f0841757ca22a284_0 new file mode 100644 index 000000000..c02946c74 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f0841757ca22a284_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f0991615bd041bcc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f0991615bd041bcc_0 new file mode 100644 index 000000000..68190f1bf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f0991615bd041bcc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f0a194c5d8a828ff_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f0a194c5d8a828ff_0 new file mode 100644 index 000000000..5ae58891e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f0a194c5d8a828ff_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f0ec554ed5125c0a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f0ec554ed5125c0a_0 deleted file mode 100644 index 4de12a713..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/f0ec554ed5125c0a_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f0f793df424e2442_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f0f793df424e2442_0 new file mode 100644 index 000000000..b038fbfde Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f0f793df424e2442_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f10102ef50d4eaef_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f10102ef50d4eaef_0 deleted file mode 100644 index 62071a966..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/f10102ef50d4eaef_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f12cf5e3b2441ab3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f12cf5e3b2441ab3_0 new file mode 100644 index 000000000..17cf8645f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f12cf5e3b2441ab3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f17028dc78e9a5b4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f17028dc78e9a5b4_0 new file mode 100644 index 000000000..e7793a2cf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f17028dc78e9a5b4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f193e71f7046fcc2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f193e71f7046fcc2_0 new file mode 100644 index 000000000..2e0a80c0b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f193e71f7046fcc2_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f1ae3ee368ca6154_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f1ae3ee368ca6154_0 new file mode 100644 index 000000000..48b0cd1d9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f1ae3ee368ca6154_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f1b592d1c075665c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f1b592d1c075665c_0 new file mode 100644 index 000000000..0211554c0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f1b592d1c075665c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f1e01204fe489273_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f1e01204fe489273_0 new file mode 100644 index 000000000..4148c1a5d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f1e01204fe489273_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f1fa4890a6960325_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f1fa4890a6960325_0 index e4c51916b..ff3d37c40 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/f1fa4890a6960325_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/f1fa4890a6960325_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f204f94f0e22c96b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f204f94f0e22c96b_0 new file mode 100644 index 000000000..e1f1b08fc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f204f94f0e22c96b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f207735d68b9eb87_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f207735d68b9eb87_0 new file mode 100644 index 000000000..894cebfc7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f207735d68b9eb87_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f22c4cd543778766_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f22c4cd543778766_0 new file mode 100644 index 000000000..5212c8793 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f22c4cd543778766_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f256804e75771d92_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f256804e75771d92_0 new file mode 100644 index 000000000..68c769d80 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f256804e75771d92_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f26f0e5f7e31d0d6_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f26f0e5f7e31d0d6_0 new file mode 100644 index 000000000..0799ca4e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f26f0e5f7e31d0d6_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f296563981b947cf_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f296563981b947cf_0 new file mode 100644 index 000000000..02d557d02 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f296563981b947cf_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f2a5f9958371d0ed_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f2a5f9958371d0ed_0 new file mode 100644 index 000000000..e633a8f67 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f2a5f9958371d0ed_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f2c1e87fc620473a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f2c1e87fc620473a_0 new file mode 100644 index 000000000..0f1ea52c0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f2c1e87fc620473a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f315896123113f4a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f315896123113f4a_0 new file mode 100644 index 000000000..20c411fe1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f315896123113f4a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f333b6cf4c659bfd_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f333b6cf4c659bfd_0 new file mode 100644 index 000000000..0784bfb52 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f333b6cf4c659bfd_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f33dad284bea6bdc_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f33dad284bea6bdc_0 new file mode 100644 index 000000000..54bd9b75d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f33dad284bea6bdc_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f369accd95309349_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f369accd95309349_0 new file mode 100644 index 000000000..04448d45c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f369accd95309349_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f3fe14a5a32be114_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f3fe14a5a32be114_0 index aba5deba4..906a72b5c 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/f3fe14a5a32be114_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/f3fe14a5a32be114_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f412ac7f3d5a7f3d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f412ac7f3d5a7f3d_0 new file mode 100644 index 000000000..69c3968a0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f412ac7f3d5a7f3d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f4275f1545c6031c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f4275f1545c6031c_0 new file mode 100644 index 000000000..7deb5a4a5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f4275f1545c6031c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f4455d1cfc2d9218_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f4455d1cfc2d9218_0 new file mode 100644 index 000000000..76e764afc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f4455d1cfc2d9218_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f468bc713c7e8893_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f468bc713c7e8893_0 new file mode 100644 index 000000000..944111b94 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f468bc713c7e8893_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f4894a8a93395b74_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f4894a8a93395b74_0 new file mode 100644 index 000000000..d2092e763 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f4894a8a93395b74_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f48fed481c7cd3b4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f48fed481c7cd3b4_0 new file mode 100644 index 000000000..025dce7c5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f48fed481c7cd3b4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f491d281872abac7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f491d281872abac7_0 new file mode 100644 index 000000000..58340ebfa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f491d281872abac7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f4ad5e1938bd092b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f4ad5e1938bd092b_0 new file mode 100644 index 000000000..6b51a57cf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f4ad5e1938bd092b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f4e83a14c5f57e45_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f4e83a14c5f57e45_0 new file mode 100644 index 000000000..46715bbec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f4e83a14c5f57e45_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f5101f609ad8df47_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f5101f609ad8df47_0 new file mode 100644 index 000000000..2f54d13bd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f5101f609ad8df47_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f519ea8a534b1165_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f519ea8a534b1165_0 new file mode 100644 index 000000000..04c41173e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f519ea8a534b1165_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f5264f86ce5d2148_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f5264f86ce5d2148_0 new file mode 100644 index 000000000..1a4099438 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f5264f86ce5d2148_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f52cd1d4bdf00363_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f52cd1d4bdf00363_0 new file mode 100644 index 000000000..c07b0f449 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f52cd1d4bdf00363_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f53ef7da7b2cfc6b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f53ef7da7b2cfc6b_0 new file mode 100644 index 000000000..0f6a22af1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f53ef7da7b2cfc6b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f55f57b6b610987d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f55f57b6b610987d_0 new file mode 100644 index 000000000..e80c1c07f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f55f57b6b610987d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f5aa15b7802f4313_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f5aa15b7802f4313_0 new file mode 100644 index 000000000..22cbbf987 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f5aa15b7802f4313_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f5e1a5b4e3f5a700_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f5e1a5b4e3f5a700_0 new file mode 100644 index 000000000..9ce3265db Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f5e1a5b4e3f5a700_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f653b1b370b214ab_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f653b1b370b214ab_0 deleted file mode 100644 index 22347b1fb..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/f653b1b370b214ab_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f69f052abfc99c02_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f69f052abfc99c02_0 new file mode 100644 index 000000000..31fd4ae7c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f69f052abfc99c02_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f6fe4e11a08582ea_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f6fe4e11a08582ea_0 new file mode 100644 index 000000000..959cc0825 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f6fe4e11a08582ea_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f752c69a93c4943a_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f752c69a93c4943a_0 new file mode 100644 index 000000000..17cd1bfc8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f752c69a93c4943a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f7593a1f34d17a35_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f7593a1f34d17a35_0 new file mode 100644 index 000000000..3846169bb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f7593a1f34d17a35_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f877d428f0ebcf3c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f877d428f0ebcf3c_0 new file mode 100644 index 000000000..eae80ec31 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f877d428f0ebcf3c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f8859b75bcd2bad4_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f8859b75bcd2bad4_0 new file mode 100644 index 000000000..e189c1c53 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f8859b75bcd2bad4_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f8995d583efad45f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f8995d583efad45f_0 new file mode 100644 index 000000000..2554950eb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f8995d583efad45f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f8fe21aefec8521b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f8fe21aefec8521b_0 new file mode 100644 index 000000000..e9abbeed7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f8fe21aefec8521b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f90df21b9a01e24e_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f90df21b9a01e24e_0 new file mode 100644 index 000000000..0b375a233 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f90df21b9a01e24e_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f93857ba04baf466_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f93857ba04baf466_0 new file mode 100644 index 000000000..d299118a8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f93857ba04baf466_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/f99d85b4663c809d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/f99d85b4663c809d_0 new file mode 100644 index 000000000..980b64a4c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/f99d85b4663c809d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fa229062bcc3530f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fa229062bcc3530f_0 new file mode 100644 index 000000000..94774f192 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fa229062bcc3530f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fa48178ab354fe8b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fa48178ab354fe8b_0 new file mode 100644 index 000000000..e481f9250 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fa48178ab354fe8b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fa4f97c6ad951d37_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fa4f97c6ad951d37_0 new file mode 100644 index 000000000..d84d75594 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fa4f97c6ad951d37_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fa5aba3c08faeb68_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fa5aba3c08faeb68_0 new file mode 100644 index 000000000..f43a50388 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fa5aba3c08faeb68_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fa6487040c2364b1_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fa6487040c2364b1_0 new file mode 100644 index 000000000..5d0b450e3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fa6487040c2364b1_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fa7380df044ec9d2_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fa7380df044ec9d2_0 deleted file mode 100644 index 6fb347e7a..000000000 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/fa7380df044ec9d2_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fad9a2a7c2909087_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fad9a2a7c2909087_0 new file mode 100644 index 000000000..5c12f0fa6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fad9a2a7c2909087_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fb145cc03b04b01c_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fb145cc03b04b01c_0 new file mode 100644 index 000000000..05c75aecf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fb145cc03b04b01c_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fb3e17ffe1b948b0_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fb3e17ffe1b948b0_0 new file mode 100644 index 000000000..1ec0878df Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fb3e17ffe1b948b0_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fba61ca9dc2f1c08_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fba61ca9dc2f1c08_0 new file mode 100644 index 000000000..36d90f120 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fba61ca9dc2f1c08_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fbea9d4db69e72fd_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fbea9d4db69e72fd_0 new file mode 100644 index 000000000..3c3966d43 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fbea9d4db69e72fd_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fc152ad4e7a1d417_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fc152ad4e7a1d417_0 new file mode 100644 index 000000000..76ec07829 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fc152ad4e7a1d417_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fc2c64db970f5d51_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fc2c64db970f5d51_0 new file mode 100644 index 000000000..4ad87e7d3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fc2c64db970f5d51_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fc4cdeadce5c047f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fc4cdeadce5c047f_0 new file mode 100644 index 000000000..64315b8cd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fc4cdeadce5c047f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fc5816e6bfa16b83_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fc5816e6bfa16b83_0 new file mode 100644 index 000000000..f23eea30f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fc5816e6bfa16b83_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fc97007f15feb266_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fc97007f15feb266_0 new file mode 100644 index 000000000..16c294c3c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fc97007f15feb266_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fcab3260e1e18100_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fcab3260e1e18100_0 new file mode 100644 index 000000000..c092b9dd7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fcab3260e1e18100_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fcba3d4cffc0581d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fcba3d4cffc0581d_0 new file mode 100644 index 000000000..020f55c0a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fcba3d4cffc0581d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fd018206ce1ffffb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fd018206ce1ffffb_0 new file mode 100644 index 000000000..45cb3c669 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fd018206ce1ffffb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fd42f499970953ed_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fd42f499970953ed_0 new file mode 100644 index 000000000..a95dcbfe2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fd42f499970953ed_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fd44463ef64e7f91_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fd44463ef64e7f91_0 new file mode 100644 index 000000000..43d54fcb9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fd44463ef64e7f91_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fd5edd919603dcce_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fd5edd919603dcce_0 new file mode 100644 index 000000000..12fbb5d97 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fd5edd919603dcce_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fd86da4819ee0ca8_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fd86da4819ee0ca8_0 new file mode 100644 index 000000000..2b872e241 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fd86da4819ee0ca8_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fdb7add12e433c5f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fdb7add12e433c5f_0 new file mode 100644 index 000000000..ac0c7fb0d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fdb7add12e433c5f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fdc8117cd88264d7_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fdc8117cd88264d7_0 index f9080072a..957b14b48 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/fdc8117cd88264d7_0 and b/notebooklm_chrome_profile/Default/Code Cache/js/fdc8117cd88264d7_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fe168074cf65fecb_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fe168074cf65fecb_0 new file mode 100644 index 000000000..9c551fe75 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fe168074cf65fecb_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fe1d336d22b461d9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fe1d336d22b461d9_0 new file mode 100644 index 000000000..f71756c49 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fe1d336d22b461d9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fe2da07fd2fec14b_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fe2da07fd2fec14b_0 new file mode 100644 index 000000000..76c64d2c9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fe2da07fd2fec14b_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fe5f7cd6b5e87b5f_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fe5f7cd6b5e87b5f_0 new file mode 100644 index 000000000..11cd3a43b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fe5f7cd6b5e87b5f_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fe7218e22fc1c51d_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fe7218e22fc1c51d_0 new file mode 100644 index 000000000..66aba4e66 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fe7218e22fc1c51d_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fe7e1f8a03836f12_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fe7e1f8a03836f12_0 new file mode 100644 index 000000000..87edb24d0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fe7e1f8a03836f12_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fea13518a0a0a158_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fea13518a0a0a158_0 new file mode 100644 index 000000000..c5b3b30bb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fea13518a0a0a158_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/feda0003f834abd9_0 b/notebooklm_chrome_profile/Default/Code Cache/js/feda0003f834abd9_0 new file mode 100644 index 000000000..bbd1bd46c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/feda0003f834abd9_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ffbc25d346855ff3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ffbc25d346855ff3_0 new file mode 100644 index 000000000..7c66e5da0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ffbc25d346855ff3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/ffd9760a6f1f06ae_0 b/notebooklm_chrome_profile/Default/Code Cache/js/ffd9760a6f1f06ae_0 new file mode 100644 index 000000000..2b8d3a248 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/ffd9760a6f1f06ae_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/fffce3b920c879e3_0 b/notebooklm_chrome_profile/Default/Code Cache/js/fffce3b920c879e3_0 new file mode 100644 index 000000000..96449a0cd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/js/fffce3b920c879e3_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/js/index-dir/the-real-index b/notebooklm_chrome_profile/Default/Code Cache/js/index-dir/the-real-index index 38f87fca0..67698e0eb 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/js/index-dir/the-real-index and b/notebooklm_chrome_profile/Default/Code Cache/js/index-dir/the-real-index differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/wasm/601a8767d41d9958_0 b/notebooklm_chrome_profile/Default/Code Cache/wasm/601a8767d41d9958_0 new file mode 100644 index 000000000..fd874987c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/wasm/601a8767d41d9958_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/wasm/ddc65acc1f9b214a_0 b/notebooklm_chrome_profile/Default/Code Cache/wasm/ddc65acc1f9b214a_0 new file mode 100644 index 000000000..31e965e14 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Code Cache/wasm/ddc65acc1f9b214a_0 differ diff --git a/notebooklm_chrome_profile/Default/Code Cache/wasm/index-dir/the-real-index b/notebooklm_chrome_profile/Default/Code Cache/wasm/index-dir/the-real-index index bf3d367e6..1e6e69603 100644 Binary files a/notebooklm_chrome_profile/Default/Code Cache/wasm/index-dir/the-real-index and b/notebooklm_chrome_profile/Default/Code Cache/wasm/index-dir/the-real-index differ diff --git a/notebooklm_chrome_profile/Default/Cookies b/notebooklm_chrome_profile/Default/Cookies index c46a1c619..c25368d3f 100644 Binary files a/notebooklm_chrome_profile/Default/Cookies and b/notebooklm_chrome_profile/Default/Cookies differ diff --git a/notebooklm_chrome_profile/Default/DIPS b/notebooklm_chrome_profile/Default/DIPS index 0b8f35d33..c6242efbc 100644 Binary files a/notebooklm_chrome_profile/Default/DIPS and b/notebooklm_chrome_profile/Default/DIPS differ diff --git a/notebooklm_chrome_profile/Default/DIPS-wal b/notebooklm_chrome_profile/Default/DIPS-wal deleted file mode 100644 index 1884d2c61..000000000 Binary files a/notebooklm_chrome_profile/Default/DIPS-wal and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/DawnGraphiteCache/data_1 b/notebooklm_chrome_profile/Default/DawnGraphiteCache/data_1 index f99b2b435..df6812c24 100644 Binary files a/notebooklm_chrome_profile/Default/DawnGraphiteCache/data_1 and b/notebooklm_chrome_profile/Default/DawnGraphiteCache/data_1 differ diff --git a/notebooklm_chrome_profile/Default/DawnGraphiteCache/index b/notebooklm_chrome_profile/Default/DawnGraphiteCache/index index 18e0520a4..a334a5e00 100644 Binary files a/notebooklm_chrome_profile/Default/DawnGraphiteCache/index and b/notebooklm_chrome_profile/Default/DawnGraphiteCache/index differ diff --git a/notebooklm_chrome_profile/Default/DawnWebGPUCache/data_1 b/notebooklm_chrome_profile/Default/DawnWebGPUCache/data_1 index a13319016..f3ac60a74 100644 Binary files a/notebooklm_chrome_profile/Default/DawnWebGPUCache/data_1 and b/notebooklm_chrome_profile/Default/DawnWebGPUCache/data_1 differ diff --git a/notebooklm_chrome_profile/Default/DawnWebGPUCache/index b/notebooklm_chrome_profile/Default/DawnWebGPUCache/index index 43eb60da4..57d18e890 100644 Binary files a/notebooklm_chrome_profile/Default/DawnWebGPUCache/index and b/notebooklm_chrome_profile/Default/DawnWebGPUCache/index differ diff --git a/notebooklm_chrome_profile/Default/Extension State/LOG b/notebooklm_chrome_profile/Default/Extension State/LOG index f5745d51b..95d0ecc27 100644 --- a/notebooklm_chrome_profile/Default/Extension State/LOG +++ b/notebooklm_chrome_profile/Default/Extension State/LOG @@ -1,3 +1,3 @@ -2026/02/15-23:10:37.627 3ee66b Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Extension State/MANIFEST-000001 -2026/02/15-23:10:37.628 3ee66b Recovering log #3 -2026/02/15-23:10:37.629 3ee66b Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Extension State/000003.log +2026/02/17-14:03:55.336 3ee66b Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Extension State/MANIFEST-000001 +2026/02/17-14:03:55.340 3ee66b Recovering log #3 +2026/02/17-14:03:55.340 3ee66b Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Extension State/000003.log diff --git a/notebooklm_chrome_profile/Default/Extension State/LOG.old b/notebooklm_chrome_profile/Default/Extension State/LOG.old index 412a5628f..f5745d51b 100644 --- a/notebooklm_chrome_profile/Default/Extension State/LOG.old +++ b/notebooklm_chrome_profile/Default/Extension State/LOG.old @@ -1,2 +1,3 @@ -2026/02/15-13:30:38.195 3ee66c Creating DB /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Extension State since it was missing. -2026/02/15-13:30:38.226 3ee66c Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Extension State/MANIFEST-000001 +2026/02/15-23:10:37.627 3ee66b Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Extension State/MANIFEST-000001 +2026/02/15-23:10:37.628 3ee66b Recovering log #3 +2026/02/15-23:10:37.629 3ee66b Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Extension State/000003.log diff --git a/notebooklm_chrome_profile/Default/Favicons b/notebooklm_chrome_profile/Default/Favicons index 8cdac7c27..d6ca03f9b 100644 Binary files a/notebooklm_chrome_profile/Default/Favicons and b/notebooklm_chrome_profile/Default/Favicons differ diff --git a/notebooklm_chrome_profile/Default/GCM Store/Encryption/LOG b/notebooklm_chrome_profile/Default/GCM Store/Encryption/LOG index f66c74a7e..561f5bf8e 100644 --- a/notebooklm_chrome_profile/Default/GCM Store/Encryption/LOG +++ b/notebooklm_chrome_profile/Default/GCM Store/Encryption/LOG @@ -1,3 +1,3 @@ -2026/02/15-23:10:37.762 3ee8a2 Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/GCM Store/Encryption/MANIFEST-000001 -2026/02/15-23:10:37.762 3ee8a2 Recovering log #3 -2026/02/15-23:10:37.768 3ee8a2 Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/GCM Store/Encryption/000003.log +2026/02/17-14:03:55.474 3ee8a2 Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/GCM Store/Encryption/MANIFEST-000001 +2026/02/17-14:03:55.478 3ee8a2 Recovering log #3 +2026/02/17-14:03:55.479 3ee8a2 Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/GCM Store/Encryption/000003.log diff --git a/notebooklm_chrome_profile/Default/GCM Store/Encryption/LOG.old b/notebooklm_chrome_profile/Default/GCM Store/Encryption/LOG.old index 8c908a10d..f66c74a7e 100644 --- a/notebooklm_chrome_profile/Default/GCM Store/Encryption/LOG.old +++ b/notebooklm_chrome_profile/Default/GCM Store/Encryption/LOG.old @@ -1,2 +1,3 @@ -2026/02/15-13:30:46.913 3ee65e Creating DB /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/GCM Store/Encryption since it was missing. -2026/02/15-13:30:47.191 3ee65e Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/GCM Store/Encryption/MANIFEST-000001 +2026/02/15-23:10:37.762 3ee8a2 Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/GCM Store/Encryption/MANIFEST-000001 +2026/02/15-23:10:37.762 3ee8a2 Recovering log #3 +2026/02/15-23:10:37.768 3ee8a2 Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/GCM Store/Encryption/000003.log diff --git a/notebooklm_chrome_profile/Default/GCM Store/LOG b/notebooklm_chrome_profile/Default/GCM Store/LOG index dfb0680c3..dff8a6dd6 100644 --- a/notebooklm_chrome_profile/Default/GCM Store/LOG +++ b/notebooklm_chrome_profile/Default/GCM Store/LOG @@ -1,3 +1,3 @@ -2026/02/15-23:10:37.403 3ee8a2 Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/GCM Store/MANIFEST-000001 -2026/02/15-23:10:37.403 3ee8a2 Recovering log #3 -2026/02/15-23:10:37.404 3ee8a2 Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/GCM Store/000003.log +2026/02/17-14:03:55.374 3ee65e Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/GCM Store/MANIFEST-000001 +2026/02/17-14:03:55.377 3ee65e Recovering log #3 +2026/02/17-14:03:55.396 3ee65e Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/GCM Store/000003.log diff --git a/notebooklm_chrome_profile/Default/GCM Store/LOG.old b/notebooklm_chrome_profile/Default/GCM Store/LOG.old index cb8ddfe69..dfb0680c3 100644 --- a/notebooklm_chrome_profile/Default/GCM Store/LOG.old +++ b/notebooklm_chrome_profile/Default/GCM Store/LOG.old @@ -1,2 +1,3 @@ -2026/02/15-13:30:44.606 3ee65e Creating DB /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/GCM Store since it was missing. -2026/02/15-13:30:45.040 3ee65e Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/GCM Store/MANIFEST-000001 +2026/02/15-23:10:37.403 3ee8a2 Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/GCM Store/MANIFEST-000001 +2026/02/15-23:10:37.403 3ee8a2 Recovering log #3 +2026/02/15-23:10:37.404 3ee8a2 Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/GCM Store/000003.log diff --git a/notebooklm_chrome_profile/Default/GPUCache/data_0 b/notebooklm_chrome_profile/Default/GPUCache/data_0 index d76fb77e9..242988a0c 100644 Binary files a/notebooklm_chrome_profile/Default/GPUCache/data_0 and b/notebooklm_chrome_profile/Default/GPUCache/data_0 differ diff --git a/notebooklm_chrome_profile/Default/GPUCache/data_1 b/notebooklm_chrome_profile/Default/GPUCache/data_1 index 6a514ca18..e57a147db 100644 Binary files a/notebooklm_chrome_profile/Default/GPUCache/data_1 and b/notebooklm_chrome_profile/Default/GPUCache/data_1 differ diff --git a/notebooklm_chrome_profile/Default/GPUCache/data_2 b/notebooklm_chrome_profile/Default/GPUCache/data_2 index c7e2eb9ad..a0ae8c2b3 100644 Binary files a/notebooklm_chrome_profile/Default/GPUCache/data_2 and b/notebooklm_chrome_profile/Default/GPUCache/data_2 differ diff --git a/notebooklm_chrome_profile/Default/GPUCache/data_3 b/notebooklm_chrome_profile/Default/GPUCache/data_3 index 5eec97358..1470b73a1 100644 Binary files a/notebooklm_chrome_profile/Default/GPUCache/data_3 and b/notebooklm_chrome_profile/Default/GPUCache/data_3 differ diff --git a/notebooklm_chrome_profile/Default/GPUCache/index b/notebooklm_chrome_profile/Default/GPUCache/index index fefa77912..1351b7213 100644 Binary files a/notebooklm_chrome_profile/Default/GPUCache/index and b/notebooklm_chrome_profile/Default/GPUCache/index differ diff --git a/notebooklm_chrome_profile/Default/History b/notebooklm_chrome_profile/Default/History index 0f071ed58..2f319b0e1 100644 Binary files a/notebooklm_chrome_profile/Default/History and b/notebooklm_chrome_profile/Default/History differ diff --git a/notebooklm_chrome_profile/Default/History-journal b/notebooklm_chrome_profile/Default/History-journal index e69de29bb..23132c426 100644 Binary files a/notebooklm_chrome_profile/Default/History-journal and b/notebooklm_chrome_profile/Default/History-journal differ diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/000005.ldb b/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/000005.ldb new file mode 100644 index 000000000..9dbdab4d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/000005.ldb differ diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/LOG b/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/LOG index 7372c1135..17b557b37 100644 --- a/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/LOG +++ b/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/LOG @@ -1,3 +1,3 @@ -2026/02/16-00:16:05.417 3ee65d Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/MANIFEST-000001 -2026/02/16-00:16:05.417 3ee65d Recovering log #3 -2026/02/16-00:16:05.418 3ee65d Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/000003.log +2026/02/16-01:26:06.683 3ee65f Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/MANIFEST-000001 +2026/02/16-01:26:06.683 3ee65f Recovering log #4 +2026/02/16-01:26:06.683 3ee65f Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/000004.log diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/LOG.old b/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/LOG.old index a0b566999..db660f956 100644 --- a/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/LOG.old +++ b/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/LOG.old @@ -1,3 +1,3 @@ -2026/02/16-00:12:05.391 3ee65d Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/MANIFEST-000001 -2026/02/16-00:12:05.391 3ee65d Recovering log #3 -2026/02/16-00:12:05.392 3ee65d Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/000003.log +2026/02/16-01:21:39.971 3ee65f Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/MANIFEST-000001 +2026/02/16-01:21:39.971 3ee65f Recovering log #4 +2026/02/16-01:21:39.971 3ee65f Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/000004.log diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/MANIFEST-000001 b/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/MANIFEST-000001 index 3ccb46a2f..0c0efb17f 100644 Binary files a/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/MANIFEST-000001 and b/notebooklm_chrome_profile/Default/IndexedDB/https_cloud.google.com_0.indexeddb.leveldb/MANIFEST-000001 differ diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_knowledge.workspace.google.com_0.indexeddb.leveldb/LOG b/notebooklm_chrome_profile/Default/IndexedDB/https_knowledge.workspace.google.com_0.indexeddb.leveldb/LOG index 1544687e2..49aa4984a 100644 --- a/notebooklm_chrome_profile/Default/IndexedDB/https_knowledge.workspace.google.com_0.indexeddb.leveldb/LOG +++ b/notebooklm_chrome_profile/Default/IndexedDB/https_knowledge.workspace.google.com_0.indexeddb.leveldb/LOG @@ -1,3 +1,3 @@ -2026/02/15-23:34:49.718 3ee66a Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_knowledge.workspace.google.com_0.indexeddb.leveldb/MANIFEST-000001 -2026/02/15-23:34:49.718 3ee66a Recovering log #3 -2026/02/15-23:34:49.719 3ee66a Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_knowledge.workspace.google.com_0.indexeddb.leveldb/000003.log +2026/02/16-00:41:30.378 3ee65f Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_knowledge.workspace.google.com_0.indexeddb.leveldb/MANIFEST-000001 +2026/02/16-00:41:30.379 3ee65f Recovering log #3 +2026/02/16-00:41:30.379 3ee65f Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_knowledge.workspace.google.com_0.indexeddb.leveldb/000003.log diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_knowledge.workspace.google.com_0.indexeddb.leveldb/LOG.old b/notebooklm_chrome_profile/Default/IndexedDB/https_knowledge.workspace.google.com_0.indexeddb.leveldb/LOG.old index fcd1a545e..1544687e2 100644 --- a/notebooklm_chrome_profile/Default/IndexedDB/https_knowledge.workspace.google.com_0.indexeddb.leveldb/LOG.old +++ b/notebooklm_chrome_profile/Default/IndexedDB/https_knowledge.workspace.google.com_0.indexeddb.leveldb/LOG.old @@ -1,2 +1,3 @@ -2026/02/15-23:33:53.117 3ee65f Creating DB /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_knowledge.workspace.google.com_0.indexeddb.leveldb since it was missing. -2026/02/15-23:33:53.120 3ee65f Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_knowledge.workspace.google.com_0.indexeddb.leveldb/MANIFEST-000001 +2026/02/15-23:34:49.718 3ee66a Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_knowledge.workspace.google.com_0.indexeddb.leveldb/MANIFEST-000001 +2026/02/15-23:34:49.718 3ee66a Recovering log #3 +2026/02/15-23:34:49.719 3ee66a Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_knowledge.workspace.google.com_0.indexeddb.leveldb/000003.log diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_www.goanywhere.com_0.indexeddb.leveldb/000005.ldb b/notebooklm_chrome_profile/Default/IndexedDB/https_www.goanywhere.com_0.indexeddb.leveldb/000005.ldb new file mode 100644 index 000000000..cc280c0c5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/IndexedDB/https_www.goanywhere.com_0.indexeddb.leveldb/000005.ldb differ diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_www.goanywhere.com_0.indexeddb.leveldb/CURRENT b/notebooklm_chrome_profile/Default/IndexedDB/https_www.goanywhere.com_0.indexeddb.leveldb/CURRENT new file mode 100644 index 000000000..7ed683d17 --- /dev/null +++ b/notebooklm_chrome_profile/Default/IndexedDB/https_www.goanywhere.com_0.indexeddb.leveldb/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_www.goanywhere.com_0.indexeddb.leveldb/LOCK b/notebooklm_chrome_profile/Default/IndexedDB/https_www.goanywhere.com_0.indexeddb.leveldb/LOCK new file mode 100644 index 000000000..e69de29bb diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_www.goanywhere.com_0.indexeddb.leveldb/LOG b/notebooklm_chrome_profile/Default/IndexedDB/https_www.goanywhere.com_0.indexeddb.leveldb/LOG new file mode 100644 index 000000000..7f8ffb73a --- /dev/null +++ b/notebooklm_chrome_profile/Default/IndexedDB/https_www.goanywhere.com_0.indexeddb.leveldb/LOG @@ -0,0 +1,6 @@ +2026/02/16-02:41:21.282 3ee65f Creating DB /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_www.goanywhere.com_0.indexeddb.leveldb since it was missing. +2026/02/16-02:41:21.285 3ee65f Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_www.goanywhere.com_0.indexeddb.leveldb/MANIFEST-000001 +2026/02/16-02:44:20.099 3ee65f Level-0 table #5: started +2026/02/16-02:44:20.100 3ee65f Level-0 table #5: 1308 bytes OK +2026/02/16-02:44:20.102 3ee65f Delete type=0 #3 +2026/02/16-02:44:20.102 3ee65f Manual compaction at level-0 from (begin) .. (end); will stop at (end) diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_www.goanywhere.com_0.indexeddb.leveldb/MANIFEST-000001 b/notebooklm_chrome_profile/Default/IndexedDB/https_www.goanywhere.com_0.indexeddb.leveldb/MANIFEST-000001 new file mode 100644 index 000000000..7e935f67d Binary files /dev/null and b/notebooklm_chrome_profile/Default/IndexedDB/https_www.goanywhere.com_0.indexeddb.leveldb/MANIFEST-000001 differ diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_www.linkedin.com_0.indexeddb.leveldb/CURRENT b/notebooklm_chrome_profile/Default/IndexedDB/https_www.linkedin.com_0.indexeddb.leveldb/CURRENT new file mode 100644 index 000000000..7ed683d17 --- /dev/null +++ b/notebooklm_chrome_profile/Default/IndexedDB/https_www.linkedin.com_0.indexeddb.leveldb/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_www.linkedin.com_0.indexeddb.leveldb/LOCK b/notebooklm_chrome_profile/Default/IndexedDB/https_www.linkedin.com_0.indexeddb.leveldb/LOCK new file mode 100644 index 000000000..e69de29bb diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_www.linkedin.com_0.indexeddb.leveldb/LOG b/notebooklm_chrome_profile/Default/IndexedDB/https_www.linkedin.com_0.indexeddb.leveldb/LOG new file mode 100644 index 000000000..eb16e2ea4 --- /dev/null +++ b/notebooklm_chrome_profile/Default/IndexedDB/https_www.linkedin.com_0.indexeddb.leveldb/LOG @@ -0,0 +1,3 @@ +2026/02/16-01:47:47.632 3ee65d Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_www.linkedin.com_0.indexeddb.leveldb/MANIFEST-000001 +2026/02/16-01:47:47.632 3ee65d Recovering log #3 +2026/02/16-01:47:47.632 3ee65d Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_www.linkedin.com_0.indexeddb.leveldb/000003.log diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_www.linkedin.com_0.indexeddb.leveldb/LOG.old b/notebooklm_chrome_profile/Default/IndexedDB/https_www.linkedin.com_0.indexeddb.leveldb/LOG.old new file mode 100644 index 000000000..bc8d9e6e5 --- /dev/null +++ b/notebooklm_chrome_profile/Default/IndexedDB/https_www.linkedin.com_0.indexeddb.leveldb/LOG.old @@ -0,0 +1,3 @@ +2026/02/16-01:47:05.473 3ee65d Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_www.linkedin.com_0.indexeddb.leveldb/MANIFEST-000001 +2026/02/16-01:47:05.474 3ee65d Recovering log #3 +2026/02/16-01:47:05.474 3ee65d Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_www.linkedin.com_0.indexeddb.leveldb/000003.log diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_www.linkedin.com_0.indexeddb.leveldb/MANIFEST-000001 b/notebooklm_chrome_profile/Default/IndexedDB/https_www.linkedin.com_0.indexeddb.leveldb/MANIFEST-000001 new file mode 100644 index 000000000..3ccb46a2f Binary files /dev/null and b/notebooklm_chrome_profile/Default/IndexedDB/https_www.linkedin.com_0.indexeddb.leveldb/MANIFEST-000001 differ diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_www.youtube.com_0.indexeddb.leveldb/CURRENT b/notebooklm_chrome_profile/Default/IndexedDB/https_www.youtube.com_0.indexeddb.leveldb/CURRENT new file mode 100644 index 000000000..7ed683d17 --- /dev/null +++ b/notebooklm_chrome_profile/Default/IndexedDB/https_www.youtube.com_0.indexeddb.leveldb/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_www.youtube.com_0.indexeddb.leveldb/LOCK b/notebooklm_chrome_profile/Default/IndexedDB/https_www.youtube.com_0.indexeddb.leveldb/LOCK new file mode 100644 index 000000000..e69de29bb diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_www.youtube.com_0.indexeddb.leveldb/LOG b/notebooklm_chrome_profile/Default/IndexedDB/https_www.youtube.com_0.indexeddb.leveldb/LOG new file mode 100644 index 000000000..12af01de7 --- /dev/null +++ b/notebooklm_chrome_profile/Default/IndexedDB/https_www.youtube.com_0.indexeddb.leveldb/LOG @@ -0,0 +1,2 @@ +2026/02/16-00:43:59.740 3ee66a Creating DB /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_www.youtube.com_0.indexeddb.leveldb since it was missing. +2026/02/16-00:43:59.743 3ee66a Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/IndexedDB/https_www.youtube.com_0.indexeddb.leveldb/MANIFEST-000001 diff --git a/notebooklm_chrome_profile/Default/IndexedDB/https_www.youtube.com_0.indexeddb.leveldb/MANIFEST-000001 b/notebooklm_chrome_profile/Default/IndexedDB/https_www.youtube.com_0.indexeddb.leveldb/MANIFEST-000001 new file mode 100644 index 000000000..3ccb46a2f Binary files /dev/null and b/notebooklm_chrome_profile/Default/IndexedDB/https_www.youtube.com_0.indexeddb.leveldb/MANIFEST-000001 differ diff --git a/notebooklm_chrome_profile/Default/Local Storage/leveldb/000007.ldb b/notebooklm_chrome_profile/Default/Local Storage/leveldb/000007.ldb new file mode 100644 index 000000000..c603f4280 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Local Storage/leveldb/000007.ldb differ diff --git a/notebooklm_chrome_profile/Default/Local Storage/leveldb/000009.ldb b/notebooklm_chrome_profile/Default/Local Storage/leveldb/000009.ldb new file mode 100644 index 000000000..774b3cd5f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Local Storage/leveldb/000009.ldb differ diff --git a/notebooklm_chrome_profile/Default/Local Storage/leveldb/000011.ldb b/notebooklm_chrome_profile/Default/Local Storage/leveldb/000011.ldb new file mode 100644 index 000000000..95abdea6e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Local Storage/leveldb/000011.ldb differ diff --git a/notebooklm_chrome_profile/Default/Local Storage/leveldb/LOG b/notebooklm_chrome_profile/Default/Local Storage/leveldb/LOG index 7a721667f..a456025eb 100644 --- a/notebooklm_chrome_profile/Default/Local Storage/leveldb/LOG +++ b/notebooklm_chrome_profile/Default/Local Storage/leveldb/LOG @@ -1,6 +1,3 @@ -2026/02/15-23:10:37.255 3ee70f Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Local Storage/leveldb/MANIFEST-000001 -2026/02/15-23:10:37.262 3ee70f Recovering log #3 -2026/02/15-23:10:37.262 3ee70f Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Local Storage/leveldb/000003.log -2026/02/15-23:45:05.608 3ee713 Level-0 table #5: started -2026/02/15-23:45:05.612 3ee713 Level-0 table #5: 27876 bytes OK -2026/02/15-23:45:05.613 3ee713 Delete type=0 #3 +2026/02/17-14:03:55.079 3ee70f Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Local Storage/leveldb/MANIFEST-000001 +2026/02/17-14:03:55.085 3ee70f Recovering log #10 +2026/02/17-14:03:55.087 3ee70f Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Local Storage/leveldb/000010.log diff --git a/notebooklm_chrome_profile/Default/Local Storage/leveldb/LOG.old b/notebooklm_chrome_profile/Default/Local Storage/leveldb/LOG.old index f32d83a0f..83b4119d7 100644 --- a/notebooklm_chrome_profile/Default/Local Storage/leveldb/LOG.old +++ b/notebooklm_chrome_profile/Default/Local Storage/leveldb/LOG.old @@ -1,2 +1,15 @@ -2026/02/15-13:30:37.699 3ee70f Creating DB /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Local Storage/leveldb since it was missing. -2026/02/15-13:30:37.709 3ee70f Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Local Storage/leveldb/MANIFEST-000001 +2026/02/15-23:10:37.255 3ee70f Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Local Storage/leveldb/MANIFEST-000001 +2026/02/15-23:10:37.262 3ee70f Recovering log #3 +2026/02/15-23:10:37.262 3ee70f Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Local Storage/leveldb/000003.log +2026/02/15-23:45:05.608 3ee713 Level-0 table #5: started +2026/02/15-23:45:05.612 3ee713 Level-0 table #5: 27876 bytes OK +2026/02/15-23:45:05.613 3ee713 Delete type=0 #3 +2026/02/16-00:44:02.576 3ee713 Level-0 table #7: started +2026/02/16-00:44:02.580 3ee713 Level-0 table #7: 24592 bytes OK +2026/02/16-00:44:02.582 3ee713 Delete type=0 #4 +2026/02/16-01:45:12.502 3ee713 Level-0 table #9: started +2026/02/16-01:45:12.504 3ee713 Level-0 table #9: 20614 bytes OK +2026/02/16-01:45:12.505 3ee713 Delete type=0 #6 +2026/02/16-02:50:30.888 3ee713 Level-0 table #11: started +2026/02/16-02:50:30.893 3ee713 Level-0 table #11: 28531 bytes OK +2026/02/16-02:50:30.897 3ee713 Delete type=0 #8 diff --git a/notebooklm_chrome_profile/Default/Local Storage/leveldb/MANIFEST-000001 b/notebooklm_chrome_profile/Default/Local Storage/leveldb/MANIFEST-000001 index 136917b43..62d700c7f 100644 Binary files a/notebooklm_chrome_profile/Default/Local Storage/leveldb/MANIFEST-000001 and b/notebooklm_chrome_profile/Default/Local Storage/leveldb/MANIFEST-000001 differ diff --git a/notebooklm_chrome_profile/Default/Login Data For Account b/notebooklm_chrome_profile/Default/Login Data For Account index f2ee70639..e05837d2d 100644 Binary files a/notebooklm_chrome_profile/Default/Login Data For Account and b/notebooklm_chrome_profile/Default/Login Data For Account differ diff --git a/notebooklm_chrome_profile/Default/MediaDeviceSalts b/notebooklm_chrome_profile/Default/MediaDeviceSalts index 022c8a947..4e597241f 100644 Binary files a/notebooklm_chrome_profile/Default/MediaDeviceSalts and b/notebooklm_chrome_profile/Default/MediaDeviceSalts differ diff --git a/notebooklm_chrome_profile/Default/Network Action Predictor b/notebooklm_chrome_profile/Default/Network Action Predictor index 362e991a8..ff58e7733 100644 Binary files a/notebooklm_chrome_profile/Default/Network Action Predictor and b/notebooklm_chrome_profile/Default/Network Action Predictor differ diff --git a/notebooklm_chrome_profile/Default/Network Persistent State b/notebooklm_chrome_profile/Default/Network Persistent State index 7fdf3b39f..77035b4eb 100644 --- a/notebooklm_chrome_profile/Default/Network Persistent State +++ b/notebooklm_chrome_profile/Default/Network Persistent State @@ -1 +1 @@ -{"net":{"http_server_properties":{"broken_alternative_services":[{"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"broken_count":14,"broken_until":"1771375719","host":"glama.ai","port":443,"protocol_str":"quic"}],"servers":[{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418249438338338","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://clients2.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418249481467800","port":443,"protocol_str":"quic"}],"anonymization":["NAAAAC0AAABodHRwczovL2FjY291bnRjYXBhYmlsaXRpZXMtcGEuZ29vZ2xlYXBpcy5jb20AAAA=",false,0],"server":"https://accountcapabilities-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418249481672296","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL3lvdXR1YmUuY29tAA==",false,0],"server":"https://accounts.youtube.com","supports_spdy":true},{"anonymization":["JAAAAB0AAABodHRwczovL2dvb2dsZXVzZXJjb250ZW50LmNvbQAAAA==",false,0],"server":"https://clients2.googleusercontent.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418249489945530","port":443,"protocol_str":"quic"}],"anonymization":["LAAAACgAAABodHRwczovL3NlY3VyaXR5ZG9tYWluLXBhLmdvb2dsZWFwaXMuY29t",false,0],"server":"https://securitydomain-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418249461790520","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":81639},"server":"https://accounts.youtube.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418249471063909","port":443,"protocol_str":"quic"}],"anonymization":["MAAAACsAAABodHRwczovL29wdGltaXphdGlvbmd1aWRlLXBhLmdvb2dsZWFwaXMuY29tAA==",false,0],"network_stats":{"srtt":36634},"server":"https://optimizationguide-pa.googleapis.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://mail.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418250037028922","port":443,"protocol_str":"quic"}],"anonymization":["LAAAACUAAABodHRwczovL2Nocm9tZXdlYnN0b3JlLmdvb2dsZWFwaXMuY29tAAAA",false,0],"server":"https://chromewebstore.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418253992229380","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":27348},"server":"https://history.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418284237779491","port":443,"protocol_str":"quic"}],"anonymization":["JAAAAB0AAABodHRwczovL3VwZGF0ZS5nb29nbGVhcGlzLmNvbQAAAA==",false,0],"server":"https://update.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418284238104210","port":443,"protocol_str":"quic"}],"anonymization":["LAAAACgAAABodHRwczovL2tpZHNtYW5hZ2VtZW50LXBhLmdvb2dsZWFwaXMuY29t",false,0],"server":"https://kidsmanagement-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418284247332526","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL3d3dy5nb29nbGVhcGlzLmNvbQAA",false,0],"network_stats":{"srtt":17621},"server":"https://www.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418284462102034","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://csp.withgoogle.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418284964020369","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":16565},"server":"https://android.clients.google.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":15270},"server":"https://lh7-rt.googleusercontent.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285480559857","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":35990},"server":"https://services.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285638588403","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovLzFlZHRlY2gub3JnAA==",false,0],"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285638616529","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovLzFlZHRlY2gub3JnAA==",false,0],"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285638733620","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovLzFlZHRlY2gub3JnAA==",false,0],"server":"https://fonts.gstatic.com","supports_spdy":true},{"anonymization":["GAAAABMAAABodHRwczovLzFlZHRlY2gub3JnAA==",false,0],"server":"https://cdn.informz.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285638774587","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovLzFlZHRlY2gub3JnAA==",false,0],"server":"https://www.google-analytics.com","supports_spdy":true},{"anonymization":["GAAAABMAAABodHRwczovLzFlZHRlY2gub3JnAA==",false,0],"server":"https://www.1edtech.org","supports_spdy":true},{"anonymization":["GAAAABMAAABodHRwczovLzFlZHRlY2gub3JnAA==",false,0],"server":"https://1edtech.informz.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285658170660","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2FwcHNoZWV0LmNvbQ==",false,0],"server":"https://about.appsheet.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285658433243","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2FwcHNoZWV0LmNvbQ==",false,0],"server":"https://kstatic.googleusercontent.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285658497580","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2FwcHNoZWV0LmNvbQ==",false,0],"server":"https://fonts.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285658390393","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2FwcHNoZWV0LmNvbQ==",false,0],"network_stats":{"srtt":16702},"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285658714782","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2FwcHNoZWV0LmNvbQ==",false,0],"network_stats":{"srtt":15814},"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285658921494","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2FwcHNoZWV0LmNvbQ==",false,0],"network_stats":{"srtt":32710},"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285664395486","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2FwcHNoZWV0LmNvbQ==",false,0],"network_stats":{"srtt":19501},"server":"https://www.google-analytics.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285690270074","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":28157},"server":"https://developerprofiles-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285692004398","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":34131},"server":"https://knowledge.workspace.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285434935927","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":15376},"server":"https://ssl.google-analytics.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285804159657","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://developers.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285792207595","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":22982},"server":"https://workspace.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285804868358","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":27308},"server":"https://stats.g.doubleclick.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285810610676","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":17139},"server":"https://feedback-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285868701086","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":23736},"server":"https://storage.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418286192901166","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL2dzdGF0aWMuY29tAA==",false,0],"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13415780602629066","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL2Rpc2NvcmQuY29tAA==",false,0],"server":"https://status.discord.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418286183775171","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":33298},"server":"https://support.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418286183817922","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":28686},"server":"https://realtimesupport.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418286769407103","port":443,"protocol_str":"quic"}],"anonymization":["LAAAACcAAABodHRwczovL2NvbnRlbnQtYXV0b2ZpbGwuZ29vZ2xlYXBpcy5jb20A",false,0],"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418286989743075","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL2Rpc2NvcmQuY29tAA==",false,0],"network_stats":{"srtt":16016},"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287026594781","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL2Rpc2NvcmQuY29tAA==",false,0],"network_stats":{"srtt":17820},"server":"https://a.nel.cloudflare.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13415781552269125","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL2Rpc2NvcmQuY29tAA==",false,0],"network_stats":{"srtt":9165},"server":"https://cdn.discordapp.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13415781552291576","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL2Rpc2NvcmQuY29tAA==",false,0],"network_stats":{"srtt":6632},"server":"https://images-ext-1.discordapp.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13415781556181096","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL2Rpc2NvcmQuY29tAA==",false,0],"network_stats":{"srtt":7170},"server":"https://media.discordapp.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287343003179","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"server":"https://ogs.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287294901782","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":21405},"server":"https://www.google-analytics.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287345789759","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"server":"https://fonts.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287345930372","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"server":"https://static.doubleclick.net","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"server":"https://assets.clickfunnels.com","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"server":"https://use.fontawesome.com","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"server":"https://static.cloudflareinsights.com","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"server":"https://app.clickfunnels.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287346617370","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287346641717","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"server":"https://cdn.courses.apisystem.tech","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13415781746888651","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"server":"https://www.facebook.com","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"server":"https://d2saw6je89goi1.cloudfront.net","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"server":"https://go.askjeremy.ai","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287339878950","port":443,"protocol_str":"quic"}],"anonymization":["JAAAAB0AAABodHRwczovL2dvb2dsZXVzZXJjb250ZW50LmNvbQAAAA==",false,0],"network_stats":{"srtt":15877},"server":"https://lh3.googleusercontent.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287339963106","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL2dzdGF0aWMuY29tAA==",false,0],"network_stats":{"srtt":22607},"server":"https://encrypted-tbn0.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287345015596","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":19129},"server":"https://clients4.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287345091885","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":18212},"server":"https://www.googleadservices.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287345559198","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":16268},"server":"https://www.youtube.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287345969729","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":24520},"server":"https://googleads.g.doubleclick.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287346076073","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":98809},"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287346142175","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":30761},"server":"https://www.youtube.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287346299901","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"network_stats":{"srtt":19204},"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287346341971","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"network_stats":{"srtt":21434},"server":"https://www.rj0wz5ti.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287346361623","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"network_stats":{"srtt":19066},"server":"https://fonts.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13415781746584756","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"network_stats":{"srtt":26454},"server":"https://connect.facebook.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287411481644","port":443,"protocol_str":"quic"}],"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"server":"https://googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13415781813694950","port":443,"protocol_str":"quic"}],"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"network_stats":{"srtt":18600},"server":"https://connect.facebook.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287414415523","port":443,"protocol_str":"quic"}],"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"server":"https://www.redditstatic.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"server":"https://pixel-config.reddit.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"server":"https://alb.reddit.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13415781865075519","port":443,"protocol_str":"quic"}],"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"network_stats":{"srtt":6075},"server":"https://w3-reporting-nel.reddit.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287722280891","port":443,"protocol_str":"quic"}],"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"network_stats":{"srtt":24008},"server":"https://www.google-analytics.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"server":"https://static.glama.ai","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287780836380","port":443,"protocol_str":"quic"}],"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"server":"https://glama.ai","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13415782179829458","port":443,"protocol_str":"quic"}],"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"network_stats":{"srtt":18738},"server":"https://www.facebook.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13415781748204482","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL2Rpc2NvcmQuY29tAA==",false,0],"network_stats":{"srtt":8205},"server":"https://discord.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13415782277385923","port":443,"protocol_str":"quic"}],"anonymization":["FAAAAA8AAABodHRwczovL2RvaS5vcmcA",false,0],"network_stats":{"srtt":9638},"server":"https://doi.org","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287925521092","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":27596},"server":"https://cloud.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13415781163582728","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL3plbm9kby5vcmcAAA==",false,0],"network_stats":{"srtt":5630},"server":"https://cdnjs.cloudflare.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287952385192","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL3plbm9kby5vcmcAAA==",false,0],"network_stats":{"srtt":17471},"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dpdGh1Yi5jb20AAA==",false,0],"server":"https://camo.githubusercontent.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dpdGh1Yi5jb20AAA==",false,0],"server":"https://avatars.githubusercontent.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dpdGh1Yi5jb20AAA==",false,0],"server":"https://github.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dpdGh1Yi5jb20AAA==",false,0],"server":"https://github.githubassets.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dpdGh1Yi5jb20AAA==",false,0],"server":"https://api.github.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dpdGh1Yi5jb20AAA==",false,0],"server":"https://collector.github.com","supports_spdy":true},{"anonymization":["KAAAACEAAABodHRwczovL2dlbmVyaWMtbWFwcGluZy10b29scy5vcmcAAAA=",false,0],"server":"https://www.generic-mapping-tools.org","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287985511983","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":17436},"server":"https://one.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287991161141","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dpdGh1Yi5jb20AAA==",false,0],"network_stats":{"srtt":47602},"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288024088704","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://encrypted-tbn2.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288024121991","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://encrypted-tbn3.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287954014992","port":443,"protocol_str":"quic"}],"anonymization":["KAAAACEAAABodHRwczovL2dlbmVyaWMtbWFwcGluZy10b29scy5vcmcAAAA=",false,0],"network_stats":{"srtt":65612},"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287954074222","port":443,"protocol_str":"quic"}],"anonymization":["KAAAACEAAABodHRwczovL2dlbmVyaWMtbWFwcGluZy10b29scy5vcmcAAAA=",false,0],"network_stats":{"srtt":50746},"server":"https://fonts.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287954084100","port":443,"protocol_str":"quic"}],"anonymization":["KAAAACEAAABodHRwczovL2dlbmVyaWMtbWFwcGluZy10b29scy5vcmcAAAA=",false,0],"network_stats":{"srtt":78402},"server":"https://www.google-analytics.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13415782410332127","port":443,"protocol_str":"quic"}],"anonymization":["KAAAACEAAABodHRwczovL2dlbmVyaWMtbWFwcGluZy10b29scy5vcmcAAAA=",false,0],"network_stats":{"srtt":19396},"server":"https://img.shields.io","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288024107314","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":16116},"server":"https://encrypted-tbn1.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288024212568","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":25570},"server":"https://encrypted-tbn0.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288059777854","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2RlYmlhbi5vcmcAAA==",false,0],"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2RlYmlhbi5vcmcAAA==",false,0],"server":"https://www.debian.org","supports_spdy":true},{"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"server":"https://lh5.googleusercontent.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287338582660","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"server":"https://lh3.googleusercontent.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287343185067","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"network_stats":{"srtt":25495},"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287338824437","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"server":"https://apis.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288115564823","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"network_stats":{"srtt":20743},"server":"https://ogads-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288116564882","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"network_stats":{"srtt":20888},"server":"https://play.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285803737321","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":18888},"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288117574892","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":16377},"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285792608767","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":24620},"server":"https://apis.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288117813112","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":26118},"server":"https://accounts.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288117816242","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":19202},"server":"https://ogads-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288117835339","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":98005},"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288117993877","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":16713},"server":"https://signaler-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285362553187","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":19758},"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288120153216","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":21405},"server":"https://notebooklm.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285594821406","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":17569},"server":"https://lh3.googleusercontent.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418286177287797","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":15581},"server":"https://ssl.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287345191920","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":18988},"server":"https://fonts.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288023994913","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":21930},"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288117577972","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":42537},"server":"https://www.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288121775783","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":64956},"server":"https://ogs.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288122679313","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":20142},"server":"https://analytics.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288129348522","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":58087},"server":"https://play.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288106012051","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":24228},"server":"https://waa-pa.clients6.google.com","supports_spdy":true}],"supports_quic":{"address":"2605:a601:afa6:a900:212b:4f0a:cf2e:ec79","used_quic":true},"version":5},"network_qualities":{"CAASABiAgICA+P////8B":"4G"}}} \ No newline at end of file +{"net":{"http_server_properties":{"broken_alternative_services":[{"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"broken_count":14,"host":"glama.ai","port":443,"protocol_str":"quic"},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"broken_count":1,"host":"x.bidswitch.net","port":443,"protocol_str":"quic"}],"servers":[{"anonymization":["JAAAAB0AAABodHRwczovL2dvb2dsZXVzZXJjb250ZW50LmNvbQAAAA==",false,0],"server":"https://clients2.googleusercontent.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418249489945530","port":443,"protocol_str":"quic"}],"anonymization":["LAAAACgAAABodHRwczovL3NlY3VyaXR5ZG9tYWluLXBhLmdvb2dsZWFwaXMuY29t",false,0],"server":"https://securitydomain-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418249461790520","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":81639},"server":"https://accounts.youtube.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418249471063909","port":443,"protocol_str":"quic"}],"anonymization":["MAAAACsAAABodHRwczovL29wdGltaXphdGlvbmd1aWRlLXBhLmdvb2dsZWFwaXMuY29tAA==",false,0],"network_stats":{"srtt":36634},"server":"https://optimizationguide-pa.googleapis.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://mail.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418253992229380","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":27348},"server":"https://history.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285658170660","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2FwcHNoZWV0LmNvbQ==",false,0],"server":"https://about.appsheet.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285658433243","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2FwcHNoZWV0LmNvbQ==",false,0],"server":"https://kstatic.googleusercontent.com","supports_spdy":true},{"anonymization":["GAAAABMAAABodHRwczovL2Rpc2NvcmQuY29tAA==",false,0],"server":"https://status.discord.com","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"server":"https://assets.clickfunnels.com","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"server":"https://use.fontawesome.com","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"server":"https://static.cloudflareinsights.com","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"server":"https://app.clickfunnels.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287346617370","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287346641717","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"server":"https://cdn.courses.apisystem.tech","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"server":"https://www.facebook.com","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"server":"https://d2saw6je89goi1.cloudfront.net","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"server":"https://go.askjeremy.ai","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287339878950","port":443,"protocol_str":"quic"}],"anonymization":["JAAAAB0AAABodHRwczovL2dvb2dsZXVzZXJjb250ZW50LmNvbQAAAA==",false,0],"network_stats":{"srtt":15877},"server":"https://lh3.googleusercontent.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287346299901","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"network_stats":{"srtt":19204},"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287346341971","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"network_stats":{"srtt":21434},"server":"https://www.rj0wz5ti.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287346361623","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"network_stats":{"srtt":19066},"server":"https://fonts.gstatic.com","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2Fza2plcmVteS5haQ==",false,0],"network_stats":{"srtt":26454},"server":"https://connect.facebook.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287411481644","port":443,"protocol_str":"quic"}],"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"server":"https://googletagmanager.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"network_stats":{"srtt":18600},"server":"https://connect.facebook.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287414415523","port":443,"protocol_str":"quic"}],"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"server":"https://www.redditstatic.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"server":"https://pixel-config.reddit.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"server":"https://alb.reddit.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"network_stats":{"srtt":6075},"server":"https://w3-reporting-nel.reddit.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"server":"https://static.glama.ai","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"server":"https://glama.ai","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"network_stats":{"srtt":18738},"server":"https://www.facebook.com","supports_spdy":true},{"anonymization":["FAAAAA8AAABodHRwczovL2RvaS5vcmcA",false,0],"network_stats":{"srtt":9638},"server":"https://doi.org","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288024088704","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://encrypted-tbn2.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288024121991","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://encrypted-tbn3.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288024107314","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":16116},"server":"https://encrypted-tbn1.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288024212568","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":25570},"server":"https://encrypted-tbn0.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418288059777854","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2RlYmlhbi5vcmcAAA==",false,0],"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2RlYmlhbi5vcmcAAA==",false,0],"server":"https://www.debian.org","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418289517754606","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":20817},"server":"https://docs.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418289502680486","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":28494},"server":"https://one.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418289632062708","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":15908},"server":"https://admin.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418289839789660","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL3lvdXR1YmUuY29tAA==",false,0],"server":"https://static.doubleclick.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418289841255182","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL3lvdXR1YmUuY29tAA==",false,0],"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418289841822646","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL3lvdXR1YmUuY29tAA==",false,0],"server":"https://youtube.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418289841824460","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL3lvdXR1YmUuY29tAA==",false,0],"server":"https://yt3.ggpht.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418289839204303","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL3lvdXR1YmUuY29tAA==",false,0],"network_stats":{"srtt":16586},"server":"https://csp.withgoogle.com","supports_spdy":true},{"anonymization":["GAAAABMAAABodHRwczovL3lvdXR1YmUuY29tAA==",false,0],"network_stats":{"srtt":4970},"server":"https://rr1---sn-bvvbax4pcxg-hjpz.googlevideo.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418289840821746","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL3lvdXR1YmUuY29tAA==",false,0],"network_stats":{"srtt":19811},"server":"https://rr2---sn-vgqsknzl.c.youtube.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418289841188470","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL3lvdXR1YmUuY29tAA==",false,0],"network_stats":{"srtt":10788},"server":"https://rr2---sn-bvvbax4pcxg-hjpk.googlevideo.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418289841735328","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL3lvdXR1YmUuY29tAA==",false,0],"network_stats":{"srtt":24145},"server":"https://www.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418289841771500","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL3lvdXR1YmUuY29tAA==",false,0],"network_stats":{"srtt":76101},"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418289841748502","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL3lvdXR1YmUuY29tAA==",false,0],"network_stats":{"srtt":19002},"server":"https://googleads.g.doubleclick.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418289841817767","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL3lvdXR1YmUuY29tAA==",false,0],"network_stats":{"srtt":31696},"server":"https://i.ytimg.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418289842451899","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL3lvdXR1YmUuY29tAA==",false,0],"network_stats":{"srtt":21072},"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418289842486086","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL3lvdXR1YmUuY29tAA==",false,0],"network_stats":{"srtt":19654},"server":"https://fonts.gstatic.com","supports_spdy":true},{"anonymization":["HAAAABgAAABodHRwczovL3N0ZWFtcG93ZXJlZC5jb20=",false,0],"server":"https://shared.akamai.steamstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418290239732537","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":21368},"server":"https://support.cloud.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418290270956647","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":23091},"server":"https://cloudsupport-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418290443483897","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL3lvdXR1YmUuY29tAA==",false,0],"network_stats":{"srtt":33636},"server":"https://accounts.youtube.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418290459863077","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":32516},"server":"https://myactivity.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418290519743390","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL3lvdXR1YmUuY29tAA==",false,0],"network_stats":{"srtt":18666},"server":"https://www.youtube.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418291023878151","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":22168},"server":"https://knowledge.workspace.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418291286986176","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://storage.cloud.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418291364069608","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":32900},"server":"https://www.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418291744645628","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",false,0],"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418291756705001","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418291761401249","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"server":"https://storage.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418291758921000","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":18794},"server":"https://cloud.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418291761452673","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":26037},"server":"https://cloud-dot-devsite-v2-prod.appspot.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418291858859012","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",false,0],"server":"https://csp.withgoogle.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418291859555822","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",false,0],"server":"https://mapsresources-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418291859154693","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",false,0],"network_stats":{"srtt":35838},"server":"https://maps.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418291858851382","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",false,0],"network_stats":{"srtt":16579},"server":"https://maps.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292241161480","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://csi.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292228251824","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":22202},"server":"https://apps.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292367024391","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"server":"https://mapsresources-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292366373963","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"server":"https://maps.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292367154863","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":22862},"server":"https://maps.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292367248076","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":30427},"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292396893908","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",true,0],"server":"https://fonts.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292368737349","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":53591},"server":"https://developerprofiles-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292397360971","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",true,0],"server":"https://static.doubleclick.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292369264858","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":16925},"server":"https://developers.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292398461601","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",true,0],"server":"https://www.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292370604897","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":58524},"server":"https://developers.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292398465453","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",true,0],"network_stats":{"srtt":19687},"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292484124910","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",false,0],"server":"https://i.ytimg.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292476139659","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",true,0],"network_stats":{"srtt":16249},"server":"https://googleads.g.doubleclick.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292477831290","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",true,0],"network_stats":{"srtt":37866},"server":"https://jnn-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292484161817","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",true,0],"network_stats":{"srtt":25698},"server":"https://i.ytimg.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292484414504","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",true,0],"network_stats":{"srtt":16426},"server":"https://yt3.ggpht.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292509700664","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",true,0],"network_stats":{"srtt":7958},"server":"https://rr14---sn-bvvbax4pcxg-hjpk.googlevideo.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418291859996304","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",false,0],"network_stats":{"srtt":21868},"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292512050079","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",false,0],"network_stats":{"srtt":48758},"server":"https://datacenters.google","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292403585376","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",false,0],"network_stats":{"srtt":15163},"server":"https://fonts.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292591896698","port":443,"protocol_str":"quic"}],"anonymization":["MAAAACsAAABodHRwczovL2FwcGxpZWRkaWdpdGFsc2tpbGxzLndpdGhnb29nbGUuY29tAA==",false,0],"server":"https://applieddigitalskills.withgoogle.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292529160761","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL2V4Y2VlZGxtcy5jb20AAAA=",false,0],"network_stats":{"srtt":17443},"server":"https://storage.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292537736191","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL2V4Y2VlZGxtcy5jb20AAAA=",false,0],"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292528688781","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL2V4Y2VlZGxtcy5jb20AAAA=",false,0],"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292619908666","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://ajax.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292592614893","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL2V4Y2VlZGxtcy5jb20AAAA=",false,0],"network_stats":{"srtt":16552},"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292592636484","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL2V4Y2VlZGxtcy5jb20AAAA=",false,0],"network_stats":{"srtt":25968},"server":"https://edu.exceedlms.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":8261},"server":"https://rr2---sn-bvvbax4pcxg-hjpk.googlevideo.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292682151983","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"server":"https://i9.ytimg.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292661019144","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":20793},"server":"https://services.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292677218450","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":37034},"server":"https://edu.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292631741041","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":21531},"server":"https://csp.withgoogle.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":19144},"server":"https://kstatic.googleusercontent.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292681030290","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":15576},"server":"https://i.ytimg.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292681392683","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":24788},"server":"https://yt3.ggpht.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292681980147","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":6619},"server":"https://rr1---sn-bvvbax4pcxg-hjpz.googlevideo.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292730459877","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL3NraWxscy5nb29nbGUAAAA=",true,2],"server":"https://www.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292731982287","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL3NraWxscy5nb29nbGUAAAA=",true,0],"server":"https://i.ytimg.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292730399703","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL3NraWxscy5nb29nbGUAAAA=",true,2],"server":"https://google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292732013677","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL3NraWxscy5nb29nbGUAAAA=",true,0],"server":"https://googleads.g.doubleclick.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292732052582","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL3NraWxscy5nb29nbGUAAAA=",true,0],"server":"https://yt3.ggpht.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292730780573","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL3NraWxscy5nb29nbGUAAAA=",true,2],"server":"https://lh3.googleusercontent.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292512141542","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",true,0],"network_stats":{"srtt":19420},"server":"https://www.youtube.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292707284631","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",false,0],"network_stats":{"srtt":17319},"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292729801763","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL3NraWxscy5nb29nbGUAAAA=",false,0],"network_stats":{"srtt":16699},"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292730210186","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL3NraWxscy5nb29nbGUAAAA=",false,0],"network_stats":{"srtt":66360},"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292730707769","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL3NraWxscy5nb29nbGUAAAA=",true,2],"network_stats":{"srtt":24718},"server":"https://accounts.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292729880540","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL3NraWxscy5nb29nbGUAAAA=",false,0],"network_stats":{"srtt":24751},"server":"https://fonts.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292740478162","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL3NraWxscy5nb29nbGUAAAA=",false,0],"network_stats":{"srtt":18300},"server":"https://www.skills.google","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292729270786","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL3NraWxscy5nb29nbGUAAAA=",false,0],"network_stats":{"srtt":21058},"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292731567140","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL3NraWxscy5nb29nbGUAAAA=",false,0],"network_stats":{"srtt":16298},"server":"https://support.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292731774349","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL3NraWxscy5nb29nbGUAAAA=",false,0],"network_stats":{"srtt":20406},"server":"https://cdn.qwiklabs.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292731752138","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL3NraWxscy5nb29nbGUAAAA=",false,0],"network_stats":{"srtt":29004},"server":"https://accounts.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292731784070","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL3NraWxscy5nb29nbGUAAAA=",false,0],"network_stats":{"srtt":81820},"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292733593303","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL3NraWxscy5nb29nbGUAAAA=",true,0],"network_stats":{"srtt":16924},"server":"https://jnn-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292850264642","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",false,0],"network_stats":{"srtt":26791},"server":"https://www.google-analytics.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292850281208","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL2RhdGFjZW50ZXJzLmdvb2dsZQAA",false,0],"network_stats":{"srtt":18970},"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292860828517","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL2V4Y2VlZGxtcy5jb20AAAA=",false,0],"network_stats":{"srtt":19548},"server":"https://www.google-analytics.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292831467808","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL3NraWxscy5nb29nbGUAAAA=",true,0],"network_stats":{"srtt":18440},"server":"https://www.youtube.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292870384229","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL3NraWxscy5nb29nbGUAAAA=",false,0],"network_stats":{"srtt":52724},"server":"https://www.google-analytics.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292998678234","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABwAAABodHRwczovL2Nsb3VkLndpdGhnb29nbGUuY29t",false,0],"server":"https://cloud.withgoogle.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292999212231","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292999250625","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://people-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292999277927","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://alkalicore-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292999999823","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://content-partners-pa.googleapis.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://cgc-ui-boq-autopush.corp.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293004535524","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":28370},"server":"https://alkalimetricsink-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293032267035","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":17374},"server":"https://cloud.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293273901137","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xpbmtlZGluLmNvbQ==",false,0],"server":"https://accounts.google.com","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2xpbmtlZGluLmNvbQ==",false,0],"server":"https://dms.licdn.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293274225640","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xpbmtlZGluLmNvbQ==",true,0],"server":"https://lh3.googleusercontent.com","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2xpbmtlZGluLmNvbQ==",true,0],"server":"https://li.protechts.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293282556882","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xpbmtlZGluLmNvbQ==",false,0],"server":"https://www.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293282627166","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xpbmtlZGluLmNvbQ==",false,0],"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293283137229","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xpbmtlZGluLmNvbQ==",true,0],"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293277513929","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xpbmtlZGluLmNvbQ==",true,0],"network_stats":{"srtt":42071},"server":"https://accounts.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293280506489","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xpbmtlZGluLmNvbQ==",true,0],"network_stats":{"srtt":15160},"server":"https://play.google.com","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2xpbmtlZGluLmNvbQ==",false,0],"network_stats":{"srtt":8755},"server":"https://media.licdn.com"},{"anonymization":["GAAAABQAAABodHRwczovL2xpbmtlZGluLmNvbQ==",false,0],"network_stats":{"srtt":8755},"server":"https://static.licdn.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293282999529","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xpbmtlZGluLmNvbQ==",false,0],"network_stats":{"srtt":20911},"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293283455685","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xpbmtlZGluLmNvbQ==",true,0],"network_stats":{"srtt":21666},"server":"https://www.google.com","supports_spdy":true},{"anonymization":["GAAAABMAAABodHRwczovLzFlZHRlY2gub3JnAA==",false,0],"server":"https://1edtech.informz.net","supports_spdy":true},{"anonymization":["GAAAABMAAABodHRwczovLzFlZHRlY2gub3JnAA==",false,0],"server":"https://cdn.informz.net","supports_spdy":true},{"anonymization":["GAAAABMAAABodHRwczovLzFlZHRlY2gub3JnAA==",false,0],"server":"https://www.1edtech.org","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293409176514","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL2ltc2dsb2JhbC5vcmcAAAA=",false,0],"network_stats":{"srtt":16180},"server":"https://www.googletagmanager.com","supports_spdy":true},{"anonymization":["HAAAABUAAABodHRwczovL2ltc2dsb2JhbC5vcmcAAAA=",false,0],"server":"https://www.imsglobal.org","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285638588403","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovLzFlZHRlY2gub3JnAA==",false,0],"network_stats":{"srtt":15881},"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418285638733620","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovLzFlZHRlY2gub3JnAA==",false,0],"network_stats":{"srtt":19103},"server":"https://fonts.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293203114225","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL2ltc2dsb2JhbC5vcmcAAAA=",false,0],"network_stats":{"srtt":19955},"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293202899150","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL2ltc2dsb2JhbC5vcmcAAAA=",false,0],"network_stats":{"srtt":19891},"server":"https://ajax.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293475722238","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL2ltc2dsb2JhbC5vcmcAAAA=",false,0],"network_stats":{"srtt":24505},"server":"https://fonts.gstatic.com","supports_spdy":true},{"anonymization":["JAAAAB4AAABodHRwczovL3ZhbmlsbGFjb21tdW5pdGllcy5jb20AAA==",false,0],"server":"https://d2l.vanillacommunities.com","supports_spdy":true},{"anonymization":["FAAAAA8AAABodHRwczovL2QybC5jb20A",false,0],"server":"https://www.d2l.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293273446269","port":443,"protocol_str":"quic"}],"anonymization":["FAAAAA8AAABodHRwczovL2QybC5jb20A",false,0],"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293275579651","port":443,"protocol_str":"quic"}],"anonymization":["FAAAAA8AAABodHRwczovL2QybC5jb20A",false,0],"network_stats":{"srtt":17686},"server":"https://fonts.gstatic.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2JyaWdodGlkZWEuY29tAAA=",false,0],"server":"https://desire2learn.brightidea.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293523928588","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2JyaWdodGlkZWEuY29tAAA=",false,0],"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293523997460","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2JyaWdodGlkZWEuY29tAAA=",false,0],"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2JyaWdodGlkZWEuY29tAAA=",false,0],"server":"https://cdn.heapanalytics.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2JyaWdodGlkZWEuY29tAAA=",false,0],"server":"https://heapanalytics.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293523760503","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2JyaWdodGlkZWEuY29tAAA=",false,0],"network_stats":{"srtt":23259},"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293272052496","port":443,"protocol_str":"quic"}],"anonymization":["FAAAAA8AAABodHRwczovL2QybC5jb20A",false,0],"network_stats":{"srtt":17798},"server":"https://www.googletagmanager.com","supports_spdy":true},{"anonymization":["FAAAAA8AAABodHRwczovL2QybC5jb20A",false,0],"server":"https://d14drb1667mvq0.cloudfront.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293274626582","port":443,"protocol_str":"quic"}],"anonymization":["FAAAAA8AAABodHRwczovL2QybC5jb20A",true,0],"network_stats":{"srtt":18086},"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293274702816","port":443,"protocol_str":"quic"}],"anonymization":["FAAAAA8AAABodHRwczovL2QybC5jb20A",true,0],"server":"https://fonts.gstatic.com","supports_spdy":true},{"anonymization":["FAAAAA8AAABodHRwczovL2QybC5jb20A",false,0],"network_stats":{"srtt":10121},"server":"https://us.v-cdn.net","supports_spdy":true},{"anonymization":["FAAAAA8AAABodHRwczovL2QybC5jb20A",false,0],"server":"https://dl182403p.searchunify.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293598784930","port":443,"protocol_str":"quic"}],"anonymization":["FAAAAA8AAABodHRwczovL2QybC5jb20A",false,0],"network_stats":{"srtt":31308},"server":"https://www.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293599425820","port":443,"protocol_str":"quic"}],"anonymization":["FAAAAA8AAABodHRwczovL2QybC5jb20A",true,0],"network_stats":{"srtt":30016},"server":"https://www.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293599425665","port":443,"protocol_str":"quic"}],"anonymization":["FAAAAA8AAABodHRwczovL2QybC5jb20A",false,0],"network_stats":{"srtt":25161},"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"anonymization":["FAAAAA8AAABodHRwczovL2QybC5jb20A",false,0],"network_stats":{"srtt":11114},"server":"https://community.d2l.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293665845871","port":443,"protocol_str":"quic"}],"anonymization":["FAAAAA8AAABodHRwczovL2QybC5jb20A",false,0],"network_stats":{"srtt":19388},"server":"https://www.google-analytics.com","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2xpbmtlZGluLmNvbQ==",false,0],"network_stats":{"srtt":6730},"server":"https://www.linkedin.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293669438682","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xpbmtlZGluLmNvbQ==",true,0],"network_stats":{"srtt":31570},"server":"https://collector-pxdojv695v.protechts.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293677126072","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABodHRwczovL2ltc2dsb2JhbC5vcmcAAAA=",false,0],"network_stats":{"srtt":22922},"server":"https://www.google-analytics.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293689231281","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovLzFlZHRlY2gub3JnAA==",false,0],"network_stats":{"srtt":19047},"server":"https://www.google-analytics.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293689279045","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovLzFlZHRlY2gub3JnAA==",false,0],"network_stats":{"srtt":21612},"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293740150076","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":19679},"server":"https://clients2.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293743511757","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":30589},"server":"https://maps.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293842239112","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2FwcHNoZWV0LmNvbQ==",false,0],"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293841650296","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2FwcHNoZWV0LmNvbQ==",false,0],"network_stats":{"srtt":19495},"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293842021293","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2FwcHNoZWV0LmNvbQ==",false,0],"network_stats":{"srtt":19538},"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293842068368","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2FwcHNoZWV0LmNvbQ==",false,0],"network_stats":{"srtt":41741},"server":"https://fonts.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293842175129","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2FwcHNoZWV0LmNvbQ==",false,0],"network_stats":{"srtt":31527},"server":"https://www.appsheet.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293842295286","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2FwcHNoZWV0LmNvbQ==",false,0],"network_stats":{"srtt":24648},"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293846368528","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2FwcHNoZWV0LmNvbQ==",false,0],"network_stats":{"srtt":31657},"server":"https://www.google-analytics.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293925188838","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":28038},"server":"https://adsmtometadata.pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418291756731322","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":16087},"server":"https://fonts.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293962316261","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://img.youtube.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293962316426","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://i1.ytimg.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418291758998483","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":17191},"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293893561808","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":21688},"server":"https://feedback-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293948919484","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":21688},"server":"https://adsmarketingwebp13n-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293952547376","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":16492},"server":"https://ads.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293962355544","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":18178},"server":"https://static.doubleclick.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293962488901","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":20795},"server":"https://i.ytimg.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293963843454","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":36111},"server":"https://jnn-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293974356839","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":19920},"server":"https://www.youtube.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293974549070","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":24851},"server":"https://www.googleadservices.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293974642260","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":26384},"server":"https://adservice.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294004859123","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",false,0],"server":"https://workspaceupdates.googleblog.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294004953759","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",false,0],"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294005039291","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",false,0],"server":"https://services.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294005092341","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",false,0],"server":"https://translate.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294005300116","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",true,0],"server":"https://fonts.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294005428015","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",true,0],"server":"https://i.ytimg.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294005471778","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",true,0],"server":"https://static.doubleclick.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294005483063","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",false,0],"server":"https://www.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294005483340","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",true,0],"server":"https://googleads.g.doubleclick.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294005483515","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",true,0],"server":"https://yt3.ggpht.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294005522503","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",true,0],"server":"https://translate-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294006467316","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",true,0],"server":"https://www.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294005014247","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",false,0],"network_stats":{"srtt":21077},"server":"https://storage.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294005046929","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",false,0],"network_stats":{"srtt":20046},"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294005227222","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",false,0],"network_stats":{"srtt":23911},"server":"https://www.blogger.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294005417114","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",false,0],"network_stats":{"srtt":77672},"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294005449641","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",false,0],"network_stats":{"srtt":19295},"server":"https://fonts.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294005471503","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",false,0],"network_stats":{"srtt":20343},"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294005531386","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",true,0],"network_stats":{"srtt":19097},"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294005589258","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",false,0],"network_stats":{"srtt":19185},"server":"https://workspace.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294006696825","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",true,0],"network_stats":{"srtt":33266},"server":"https://jnn-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294009102068","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",true,0],"network_stats":{"srtt":19733},"server":"https://www.youtube.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294009111393","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",false,0],"network_stats":{"srtt":20372},"server":"https://www.google-analytics.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294009113263","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvb2dsZWJsb2cuY29tAAA=",false,0],"network_stats":{"srtt":19872},"server":"https://translate.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294011520635","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":41457},"server":"https://googleads.g.doubleclick.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294011424090","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":29428},"server":"https://2507573.fls.doubleclick.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294011569780","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":76346},"server":"https://adservice.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294011552079","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":17228},"server":"https://ad.doubleclick.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294011628126","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":47507},"server":"https://www.googleadservices.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294011670219","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":18788},"server":"https://googleads.g.doubleclick.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294011774646","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":18642},"server":"https://www.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293052388171","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":22032},"server":"https://www.youtube.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294019626049","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":22354},"server":"https://ssl.google-analytics.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294031082615","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":24070},"server":"https://business.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294036470084","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":24190},"server":"https://adsmarketingfrontend-pa.clients6.google.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dpdGh1Yi5jb20AAA==",false,0],"server":"https://camo.githubusercontent.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dpdGh1Yi5jb20AAA==",false,0],"server":"https://github.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dpdGh1Yi5jb20AAA==",false,0],"server":"https://github.githubassets.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287991161141","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dpdGh1Yi5jb20AAA==",false,0],"network_stats":{"srtt":47602},"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dpdGh1Yi5jb20AAA==",false,0],"server":"https://avatars.githubusercontent.com","supports_spdy":true},{"anonymization":["KAAAACEAAABodHRwczovL2dlbmVyaWMtbWFwcGluZy10b29scy5vcmcAAAA=",false,0],"server":"https://www.generic-mapping-tools.org","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dpdGh1Yi5jb20AAA==",false,0],"server":"https://api.github.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dpdGh1Yi5jb20AAA==",false,0],"server":"https://collector.github.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294030980266","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":19694},"server":"https://workspace.google.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2RlYmlhbi5vcmcAAA==",false,0],"server":"https://micronews.debian.org","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287954084100","port":443,"protocol_str":"quic"}],"anonymization":["KAAAACEAAABodHRwczovL2dlbmVyaWMtbWFwcGluZy10b29scy5vcmcAAAA=",false,0],"network_stats":{"srtt":17448},"server":"https://www.google-analytics.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287954014992","port":443,"protocol_str":"quic"}],"anonymization":["KAAAACEAAABodHRwczovL2dlbmVyaWMtbWFwcGluZy10b29scy5vcmcAAAA=",false,0],"network_stats":{"srtt":16879},"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287954074222","port":443,"protocol_str":"quic"}],"anonymization":["KAAAACEAAABodHRwczovL2dlbmVyaWMtbWFwcGluZy10b29scy5vcmcAAAA=",false,0],"network_stats":{"srtt":16013},"server":"https://fonts.gstatic.com","supports_spdy":true},{"anonymization":["KAAAACEAAABodHRwczovL2dlbmVyaWMtbWFwcGluZy10b29scy5vcmcAAAA=",false,0],"network_stats":{"srtt":5991},"server":"https://img.shields.io","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL3plbm9kby5vcmcAAA==",false,0],"server":"https://code.jquery.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294157852290","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL3plbm9kby5vcmcAAA==",false,0],"server":"https://fonts.googleapis.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL3plbm9kby5vcmcAAA==",false,0],"server":"https://maxcdn.bootstrapcdn.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL3plbm9kby5vcmcAAA==",false,0],"server":"https://i.creativecommons.org","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294157961732","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL3plbm9kby5vcmcAAA==",false,0],"server":"https://fonts.gstatic.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL3plbm9kby5vcmcAAA==",false,0],"server":"https://licensebuttons.net","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL3plbm9kby5vcmcAAA==",false,0],"server":"https://about.zenodo.org","supports_spdy":true},{"anonymization":["HAAAABUAAABodHRwczovL29wZW5zaGlmdC5jb20AAAA=",false,0],"server":"https://docs.openshift.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL3JlZGhhdC5jb20AAA==",false,0],"server":"https://www.redhat.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL3JlZGhhdC5jb20AAA==",true,0],"server":"https://consent.trustarc.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL3JlZGhhdC5jb20AAA==",false,0],"server":"https://static.redhat.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL3JlZGhhdC5jb20AAA==",false,0],"server":"https://assets.adobedtm.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL3JlZGhhdC5jb20AAA==",false,0],"server":"https://docs.redhat.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL3JlZGhhdC5jb20AAA==",false,0],"server":"https://www.redhatstatic.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL3JlZGhhdC5jb20AAA==",false,0],"server":"https://access.redhat.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294187526059","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL3JlZGhhdC5jb20AAA==",false,0],"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL3JlZGhhdC5jb20AAA==",false,0],"server":"https://consent.trustarc.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":15270},"server":"https://lh7-rt.googleusercontent.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296135701526","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":16362},"server":"https://storage.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296367248135","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":21741},"server":"https://realtimesupport.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296396989712","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":32396},"server":"https://moltron-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296418591144","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL2Rpc2NvcmQuY29tAA==",false,0],"network_stats":{"srtt":19327},"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418292711999436","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL2dzdGF0aWMuY29tAA==",false,0],"network_stats":{"srtt":20325},"server":"https://www.gstatic.com","supports_spdy":true},{"anonymization":["GAAAABIAAABodHRwczovL3plbm9kby5vcmcAAA==",false,0],"network_stats":{"srtt":6274},"server":"https://cdnjs.cloudflare.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296673489281","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL3plbm9kby5vcmcAAA==",false,0],"network_stats":{"srtt":16862},"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL25hdmlnYXRpb24ub3JnAAA=",false,0],"server":"https://d3e54v103j8qbb.cloudfront.net","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2xvbmd2aWV3Lm9yZw==",true,0],"server":"https://consentcdn.cookiebot.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296720513836","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xvbmd2aWV3Lm9yZw==",false,0],"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296722258613","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xvbmd2aWV3Lm9yZw==",true,0],"server":"https://fonts.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296733699463","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xvbmd2aWV3Lm9yZw==",false,0],"server":"https://csp.withgoogle.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296679885388","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL25hdmlnYXRpb24ub3JnAAA=",false,0],"network_stats":{"srtt":22389},"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296679819421","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL25hdmlnYXRpb24ub3JnAAA=",false,0],"network_stats":{"srtt":22150},"server":"https://www.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294172263770","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL25hdmlnYXRpb24ub3JnAAA=",false,0],"network_stats":{"srtt":23229},"server":"https://ajax.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294172297083","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL25hdmlnYXRpb24ub3JnAAA=",false,0],"network_stats":{"srtt":21793},"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294172541177","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL25hdmlnYXRpb24ub3JnAAA=",false,0],"network_stats":{"srtt":14539},"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418294172347832","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL25hdmlnYXRpb24ub3JnAAA=",false,0],"network_stats":{"srtt":15479},"server":"https://fonts.gstatic.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL25hdmlnYXRpb24ub3JnAAA=",false,0],"network_stats":{"srtt":8727},"server":"https://cdn.prod.website-files.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL25hdmlnYXRpb24ub3JnAAA=",false,0],"network_stats":{"srtt":6375},"server":"https://www.navigation.org","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296721877007","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xvbmd2aWV3Lm9yZw==",false,0],"network_stats":{"srtt":17266},"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296722176931","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xvbmd2aWV3Lm9yZw==",true,0],"network_stats":{"srtt":15977},"server":"https://www.gstatic.com","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2xvbmd2aWV3Lm9yZw==",false,0],"server":"https://consent.cookiebot.com","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2xvbmd2aWV3Lm9yZw==",false,0],"server":"https://consentcdn.cookiebot.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2Vwb2NoLmFp",false,0],"server":"https://ga.jspm.io","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296763059011","port":443,"protocol_str":"quic"}],"anonymization":["FAAAABAAAABodHRwczovL2Vwb2NoLmFp",false,0],"server":"https://stats.g.doubleclick.net","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2Vwb2NoLmFp",false,0],"server":"https://scripts.clarity.ms","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2Vwb2NoLmFp",false,0],"server":"https://c.bing.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2Vwb2NoLmFp",false,0],"server":"https://c.clarity.ms","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296721634980","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xvbmd2aWV3Lm9yZw==",false,0],"network_stats":{"srtt":18274},"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296721562426","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xvbmd2aWV3Lm9yZw==",false,0],"network_stats":{"srtt":19137},"server":"https://www.google.com","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2xvbmd2aWV3Lm9yZw==",false,0],"network_stats":{"srtt":10464},"server":"https://longview.org","supports_spdy":true},{"anonymization":["GAAAABQAAABodHRwczovL2xvbmd2aWV3Lm9yZw==",false,0],"network_stats":{"srtt":10464},"server":"https://www.longview.org","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296755367333","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xvbmd2aWV3Lm9yZw==",true,0],"network_stats":{"srtt":25392},"server":"https://www.google.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2Vwb2NoLmFp",false,0],"network_stats":{"srtt":7586},"server":"https://unpkg.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296760354699","port":443,"protocol_str":"quic"}],"anonymization":["FAAAABAAAABodHRwczovL2Vwb2NoLmFp",false,0],"network_stats":{"srtt":91602},"server":"https://www.googletagmanager.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2Vwb2NoLmFp",false,0],"network_stats":{"srtt":15147},"server":"https://epoch.ai","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296762972998","port":443,"protocol_str":"quic"}],"anonymization":["FAAAABAAAABodHRwczovL2Vwb2NoLmFp",false,0],"network_stats":{"srtt":19258},"server":"https://www.google-analytics.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296763248172","port":443,"protocol_str":"quic"}],"anonymization":["FAAAABAAAABodHRwczovL2Vwb2NoLmFp",false,0],"network_stats":{"srtt":17390},"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296780398666","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xvbmd2aWV3Lm9yZw==",false,0],"network_stats":{"srtt":19856},"server":"https://a.nel.cloudflare.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2Vwb2NoLmFp",false,0],"network_stats":{"srtt":7897},"server":"https://cdn.jsdelivr.net","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"server":"https://static.addtoany.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"server":"https://consent.trustarc.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296882139510","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://stats.g.doubleclick.net","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"server":"https://driftt.imgix.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296883558393","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://www.google-analytics.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://snap.licdn.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://tracking-api.g2.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://www.linkedin.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296885419504","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://pippio.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://secure.adnxs.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296917800068","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"network_stats":{"srtt":16303},"server":"https://cm.g.doubleclick.net","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://match.adsrvr.org","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://dyv6f9ner1ir9.cloudfront.net","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"server":"https://cdn.jsdelivr.net","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"server":"https://code.jquery.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"server":"https://static.filestackapi.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"server":"https://dyv6f9ner1ir9.cloudfront.net","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"server":"https://maxst.icons8.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296968031427","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"server":"https://api-n.outgrow.co","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"server":"https://api-h.outgrow.co","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"network_stats":{"srtt":7799},"server":"https://cdnjs.cloudflare.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"network_stats":{"srtt":6489},"server":"https://dlvkyia8i4zmz.cloudfront.net","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"network_stats":{"srtt":10566},"server":"https://cdn.outgrow.us","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"server":"https://fortra.outgrow.us","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://js.hsforms.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296974758949","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"network_stats":{"srtt":31829},"server":"https://www.google-analytics.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://ups.analytics.yahoo.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://distillery.wistia.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://embed-cloudfront.wistia.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://fast.wistia.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://js.hs-scripts.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://j.6sc.co","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://js.hs-analytics.net","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://js.hs-banner.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://js.hubspot.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://js.usemessages.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://scripts.clarity.ms","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418297004123230","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"network_stats":{"srtt":96834},"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://static.fortra.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://js.driftt.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://consent.trustarc.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://cta-service-cms2.hubspot.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://ipv6.6sc.co","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://api.hubspot.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://track.hubspot.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"server":"https://js.driftt.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://epsilon.6sense.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://www.goanywhere.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"server":"https://customer.api.drift.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"server":"https://bootstrap.driftapi.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"server":"https://event.api.drift.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"server":"https://targeting.api.drift.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296967698506","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"network_stats":{"srtt":65482},"server":"https://www.googletagmanager.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://tracking.g2crowd.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://ipv4.d.adroll.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://sync.taboola.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://ib.adnxs.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://eb2.3lift.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://image2.pubmatic.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://x.bidswitch.net","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://dpm.demdex.net","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",true,0],"server":"https://metrics.api.drift.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"network_stats":{"srtt":10066},"server":"https://static.addtoany.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://b.6sc.co","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://d.adroll.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"server":"https://bat.bing.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296882868147","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"network_stats":{"srtt":18002},"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296880910334","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"network_stats":{"srtt":22668},"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296958518030","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"network_stats":{"srtt":22454},"server":"https://fonts.gstatic.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"network_stats":{"srtt":6362},"server":"https://ct.capterra.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"network_stats":{"srtt":17746},"server":"https://perf-na1.hsforms.com"},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418297033385448","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"network_stats":{"srtt":24524},"server":"https://dev.visualwebsiteoptimizer.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418297034061826","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"network_stats":{"srtt":16333},"server":"https://googleads.g.doubleclick.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418297034110404","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"network_stats":{"srtt":17380},"server":"https://www.google.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"network_stats":{"srtt":38709},"server":"https://px.ads.linkedin.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"network_stats":{"srtt":19762},"server":"https://px4.ads.linkedin.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418297037155282","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"network_stats":{"srtt":40005},"server":"https://ml314.com","supports_spdy":true},{"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"network_stats":{"srtt":8672},"server":"https://dsum-sec.casalemedia.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418297037184567","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"network_stats":{"srtt":31149},"server":"https://us-u.openx.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418297037214168","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"network_stats":{"srtt":43486},"server":"https://pixel.tapad.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418297037424200","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"network_stats":{"srtt":35352},"server":"https://idsync.rlcdn.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418297058150822","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL2dvYW55d2hlcmUuY29tAAA=",false,0],"network_stats":{"srtt":28315},"server":"https://analytics.google.com","supports_spdy":true},{"anonymization":["FAAAABAAAABodHRwczovL2Vwb2NoLmFp",false,0],"network_stats":{"srtt":6405},"server":"https://analytics.ahrefs.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418297301048336","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABYAAABodHRwczovL25hdmlnYXRpb24ub3JnAAA=",false,0],"network_stats":{"srtt":23792},"server":"https://www.google-analytics.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418297310549121","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABQAAABodHRwczovL2xvbmd2aWV3Lm9yZw==",false,0],"network_stats":{"srtt":19780},"server":"https://www.google-analytics.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293728123541","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",true,0],"network_stats":{"srtt":24759},"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418297324754318","port":443,"protocol_str":"quic"}],"anonymization":["FAAAABAAAABodHRwczovL2Vwb2NoLmFp",false,0],"network_stats":{"srtt":22693},"server":"https://analytics.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418297338435197","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL2dzdGF0aWMuY29tAA==",false,0],"network_stats":{"srtt":17735},"server":"https://encrypted-tbn0.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293727912798","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":19646},"server":"https://fonts.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296293731983","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":26308},"server":"https://apis.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418297339283121","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":21878},"server":"https://www.googletagmanager.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418297339509747","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":21150},"server":"https://ogads-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418296293561508","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":15161},"server":"https://ssl.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418297343495035","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":16818},"server":"https://ogs.google.com","supports_spdy":true},{"anonymization":["GAAAABMAAABodHRwczovL2Rpc2NvcmQuY29tAA==",false,0],"network_stats":{"srtt":11501},"server":"https://images-ext-1.discordapp.net","supports_spdy":true},{"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"server":"https://lh5.googleusercontent.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287338582660","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"server":"https://lh3.googleusercontent.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418287338824437","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"server":"https://apis.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418304649760555","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"network_stats":{"srtt":18841},"server":"https://ogads-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418304653850142","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"network_stats":{"srtt":17697},"server":"https://ogs.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418304654230208","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"network_stats":{"srtt":26919},"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418304684281705","port":443,"protocol_str":"quic"}],"anonymization":["HAAAABUAAABjaHJvbWU6Ly9uZXctdGFiLXBhZ2UAAAA=",true,0],"network_stats":{"srtt":21731},"server":"https://play.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418304880237675","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABMAAABodHRwczovL2Rpc2NvcmQuY29tAA==",false,0],"network_stats":{"srtt":17073},"server":"https://a.nel.cloudflare.com","supports_spdy":true},{"anonymization":["GAAAABMAAABodHRwczovL2Rpc2NvcmQuY29tAA==",false,0],"server":"https://discord.com","supports_spdy":true},{"anonymization":["GAAAABMAAABodHRwczovL2Rpc2NvcmQuY29tAA==",false,0],"server":"https://media.discordapp.net","supports_spdy":true},{"anonymization":["GAAAABMAAABodHRwczovL2Rpc2NvcmQuY29tAA==",false,0],"server":"https://cdn.discordapp.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418304914801331","port":443,"protocol_str":"quic"}],"anonymization":["FAAAABAAAABodHRwczovL2dsYW1hLmFp",false,0],"network_stats":{"srtt":16198},"server":"https://www.google-analytics.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418304973449720","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"server":"https://lh3.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418304973719713","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":17708},"server":"https://lh3.googleusercontent.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418382837903401","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":15711},"server":"https://support.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418384457393804","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":16794},"server":"https://waa-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418293893582175","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":20325},"server":"https://fonts.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418384700185632","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":17400},"server":"https://www.gstatic.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418385012237428","port":443,"protocol_str":"quic"}],"anonymization":["LAAAACcAAABodHRwczovL2NvbnRlbnQtYXV0b2ZpbGwuZ29vZ2xlYXBpcy5jb20A",false,0],"network_stats":{"srtt":15910},"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418385014158579","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":21198},"server":"https://content-autofill.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418385014243791","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":33768},"server":"https://signaler-pa.clients6.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418386884270057","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":42939},"server":"https://stats.g.doubleclick.net","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418386884307427","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":16182},"server":"https://www.google-analytics.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418388578369005","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":18838},"server":"https://analytics.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418388576667624","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":19187},"server":"https://notebooklm.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418388578380122","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":19187},"server":"https://play.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418424235403817","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":31523},"server":"https://accounts.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418424235424846","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":20927},"server":"https://www.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418424303683359","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":18461},"server":"https://android.clients.google.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418512057488345","port":443,"protocol_str":"quic"}],"anonymization":["NAAAAC0AAABodHRwczovL2FjY291bnRjYXBhYmlsaXRpZXMtcGEuZ29vZ2xlYXBpcy5jb20AAAA=",false,0],"network_stats":{"srtt":19090},"server":"https://accountcapabilities-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418512057609592","port":443,"protocol_str":"quic"}],"anonymization":["LAAAACgAAABodHRwczovL2tpZHNtYW5hZ2VtZW50LXBhLmdvb2dsZWFwaXMuY29t",false,0],"network_stats":{"srtt":20016},"server":"https://kidsmanagement-pa.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418529749792278","port":443,"protocol_str":"quic"}],"anonymization":["LAAAACUAAABodHRwczovL2Nocm9tZXdlYnN0b3JlLmdvb2dsZWFwaXMuY29tAAAA",false,0],"network_stats":{"srtt":20263},"server":"https://chromewebstore.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418547169781522","port":443,"protocol_str":"quic"}],"anonymization":["IAAAABoAAABodHRwczovL3d3dy5nb29nbGVhcGlzLmNvbQAA",false,0],"network_stats":{"srtt":23154},"server":"https://www.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418553487247454","port":443,"protocol_str":"quic"}],"anonymization":["JAAAAB0AAABodHRwczovL3VwZGF0ZS5nb29nbGVhcGlzLmNvbQAAAA==",false,0],"network_stats":{"srtt":35998},"server":"https://update.googleapis.com","supports_spdy":true},{"alternative_service":[{"advertised_alpns":["h3"],"expiration":"13418554613545559","port":443,"protocol_str":"quic"}],"anonymization":["GAAAABIAAABodHRwczovL2dvb2dsZS5jb20AAA==",false,0],"network_stats":{"srtt":32110},"server":"https://clients4.google.com","supports_spdy":true}],"supports_quic":{"address":"2605:a601:afa6:a900:c07d:65dc:1c26:df1c","used_quic":true},"version":5},"network_qualities":{"CAASABiAgICA+P////8B":"4G","CAISABiAgICA+P////8B":"4G","CAYSABiAgICA+P////8B":"Offline"}}} \ No newline at end of file diff --git a/notebooklm_chrome_profile/Default/Platform Notifications/LOG b/notebooklm_chrome_profile/Default/Platform Notifications/LOG index 97609e85f..b2f974255 100644 --- a/notebooklm_chrome_profile/Default/Platform Notifications/LOG +++ b/notebooklm_chrome_profile/Default/Platform Notifications/LOG @@ -1,2 +1,3 @@ -2026/02/15-23:10:37.583 3ee65d Creating DB /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Platform Notifications since it was missing. -2026/02/15-23:10:37.590 3ee65d Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Platform Notifications/MANIFEST-000001 +2026/02/17-14:03:55.070 3ee66d Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Platform Notifications/MANIFEST-000001 +2026/02/17-14:03:55.074 3ee66d Recovering log #3 +2026/02/17-14:03:55.074 3ee66d Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Platform Notifications/000003.log diff --git a/notebooklm_chrome_profile/Default/Platform Notifications/LOG.old b/notebooklm_chrome_profile/Default/Platform Notifications/LOG.old new file mode 100644 index 000000000..97609e85f --- /dev/null +++ b/notebooklm_chrome_profile/Default/Platform Notifications/LOG.old @@ -0,0 +1,2 @@ +2026/02/15-23:10:37.583 3ee65d Creating DB /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Platform Notifications since it was missing. +2026/02/15-23:10:37.590 3ee65d Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Platform Notifications/MANIFEST-000001 diff --git a/notebooklm_chrome_profile/Default/Preferences b/notebooklm_chrome_profile/Default/Preferences index fc62b723a..b5acddcfc 100644 --- a/notebooklm_chrome_profile/Default/Preferences +++ b/notebooklm_chrome_profile/Default/Preferences @@ -1 +1 @@ -{"NewTabPage":{"PrevNavigationTime":"13415696115286890"},"accessibility":{"captions":{"headless_caption_enabled":false}},"account_info":[{"access_point":31,"account_id":"100819125745700103222","accountcapabilities":{"accountcapabilities/g42tslldmfya":1,"accountcapabilities/g44tilldmfya":0,"accountcapabilities/ge2dinbnmnqxa":1,"accountcapabilities/ge2tkmznmnqxa":1,"accountcapabilities/ge2tknznmnqxa":1,"accountcapabilities/ge2tkobnmnqxa":1,"accountcapabilities/ge3dgmjnmnqxa":1,"accountcapabilities/ge3dgobnmnqxa":1,"accountcapabilities/ge4tenznmnqxa":1,"accountcapabilities/ge4tgnznmnqxa":0,"accountcapabilities/geydgnznmnqxa":1,"accountcapabilities/geytcnbnmnqxa":1,"accountcapabilities/gezdcnbnmnqxa":1,"accountcapabilities/gezdsmbnmnqxa":0,"accountcapabilities/geztenjnmnqxa":1,"accountcapabilities/gi2tklldmfya":1,"accountcapabilities/gu2dqlldmfya":1,"accountcapabilities/gu4dmlldmfya":0,"accountcapabilities/guydolldmfya":0,"accountcapabilities/guzdslldmfya":0,"accountcapabilities/haytqlldmfya":1,"accountcapabilities/he4tolldmfya":0},"email":"garveyht@gmail.com","full_name":"Hayden Garvey","gaia":"100819125745700103222","given_name":"Hayden","hd":"NO_HOSTED_DOMAIN","is_supervised_child":0,"is_under_advanced_protection":false,"last_downloaded_image_url_with_size":"https://lh3.googleusercontent.com/a/ACg8ocJ02ukvqC4H8BHk_hOE011Fa_SyiZju8cFASQRNAE1e35de1uHd-w=s256-c-ns","locale":"en","picture_url":"https://lh3.googleusercontent.com/a/ACg8ocJ02ukvqC4H8BHk_hOE011Fa_SyiZju8cFASQRNAE1e35de1uHd-w=s96-c"}],"account_tracker_service_last_update":"13415657438162083","account_values":{"accessibility":{"captions":{"live_caption_bubble_expanded":true,"live_caption_enabled":false,"live_caption_language":"en-US","live_caption_mask_offensive_words":false}},"auto_pin_new_tab_groups":true,"autofill":{"has_seen_bnpl":true,"last_version_deduped":144,"name_and_email_profile_not_selected_counter":0,"name_and_email_profile_signature":"575268860","was_name_and_email_profile_used":true},"bookmark_bar":{"show_apps_shortcut":true,"show_managed_bookmarks":false,"show_on_all_tabs":true,"show_tab_groups":true},"browser":{"allow_javascript_apple_events":true,"enable_spellchecking":true,"pin_split_tab_button":true,"show_forward_button":false,"theme":{"color_scheme":0,"color_variant":1,"user_color":-8024956}},"credentials_enable_service":true,"custom_links":{"initialized":true,"list":[]},"devtools":{"sync_preferences":true,"synced_preferences_sync_enabled":{"active-keybind-set":"\"devToolsDefault\"","adorner-settings":"[{\"adorner\":\"grid\",\"isEnabled\":true},{\"adorner\":\"subgrid\",\"isEnabled\":false},{\"adorner\":\"flex\",\"isEnabled\":false},{\"adorner\":\"ad\",\"isEnabled\":false},{\"adorner\":\"scroll-snap\",\"isEnabled\":true},{\"adorner\":\"container\",\"isEnabled\":false},{\"adorner\":\"slot\",\"isEnabled\":true},{\"adorner\":\"top-layer\",\"isEnabled\":true},{\"adorner\":\"reveal\",\"isEnabled\":true},{\"adorner\":\"media\",\"isEnabled\":true},{\"adorner\":\"scroll\",\"isEnabled\":false},{\"adorner\":\"popover\",\"isEnabled\":true},{\"adorner\":\"starting-style\",\"isEnabled\":true},{\"adorner\":\"grid-lanes\",\"isEnabled\":true}]","allow-scroll-past-eof":"false","auto-attach-to-created-pages":"true","auto-reveal-in-navigator":"true","chrome-theme-colors":"true","console-autocomplete-on-enter":"true","console-timestamps-enabled":"true","console-user-activation-eval":"true","disable-paused-state-overlay":"true","disable-self-xss-warning":"true","emulation.locations":"[{\"title\":\"Berlin\",\"lat\":52.520007,\"long\":13.404954,\"timezoneId\":\"Europe/Berlin\",\"locale\":\"de-DE\"},{\"title\":\"London\",\"lat\":51.507351,\"long\":-0.127758,\"timezoneId\":\"Europe/London\",\"locale\":\"en-GB\"},{\"title\":\"Moscow\",\"lat\":55.755826,\"long\":37.6173,\"timezoneId\":\"Europe/Moscow\",\"locale\":\"ru-RU\"},{\"title\":\"Mountain View\",\"lat\":37.386052,\"long\":-122.083851,\"timezoneId\":\"America/Los_Angeles\",\"locale\":\"en-US\"},{\"title\":\"Mumbai\",\"lat\":19.075984,\"long\":72.877656,\"timezoneId\":\"Asia/Kolkata\",\"locale\":\"mr-IN\"},{\"title\":\"San Francisco\",\"lat\":37.774929,\"long\":-122.419416,\"timezoneId\":\"America/Los_Angeles\",\"locale\":\"en-US\"},{\"title\":\"Shanghai\",\"lat\":31.230416,\"long\":121.473701,\"timezoneId\":\"Asia/Shanghai\",\"locale\":\"zh-Hans-CN\"},{\"title\":\"São Paulo\",\"lat\":-23.55052,\"long\":-46.633309,\"timezoneId\":\"America/Sao_Paulo\",\"locale\":\"pt-BR\"},{\"title\":\"Tokyo\",\"lat\":35.689487,\"long\":139.691706,\"timezoneId\":\"Asia/Tokyo\",\"locale\":\"ja-JP\"}]","enable-ignore-listing":"false","extend-grid-lines":"true","flamechart-selected-navigation":"\"modern\"","frame-viewer-hide-chrome-window":"true","gdp.ai-conversation-count":"5","global-ai-button-click-count":"5","hide-network-messages":"true","lighthouse-show-settings-toolbar":"false","lighthouse.device-type":"\"desktop\"","lighthouse.enable-sampling":"true","lighthouse.mode":"\"snapshot\"","lighthouse.throttling":"\"devtools\"","monitoring-xhr-enabled":"true","network-color-code-resource-types":"true","network.enable-remote-file-loading":"true","network.group-by-frame":"true","network.show-options-to-generate-har-with-sensitive-data":"true","preserve-console-log":"true","receive-gdp-badges":"true","search-in-anonymous-and-content-scripts":"true","selected-context-filter-enabled":"true","show-grid-areas":"true","show-grid-line-labels":"\"lineNames\"","show-grid-track-sizes":"true","show-ua-shadow-dom":"true","show-whitespaces-in-editor":"\"all\"","skip-anonymous-scripts":"true","skip-content-scripts":"false","skip-stack-frames-pattern":"[{\"pattern\":\"/node_modules/|/bower_components/\",\"disabled\":true},{\"pattern\":\"/paywall_modal\\\\.tsx$\",\"disabled\":false}]","sources.word-wrap":"true","syncedInspectorVersion":"40","text-editor-code-folding":"true","text-editor-indent":"\" \"","ui-theme":"\"dark\"","user-shortcuts":"[{\"descriptors\":[{\"key\":3155,\"name\":\"⌘ ⌥ S\"}],\"action\":\"sources.save-all\",\"type\":\"DisabledDefault\",\"keybindSets\":{}},{\"descriptors\":[{\"key\":2131,\"name\":\"⌘ S\"},{\"key\":2131,\"name\":\"⌘ S\"}],\"action\":\"sources.save-all\",\"type\":\"UserShortcut\",\"keybindSets\":{}},{\"descriptors\":[{\"key\":78,\"name\":\"N\"},{\"key\":66,\"name\":\"B\"}],\"action\":\"sources.toggle-navigator-sidebar\",\"type\":\"UserShortcut\",\"keybindSets\":{}},{\"descriptors\":[{\"key\":2101,\"name\":\"⌘ 5\"}],\"action\":\"emulation.capture-screenshot\",\"type\":\"UserShortcut\",\"keybindSets\":{}},{\"descriptors\":[{\"key\":2100,\"name\":\"⌘ 4\"}],\"action\":\"emulation.capture-node-screenshot\",\"type\":\"UserShortcut\",\"keybindSets\":{}},{\"descriptors\":[{\"key\":2097,\"name\":\"⌘ 1\"}],\"action\":\"settings.documentation\",\"type\":\"UserShortcut\",\"keybindSets\":{}},{\"descriptors\":[{\"key\":1061,\"name\":\"⌥ ←\"}],\"action\":\"drjones.network-floating-button\",\"type\":\"UserShortcut\",\"keybindSets\":{}}]"}},"extensions":{"commands":{"linux:Ctrl+Shift+K":{"command_name":"_execute_action","extension":"knheggckgoiihginacbkhaalnibhilkk","global":false},"mac:Alt+P":{"command_name":"_execute_action","extension":"hkgfoiooedgoejojocmhlaklaeopbecg","global":false},"mac:Alt+Shift+M":{"command_name":"_execute_action","extension":"nkbihfbeogaeaoehlefnkodbefgpgknn","global":false},"mac:Alt+Shift+P":{"command_name":"_execute_action","extension":"bfnaelmomeimhlpmgjnjophhpkkoljpa","global":false},"mac:Command+E":{"command_name":"toggle-side-panel","extension":"fcoeoabgfenejglbffodgkkbkcdhcgfn","global":false},"mac:Command+Shift+K":{"command_name":"_execute_action","extension":"knheggckgoiihginacbkhaalnibhilkk","global":false},"mac:Command+Shift+L":{"command_name":"lock","extension":"aeblfdkhhhdcdjpifhhbdiojplfjncoa","global":false},"mac:Command+Shift+X":{"command_name":"_execute_action","extension":"aeblfdkhhhdcdjpifhhbdiojplfjncoa","global":false},"windows:Alt+A":{"command_name":"autofillform","extension":"appojfilknpkghkebigcdkmopdfcjhim","global":false},"windows:Alt+G":{"command_name":"generate","extension":"appojfilknpkghkebigcdkmopdfcjhim","global":false},"windows:Alt+P":{"command_name":"passwordstatewebsite","extension":"appojfilknpkghkebigcdkmopdfcjhim","global":false},"windows:Alt+Shift+M":{"command_name":"_execute_browser_action","extension":"nkbihfbeogaeaoehlefnkodbefgpgknn","global":false},"windows:Alt+T":{"command_name":"enableautofill","extension":"appojfilknpkghkebigcdkmopdfcjhim","global":false},"windows:Ctrl+B":{"command_name":"_execute_action","extension":"lbfdjdlcfchopmahhmdigbanhilfjfek","global":false}},"pinned_extensions":["nckgahadagoaajjgafhacjanaoiihapd","appojfilknpkghkebigcdkmopdfcjhim","cpodebcggidjigndghagpkepglfbhali","edhffjmclaeaibfpmifpjajgkpmnlmgm","cljceoobbmlacgcijeogaeflnkijfbdm","haijifigpgpndcnbbjooffflaceedhdp","pdbopgaddendbobnooalcpakbhnljfjm","lfkjgllfhhebhindbjeenbikdebolboh","jjdofdcmgnhhkipafnbojiejplegeaab","fimfamikepjgchehkohedilpdigcpkoa","knheggckgoiihginacbkhaalnibhilkk","kdkbnkiiimomdbidfhlcdgdplmejdgip","meimoidfecamngeoanhnpdjjdcefoldn","opafjjlpbiaicbbgifbejoochmmeikep","cemcgcfjlhmjmccmlnpfajangkjpknli","npkjkjmjbcmmoopfpklachepijldplcj","ckgimgompljaacjgongnjnnmgflljibg","fgacdjnoljjfikkadhogeofgjoglooma","odcnpipkhjegpefkfplmedhmkmmhmoko","fcoeoabgfenejglbffodgkkbkcdhcgfn","nkbihfbeogaeaoehlefnkodbefgpgknn","bfnaelmomeimhlpmgjnjophhpkkoljpa","ghbmnnjooekpmoecnnnilnnbdlolhkhi","lmjegmlicamnimmfhcmpkclmigmmcbeh"]},"hats":{"survey_metadata":{"any_last_survey_started_time":"13347167611497267","permissions-prompt0":{"last_major_version":120,"last_survey_check_time":"13347167608412568","last_survey_started_time":"13347167611497264"},"whats-new":{"last_survey_check_time":"13382658738311640"}}},"https_only_mode_enabled":true,"intl":{"accept_languages":"en-US","selected_languages":"en-US"},"net":{"easter_egg_high_score":3203,"network_prediction_options":3},"ntp":{"custom_background_dict":{"attribution_action_url":"https://www.google.com/maps/@30.63694,34.961615,15z/data=!3m1!1e3","attribution_line_1":"Be'er Sheva, Israel","attribution_line_2":"©2014 Google Earth, Maxar Technologies","background_main_color":-8024956,"background_url":"https://lh5.googleusercontent.com/proxy/wrRxcKZ_TcFyuVZR1DwoGtkOo-1RMCldFWc-GVNj19Co-ZTTL5syezbt6BtRo0QcUXyeg3dwtUrImf6rplfw_QtkhhAVpHYTlx2ZpeQobSH8=w3840-h2160-p-k-no-nd-mv","collection_id":"satellite_for_NTP","refresh_timestamp":1771291874,"resume_token":"CZdByxkGRQMACfMH/Wm3lPL/CXRt80bvLwUACQfLjqKMWhQACU7I15F24u//CdVHiPh1pOP/CTqYs1pGAwYACcnGf34DqAAACc2q1mD7IOv/CQmhxQOWchUACdOFkAmyygQACa/uyo2PcfD/CXCu4MLGRw8ACVLEzQtN3er/Caewj2ZZlhYACebYM5TxiwMACSfPWpUqCQ0ACZTzlFqibRsA"}},"omnibox":{"keyword_space_triggering_enabled":true},"price_tracking":{"email_notifications_enabled":true},"profile":{"content_settings":{"exceptions":{"anti_abuse":{},"automatic_downloads":{"https://help.salesforce.com:443,*":{"last_modified":"13403414714472183","setting":1},"https://jobhire.ai:443,*":{"last_modified":"13413953393540475","setting":1},"https://www.tiktok.com:443,*":{"last_modified":"13360820554277532","setting":1}},"cookies":{"https://[*.]getresponse.com:443,*":{"last_modified":"13347090814749652","setting":4},"https://[*.]play.vidyard.com:443,*":{"expiration":"0","last_modified":"13308728831283461","model":0,"setting":4}},"images":{},"javascript":{},"local_fonts":{"chrome-extension://ffppmilmeaekegkpckebkeahjgmhggpj/,*":{"last_modified":"13377252850333569","setting":1}},"popups":{"file:///Users/garvey/Desktop/safari.ext/ext/dist/popup.html,*":{"last_modified":"13385984750936425","setting":1},"http://localhost:55859,*":{"last_modified":"13414005096167388","setting":1},"http://localhost:9005,*":{"last_modified":"13376652597585790","setting":1},"https://accounts.google.com:443,*":{"last_modified":"13413065374781332","setting":1},"https://ads.tiktok.com:443,*":{"last_modified":"13363929972297488","setting":1},"https://aistudio.google.com:443,*":{"last_modified":"13405984963527328","setting":1},"https://business.tiktok.com:443,*":{"last_modified":"13363929240927549","setting":1},"https://chrome,*":{"last_modified":"13385978061308784","setting":1},"https://console.cloud.google.com:443,*":{"last_modified":"13404630530080386","setting":1},"https://crypto.link.com:443,*":{"last_modified":"13415577376342948","setting":1},"https://dashboard.magic.link:443,*":{"last_modified":"13415053107365763","setting":1},"https://flow.idp.hashicorp.com:443,*":{"last_modified":"13414755029807617","setting":1},"https://github.com:443,*":{"last_modified":"13402733575660833","setting":1},"https://huggingface.co:443,*":{"last_modified":"13415615658434242","setting":1},"https://same.new:443,*":{"last_modified":"13403849802110180","setting":1},"https://smithery.ai:443,*":{"last_modified":"13413858007409241","setting":1},"https://ssh.cloud.google.com:443,*":{"last_modified":"13405127029983728","setting":1},"https://t.me:443,*":{"last_modified":"13414035537833837","setting":1},"https://teams.microsoft.com,*":{"expiration":"0","last_modified":"13266604664476063","model":0,"setting":1},"https://twitter.com:443,*":{"last_modified":"13358583503448145","setting":1},"https://www.notion.so:443,*":{"last_modified":"13406892532222742","setting":1},"https://www.pinterest.com:443,*":{"last_modified":"13359355819114436","setting":1},"https://www.taicloud.net:443,*":{"last_modified":"13409957769835230","setting":1}},"tracking_protection":{},"window_placement":{"https://teams.microsoft.com:443,*":{"last_modified":"13412980800818242","last_visit":"13412649600000000","setting":1}}}},"cookie_controls_mode":2,"was_auto_sign_in_first_run_experience_shown":true},"promos":{"ios_password_impressions_counter":1,"ios_password_last_impression_timestamp":"13351908876460053","ios_password_opt_out":true},"safebrowsing":{"aesb_update_time_windows_epoch_micros":"13352596226967094","enabled":true},"settings":{"a11y":{"read_anything":{"color_info":0,"font_name":"Lexend Deca","font_scale":0.5,"highlight_granularity":4,"languages_enabled":["en-us"],"letter_spacing":2,"line_spacing":3,"links_enabled":true,"speech_rate":4.0}}},"sync":{"ai_subscription_tier":2,"demographics":{"birth_year":1995,"gender":1},"glic_rollout_eligibility":true},"toolbar":{"pinned_actions":["kActionShowChromeLabs","kActionShowPasswordsBubbleOrPage","kActionSidePanelShowLensOverlayResults","kActionDevTools","kActionCopyUrl","kActionShowDownloads","kActionTabSearch","kActionSidePanelShowReadingList","kActionSidePanelShowBookmarks","kActionSidePanelShowReadAnything","kActionQrCodeGenerator"],"pinned_cast_migration_complete":true,"pinned_chrome_labs_migration_complete":true,"pinned_search_companion_migration_complete":true},"translate_accepted_count":{"es":1,"fr":3,"pl":0,"ru":1,"und":0,"zh-CN":1},"translate_denied_count_for_language":{"es":0,"fr":0,"pl":1,"ru":0,"und":1,"zh-CN":0},"translate_force_trigger_on_english_count_for_backoff_1":-1,"translate_recent_target":"en","translate_site_blocklist_with_time":{"grok.com":"13413321472412740","www.benefits.ml.com":"13343410217050035"}},"ack_existing_ntp_extensions":true,"aim_eligibility_service":{"aim_eligibility_response":"CAEQARgBIAAwATrSAgo4CgIEARICAQIaBQgEEgEBGgIIASIECAEQCiIECAIQCioCAQIyBggBIAEoATIJCAISAgQJGgEBOAoiFggBEgxVcGxvYWQgaW1hZ2UaBAgBEAoiFQgCEgtVcGxvYWQgZmlsZRoECAIQCipACAQaDUNyZWF0ZSBJbWFnZXMiBkltYWdlcyoTRGVzY3JpYmUgeW91ciBpbWFnZTIFCAQSAQE6CQoEaW1nbhIBMSo+CAEQARoLRGVlcCBTZWFyY2giC0RlZXAgU2VhcmNoKhFSZXNlYXJjaCBhbnl0aGluZzICCAE6BwoCZHISATEyGwgBEgRGYXN0IgYIASABKAEqCQoDdWRtEgI1MDIeCAISA1BybyIJCAISAgQJGgEBKgoKA25lbRIDMTQzOgcKBVRvb2xzQhEKD0dlbWluaSAzIG1vZGVsc0oMQXNrIGFueXRoaW5nQg0KCQoDdWRtEgI1MBABQg4KCgoDbmVtEgMxNDMQAg=="},"alternate_error_pages":{"backup":true},"apps":{"shortcuts_arch":"arm64","shortcuts_version":8},"autocomplete":{"retention_policy_last_version":144},"autofill":{"last_version_deduped":144,"metadata_upload_events":{"086":1},"ran_extra_deduplication":true,"secondary_form_signature_upload_events":{"321":1},"upload_encoding_seed":"A792D93F3382ECCC39838A26F4D1C00E","upload_events":{"086":2},"upload_events_last_reset_timestamp":"13415694769241663"},"bookmark":{"storage_computation_last_update":"13415657437985396"},"browser":{"theme":{"color_scheme2":0,"color_variant2":1,"saved_local_theme":"CAAQAEgB","user_color2":-8024956},"window_placement":{"bottom":982,"left":0,"maximized":false,"right":1201,"top":76,"work_area_bottom":982,"work_area_left":0,"work_area_right":1512,"work_area_top":33}},"cached_image_fetcher_last_startup_eviction_time":"13415657492367508","commerce_daily_metrics_last_update_time":"13415657437986218","countryid_at_install":21843,"default_apps_install_state":3,"domain_diversity":{"last_reporting_timestamp":"13415657438158164","last_reporting_timestamp_v4":"13415657438158172"},"download_bubble":{"partial_view_impressions":1},"dual_layer_user_pref_store":{"user_selected_sync_types":["preferences"]},"enterprise_profile_guid":"36b5bc97-9af0-4f27-8db9-71eff3e24a49","extensions":{"alerts":{"initialized":true},"chrome_url_overrides":{},"cws_info_timestamp":"13415658037033360","install_signature":{"expire_date":"2026-05-10","ids":["ghbmnnjooekpmoecnnnilnnbdlolhkhi"],"invalid_ids":[],"salt":"xWdN2cIeHmDN51zgPrzsEzJZZZsmTC6ElE8poLGF7mM=","signature":"NN4BW2YAhKfIHRPXWIj7jA4QgMGy81mquPUNwYwJyDn/cqaPekwaU9XuTCpY9un2ebcUHDfsWgbcQjKtcvqoHGvbjEHAMLOIEVme/UNk5bgwNQGNZX4qg3+Rr/i3WKAQbwRLchd/sRSJdVZ+IUZ+ceyPsthJwYC92iLkP+GGl8rhkPYk4TJo/JVLJjQBgIdGU1gv5CigU9AkxbVjrAQU0Sf8k7PUx+VsVAH5rC6R4BofiIbZSaiAnrnTZg2cT3wshFDmBak0/oHTcylkHHxvMQ3qKfuLWco/QSIpnGVdftnKx2PbyCA0q1nj/Rcre7u2ig3kIa7DI09MMDe8Uqp3IA==","signature_format_version":2,"timestamp":"13415657477915390"},"last_chrome_version":"144.0.7559.133","theme":{"id":"user_color_theme_id"}},"gaia_cookie":{"changed_time":1771183881.290039,"hash":"9BHrmKcyae2GUG+MQ/Ind4o2VHc=","last_list_accounts_binary_data":"CrMBCAESDUhheWRlbiBHYXJ2ZXkaEmdhcnZleWh0QGdtYWlsLmNvbSJiaHR0cHM6Ly9saDMuZ29vZ2xldXNlcmNvbnRlbnQuY29tLy1BekJQcWFQa1RWSS9BQUFBQUFBQUFBSS9BQUFBQUFBQUFBQS9UNUJSYkZtamZnQS9zNDgtYy9waG90by5qcGcoATABOABIAVIVMTAwODE5MTI1NzQ1NzAwMTAzMjIyeAGCAQZIYXlkZW4=","periodic_report_time_2":"13415657436848220"},"gcm":{"product_category_for_subtypes":"com.chrome.macosx","push_messaging_unsubscribed_entries_list":[]},"google":{"services":{"signin":{"LAST_SIGNIN_ACCESS_POINT":{"time":"2026-02-15T19:31:29.466Z","value":"54"},"REFRESH_TOKEN_RECEIVED":{"time":"2026-02-15T19:31:21.343Z","value":"Successful (100819125745700103222)"}},"signin_scoped_device_id":"841e5a84-1191-4bcc-a9ee-6b2b4560779c"}},"history_clusters":{"all_cache":{"all_keywords":{},"all_timestamp":"13415695338920834"},"short_cache":{"short_keywords":{},"short_timestamp":"13415696116230013"}},"https_only_mode_auto_enabled":false,"https_upgrade_navigations":{"2026-02-16":70},"in_product_help":{"recent_session_enabled_time":"13415657436897472","recent_session_start_times":["13415692237315473","13415657436897472"],"session_last_active_time":"13415696047540048","session_number":3,"session_start_time":"13415692237315473"},"intl":{"accept_languages":"en-US","selected_languages":"en-US,en"},"invalidation":{"per_sender_registered_for_invalidation":{"1013309121859":{},"947318989803":{}}},"language_model_counters":{"en":62},"media":{"device_id_salt":"3202BD84C6C40CA9B527BC7720C155AE","engagement":{"schema_version":5}},"media_router":{"receiver_id_hash_token":"ihFf92DfGOxXE88eUMDPF7/X/nIjpT6TZvSXgVfClnMYZ7BQFnJav5zQ6DPSL1coHJno4MANGLShYClajalA3g=="},"migrated_user_scripts_toggle":true,"ntp":{"compose_button":{"shown_count":2},"custom_background_dict2":{"attribution_action_url":"https://www.google.com/maps/@30.63694,34.961615,15z/data=!3m1!1e3","attribution_line_1":"Be'er Sheva, Israel","attribution_line_2":"©2014 Google Earth, Maxar Technologies","background_main_color":-8024956,"background_url":"https://lh5.googleusercontent.com/proxy/wrRxcKZ_TcFyuVZR1DwoGtkOo-1RMCldFWc-GVNj19Co-ZTTL5syezbt6BtRo0QcUXyeg3dwtUrImf6rplfw_QtkhhAVpHYTlx2ZpeQobSH8=w3840-h2160-p-k-no-nd-mv","collection_id":"satellite_for_NTP","refresh_timestamp":1771291874,"resume_token":"CZdByxkGRQMACfMH/Wm3lPL/CXRt80bvLwUACQfLjqKMWhQACU7I15F24u//CdVHiPh1pOP/CTqYs1pGAwYACcnGf34DqAAACc2q1mD7IOv/CQmhxQOWchUACdOFkAmyygQACa/uyo2PcfD/CXCu4MLGRw8ACVLEzQtN3er/Caewj2ZZlhYACebYM5TxiwMACSfPWpUqCQ0ACZTzlFqibRsA"},"custom_background_local_to_device":false,"num_personal_suggestions":0},"optimization_guide":{"hintsfetcher":{"hosts_successfully_fetched":{}},"previous_optimization_types_with_filter":{"A2A_MERCHANT_ALLOWLIST":true,"AMERICAN_EXPRESS_CREDIT_CARD_FLIGHT_BENEFITS":true,"AMERICAN_EXPRESS_CREDIT_CARD_SUBSCRIPTION_BENEFITS":true,"AUTOFILL_ABLATION_SITES_LIST1":true,"AUTOFILL_ABLATION_SITES_LIST2":true,"AUTOFILL_ABLATION_SITES_LIST3":true,"AUTOFILL_ABLATION_SITES_LIST4":true,"AUTOFILL_ABLATION_SITES_LIST5":true,"AUTOFILL_ACTOR_IFRAME_ORIGIN_ALLOWLIST":true,"BMO_CREDIT_CARD_AIR_MILES_PARTNER_BENEFITS":true,"BMO_CREDIT_CARD_ALCOHOL_STORE_BENEFITS":true,"BMO_CREDIT_CARD_DINING_BENEFITS":true,"BMO_CREDIT_CARD_DRUGSTORE_BENEFITS":true,"BMO_CREDIT_CARD_ENTERTAINMENT_BENEFITS":true,"BMO_CREDIT_CARD_GROCERY_BENEFITS":true,"BMO_CREDIT_CARD_OFFICE_SUPPLY_BENEFITS":true,"BMO_CREDIT_CARD_RECURRING_BILL_BENEFITS":true,"BMO_CREDIT_CARD_TRANSIT_BENEFITS":true,"BMO_CREDIT_CARD_TRAVEL_BENEFITS":true,"BMO_CREDIT_CARD_WHOLESALE_CLUB_BENEFITS":true,"BUY_NOW_PAY_LATER_ALLOWLIST_AFFIRM":true,"BUY_NOW_PAY_LATER_ALLOWLIST_AFFIRM_ANDROID":true,"BUY_NOW_PAY_LATER_ALLOWLIST_KLARNA":true,"BUY_NOW_PAY_LATER_ALLOWLIST_KLARNA_ANDROID":true,"BUY_NOW_PAY_LATER_ALLOWLIST_ZIP":true,"BUY_NOW_PAY_LATER_ALLOWLIST_ZIP_ANDROID":true,"BUY_NOW_PAY_LATER_BLOCKLIST_AFFIRM":true,"BUY_NOW_PAY_LATER_BLOCKLIST_KLARNA":true,"BUY_NOW_PAY_LATER_BLOCKLIST_ZIP":true,"CAPITAL_ONE_CREDIT_CARD_BENEFITS_BLOCKED":true,"CAPITAL_ONE_CREDIT_CARD_DINING_BENEFITS":true,"CAPITAL_ONE_CREDIT_CARD_ENTERTAINMENT_BENEFITS":true,"CAPITAL_ONE_CREDIT_CARD_GROCERY_BENEFITS":true,"CAPITAL_ONE_CREDIT_CARD_STREAMING_BENEFITS":true,"DIGITAL_CREDENTIALS_LOW_FRICTION":true,"EWALLET_MERCHANT_ALLOWLIST":true,"GLIC_ACTION_PAGE_BLOCK":true,"HISTORY_CLUSTERS":true,"HISTORY_EMBEDDINGS":true,"IBAN_AUTOFILL_BLOCKED":true,"LENS_OVERLAY_EDU_ACTION_CHIP_ALLOWLIST":true,"LENS_OVERLAY_EDU_ACTION_CHIP_BLOCKLIST":true,"NTP_NEXT_DEEP_DIVE_ACTION_CHIP_ALLOWLIST":true,"NTP_NEXT_DEEP_DIVE_ACTION_CHIP_BLOCKLIST":true,"PIX_MERCHANT_ORIGINS_ALLOWLIST":true,"PIX_PAYMENT_MERCHANT_ALLOWLIST":true,"SHARED_CREDIT_CARD_DINING_BENEFITS":true,"SHARED_CREDIT_CARD_ENTERTAINMENT_BENEFITS":true,"SHARED_CREDIT_CARD_FLAT_RATE_BENEFITS_BLOCKLIST":true,"SHARED_CREDIT_CARD_FLIGHT_BENEFITS":true,"SHARED_CREDIT_CARD_GROCERY_BENEFITS":true,"SHARED_CREDIT_CARD_STREAMING_BENEFITS":true,"SHARED_CREDIT_CARD_SUBSCRIPTION_BENEFITS":true,"SHOPPING_PAGE_PREDICTOR":true,"TEXT_CLASSIFIER_ENTITY_DETECTION":true,"VCN_MERCHANT_OPT_OUT_DISCOVER":true,"VCN_MERCHANT_OPT_OUT_MASTERCARD":true,"VCN_MERCHANT_OPT_OUT_VISA":true,"WALLETABLE_PASS_DETECTION_ALLOWLIST":true,"WALLETABLE_PASS_DETECTION_BOARDING_PASS_ALLOWLIST":true,"WALLETABLE_PASS_DETECTION_LOYALTY_ALLOWLIST":true},"previously_registered_optimization_types":{"ABOUT_THIS_SITE":true,"BUY_NOW_PAY_LATER_ALLOWLIST_AFFIRM":true,"BUY_NOW_PAY_LATER_ALLOWLIST_KLARNA":true,"BUY_NOW_PAY_LATER_ALLOWLIST_ZIP":true,"COMPOSE":true,"DIGITAL_CREDENTIALS_LOW_FRICTION":true,"GLIC_ACTION_PAGE_BLOCK":true,"HISTORY_CLUSTERS":true,"LOADING_PREDICTOR":true,"MERCHANT_TRUST_SIGNALS_V2":true,"PAGE_ENTITIES":true,"PRICE_INSIGHTS":true,"PRICE_TRACKING":true,"SALIENT_IMAGE":true,"SAVED_TAB_GROUP":true,"SHOPPING_DISCOUNTS":true,"SHOPPING_PAGE_TYPES":true,"V8_COMPILE_HINTS":true}},"password_manager":{"account_store_backup_password_cleaning_last_timestamp":"13415657497020860","account_store_migrated_to_os_crypt_async":true,"profile_store_backup_password_cleaning_last_timestamp":"13415657496850940","profile_store_migrated_to_os_crypt_async":true,"relaunch_chrome_bubble_dismissed_counter":0},"privacy_sandbox":{"first_party_sets_data_access_allowed_initialized":true},"profile":{"avatar_index":26,"background_password_check":{"check_fri_weight":9,"check_interval":"2592000000000","check_mon_weight":6,"check_sat_weight":6,"check_sun_weight":6,"check_thu_weight":9,"check_tue_weight":9,"check_wed_weight":9,"next_check_time":"13418270738421164"},"content_settings":{"exceptions":{"3pcd_heuristics_grants":{"https://[*.]google.com,https://[*.]google.com":{"expiration":"13418285388796320","last_modified":"13415693388796325","lifetime":"2592000000000","setting":1}},"abusive_notification_permissions":{},"access_to_get_all_screens_media_in_session":{},"anti_abuse":{},"app_banner":{"https://cloud.google.com:443,*":{"last_modified":"13415693486128245","setting":{"https://cloud.google.com/":{"couldShowBannerEvents":1.3415693486128238e+16,"next_install_text_animation":{"delay":"86400000000","last_shown":"13415693486127887"}}}},"https://github.com:443,*":{"last_modified":"13415695327809854","setting":{"https://github.com/":{"couldShowBannerEvents":1.341569532780985e+16,"next_install_text_animation":{"delay":"86400000000","last_shown":"13415695327809538"}}}},"https://glama.ai:443,*":{"last_modified":"13415695408696971","setting":{"https://glama.ai/":{"couldShowBannerEvents":1.3415695408696968e+16,"next_install_text_animation":{"delay":"86400000000","last_shown":"13415695408696660"}}}},"https://knowledge.workspace.google.com:443,*":{"last_modified":"13415693633033867","setting":{"https://knowledge.workspace.google.com/":{"couldShowBannerEvents":1.3415693633033864e+16,"next_install_text_animation":{"delay":"86400000000","last_shown":"13415693633033807"}}}},"https://notebooklm.google.com:443,*":{"last_modified":"13415657482845656","setting":{"https://notebooklm.google.com/":{"couldShowBannerEvents":1.341565748284565e+16,"next_install_text_animation":{"delay":"86400000000","last_shown":"13415657482844569"}}}},"https://one.google.com:443,*":{"last_modified":"13415693362718967","setting":{"https://one.google.com/":{"next_install_text_animation":{"delay":"86400000000","last_shown":"13415693362718723"}},"https://one.google.com/?lfhs=2":{"couldShowBannerEvents":1.341569336271896e+16}}}},"ar":{},"are_suspicious_notifications_allowlisted_by_user":{},"auto_picture_in_picture":{},"auto_select_certificate":{},"automatic_downloads":{},"automatic_fullscreen":{},"autoplay":{},"background_sync":{},"bluetooth_chooser_data":{},"bluetooth_guard":{},"bluetooth_scanning":{},"camera_pan_tilt_zoom":{},"captured_surface_control":{},"client_hints":{"https://accounts.google.com:443,*":{"last_modified":"13415657896055200","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://accounts.youtube.com:443,*":{"last_modified":"13415657481674018","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://cloud.google.com:443,*":{"last_modified":"13415693803668373","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://glama.ai:443,*":{"last_modified":"13415695437294392","setting":{"client_hints":[20,21,22]}},"https://mail.google.com:443,*":{"last_modified":"13415657896116034","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://notebooklm.google.com:443,*":{"last_modified":"13415696117291939","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://one.google.com:443,*":{"last_modified":"13415693361433409","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://www.google.com:443,*":{"last_modified":"13415696019822496","setting":{"client_hints":[4,5,9,10,11,13,14,15,16,23,25,29]}}},"clipboard":{},"controlled_frame":{},"cookie_controls_metadata":{"https://[*.]1edtech.org,*":{"last_modified":"13415693638505894","setting":{}},"https://[*.]appsheet.com,*":{"last_modified":"13415693658205432","setting":{}},"https://[*.]askjeremy.ai,*":{"last_modified":"13415695346106728","setting":{}},"https://[*.]debian.org,*":{"last_modified":"13415696059482053","setting":{}},"https://[*.]discord.com,*":{"last_modified":"13415694200071826","setting":{}},"https://[*.]generic-mapping-tools.org,*":{"last_modified":"13415696009457737","setting":{}},"https://[*.]github.com,*":{"last_modified":"13415695990762894","setting":{}},"https://[*.]glama.ai,*":{"last_modified":"13415695437351639","setting":{}},"https://[*.]google.com,*":{"last_modified":"13415696117298075","setting":{}},"https://[*.]zenodo.org,*":{"last_modified":"13415695951662994","setting":{}}},"cookies":{},"direct_sockets":{},"direct_sockets_private_network_access":{},"display_media_system_audio":{},"disruptive_notification_permissions":{},"durable_storage":{},"fedcm_idp_registration":{},"fedcm_idp_signin":{"https://accounts.google.com:443,*":{"last_modified":"13415692237765380","setting":{"chosen-objects":[{"idp-origin":"https://accounts.google.com","idp-signin-status":true}]}}},"fedcm_share":{},"file_system_access_chooser_data":{},"file_system_access_extended_permission":{},"file_system_access_restore_permission":{},"file_system_last_picked_directory":{},"file_system_read_guard":{},"file_system_write_guard":{},"formfill_metadata":{},"geolocation":{},"geolocation_with_options":{},"hand_tracking":{},"hid_chooser_data":{},"hid_guard":{},"http_allowed":{},"https_enforced":{},"idle_detection":{},"images":{},"important_site_info":{},"initialized_translations":{},"intent_picker_auto_display":{},"javascript":{},"javascript_jit":{},"javascript_optimizer":{},"keyboard_lock":{},"legacy_cookie_access":{},"legacy_cookie_scope":{},"local_fonts":{},"local_network_access":{},"media_engagement":{"https://accounts.google.com:443,*":{"expiration":"13423433481803566","last_modified":"13415657481803568","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://github.com:443,*":{"expiration":"13423471407699594","last_modified":"13415695407699595","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://notebooklm.google.com:443,*":{"expiration":"13423438290847561","last_modified":"13415662290847563","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://support.google.com:443,*":{"expiration":"13423469849764190","last_modified":"13415693849764194","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://www.generic-mapping-tools.org:443,*":{"expiration":"13423471990764330","last_modified":"13415695990764334","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://www.google.com:443,*":{"expiration":"13423472059482549","last_modified":"13415696059482550","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":2}}},"media_stream_camera":{},"media_stream_mic":{},"midi_sysex":{},"mixed_script":{},"nfc_devices":{},"notification_interactions":{},"notification_permission_review":{},"notifications":{},"ondevice_languages_downloaded":{},"password_protection":{},"payment_handler":{},"permission_actions_history":{},"permission_autoblocking_data":{},"permission_autorevocation_data":{},"pointer_lock":{},"popups":{},"protocol_handler":{},"reduced_accept_language":{},"safe_browsing_url_check_data":{},"sensors":{},"serial_chooser_data":{},"serial_guard":{},"site_engagement":{"chrome://newtab/,*":{"last_modified":"13415696115326822","setting":{"lastEngagementTime":1.3415696115326808e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":4.5,"rawScore":4.5}},"https://accounts.google.com:443,*":{"last_modified":"13415657461279050","setting":{"lastEngagementTime":1.3415657461279036e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":5.1,"rawScore":5.1}},"https://discord.com:443,*":{"last_modified":"13415695326795069","setting":{"lastEngagementTime":1.3415695326795048e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":2.7,"rawScore":17.700000000000003}},"https://github.com:443,*":{"last_modified":"13415696004323617","setting":{"lastEngagementTime":1.3415696004323586e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":3.9000000000000004,"rawScore":3.9000000000000004}},"https://glama.ai:443,*":{"last_modified":"13415695776071721","setting":{"lastEngagementTime":1.3415695776071686e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":15.0,"rawScore":15.0}},"https://notebooklm.google.com:443,*":{"last_modified":"13415696129120000","setting":{"lastEngagementTime":1.341569612911994e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":7.199999999999999,"rawScore":22.068791331225608}},"https://support.google.com:443,*":{"last_modified":"13415694172693336","setting":{"lastEngagementTime":1.3415694172693318e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":5.699999999999999,"rawScore":5.699999999999999}},"https://workspace.google.com:443,*":{"last_modified":"13415693863433919","setting":{"lastEngagementTime":1.3415693863433902e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":15.0,"rawScore":15.0}},"https://www.generic-mapping-tools.org:443,*":{"last_modified":"13415695986795967","setting":{"lastEngagementTime":1.341569598679594e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":2.7,"rawScore":2.7}},"https://www.google.com:443,*":{"last_modified":"13415696059198529","setting":{"lastEngagementTime":1.3415696059198488e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":4.8,"rawScore":4.8}},"https://zenodo.org:443,*":{"last_modified":"13415695942470804","setting":{"lastEngagementTime":1.3415695942470756e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":6.299999999999999,"rawScore":6.299999999999999}}},"sound":{},"speaker_selection":{},"ssl_cert_decisions":{},"storage_access":{},"storage_access_header_origin_trial":{},"subresource_filter":{},"subresource_filter_data":{},"suspicious_notification_ids":{},"suspicious_notification_show_original":{},"third_party_storage_partitioning":{},"top_level_storage_access":{},"tracking_protection":{},"unused_site_permissions":{},"usb_chooser_data":{},"usb_guard":{},"vr":{},"web_app_installation":{},"webid_api":{},"webid_auto_reauthn":{},"window_placement":{}},"pref_version":1},"created_by_version":"144.0.7559.133","creation_time":"13415657436804698","exit_type":"Crashed","family_member_role":"family_manager","last_engagement_time":"13415696129119940","last_time_obsolete_http_credentials_removed":1771183896.858589,"last_time_password_store_metrics_reported":1771183866.84963,"managed":{"custodian_email":"garveyht@gmail.com","custodian_name":"Hayden Garvey","custodian_obfuscated_gaia_id":"100819125745700103222","custodian_profile_image_url":"https://lh3.googleusercontent.com/a/ACg8ocJ02ukvqC4H8BHk_hOE011Fa_SyiZju8cFASQRNAE1e35de1uHd-w","custodian_profile_url":"","locally_parent_approved_extensions":{},"locally_parent_approved_extensions_migration_state":1},"managed_user_id":"","name":"Your Chrome","password_hash_data_list":[],"were_old_google_logins_removed":true},"safebrowsing":{"advanced_protection_last_refresh":"13415692237548495","aesb_shown_notification":true,"aesb_sync_flow_last_user_interaction_state":1,"aesb_sync_flow_retry_state":3,"aesb_sync_flow_start_timestamp":"13415657490177337","event_timestamps":{},"hash_real_time_ohttp_expiration_time":"13415916638313484","hash_real_time_ohttp_key":"+wAgiPOpgmDO86Q+kGbEjaSrKbinrf14EtWyjJOtFriMFXEABAABAAI=","hash_real_time_ohttp_key_fetch_url":"https://safebrowsingohttpgateway.googleapis.com/v1/ohttp/hpkekeyconfig","metrics_last_log_time":"13415657436","scout_reporting_enabled_when_deprecated":false},"safety_hub":{"unused_site_permissions_revocation":{"migration_completed":true}},"saved_tab_groups":{"did_enable_shared_tab_groups_in_last_session":false,"specifics_to_data_migration":true},"segmentation_platform":{"client_result_prefs":"ClIKDXNob3BwaW5nX3VzZXISQQo2DQAAAAAQtv/TwoKv6hcaJAocChoNAAAAPxIMU2hvcHBpbmdVc2VyGgVPdGhlchIEEAIYBCADEN3/08KCr+oX","device_switcher_util":{"result":{"labels":["IosPhoneChrome","Desktop"]}},"last_db_compaction_time":"13415587199000000","uma_in_sql_start_time":"13415657436882411"},"sessions":{"event_log":[{"crashed":false,"time":"13415657436882042","type":0},{"did_schedule_command":true,"first_session_service":true,"tab_count":1,"time":"13415662290834343","type":2,"window_count":1},{"crashed":false,"time":"13415692237279425","type":0}],"session_data_status":1},"settings":{"force_google_safesearch":false},"sharing":{"fcm_registration":{"registration_timestamp":"13415692247276767"},"local_sharing_info":{"enabled_features":[4,8],"sender_id_target_info":{"device_auth_secret":"zPcGvyhAfwzxhnf7BVrU5A==","device_fcm_token":"fdYz2sIib5o:APA91bHwsaZ0dDq7KM92ZDd4-YG-kG3gWJfouIrN3etSgWvwaYqquo9r_65ryv2UGDUnzdWIQSyxjHyoFUoyLSKqmtxcoGHARYze9Ufe0Rroq6aMde3xUYA","device_p256dh":"BC/iwDLqXmOgpW4PaoCHDZmfb2z+bU8KXGQotBUNql8mOjXMLTTLcZSp6OW8zRN4VaTPhOmfXYD9L6aBcm7p7KM="}}},"should_read_incoming_syncing_theme_prefs":false,"signin":{"accounts_metadata_dict":{"100819125745700103222":{"ChromeSigninInterceptionUserChoice":2}},"allowed":true,"cookie_clear_on_exit_migration_notice_complete":true,"explicit_browser_signin":true,"prefs_themes_search_engines_account_storage_enabled":true,"signin_with_explicit_browser_signin_on":true},"site_search_settings":{"overridden_keywords":[]},"spellcheck":{"dictionaries":["en-US"]},"sync":{"cached_passphrase_type":2,"cached_persistent_auth_error":false,"cached_trusted_vault_auto_upgrade_experiment_group":"","data_type_status_for_sync_to_signin":{"account_setting":false,"ai_thread":false,"app_list":false,"app_settings":false,"apps":false,"arc_package":false,"autofill":false,"autofill_profiles":false,"autofill_valuable":false,"autofill_valuable_metadata":false,"autofill_wallet":false,"autofill_wallet_credential":false,"autofill_wallet_metadata":false,"autofill_wallet_offer":false,"autofill_wallet_usage":false,"bookmarks":false,"collaboration_group":false,"contact_info":false,"contextual_task":false,"cookies":false,"device_info":false,"dictionary":false,"extension_settings":false,"extensions":false,"history":false,"history_delete_directives":false,"incoming_password_sharing_invitation":false,"managed_user_settings":false,"nigori":false,"os_preferences":false,"os_priority_preferences":false,"outgoing_password_sharing_invitation":false,"passwords":false,"plus_address":false,"plus_address_setting":false,"preferences":false,"printers":false,"printers_authorization_servers":false,"priority_preferences":false,"product_comparison":false,"reading_list":false,"saved_tab_group":false,"search_engines":false,"security_events":false,"send_tab_to_self":false,"sessions":false,"shared_comment":false,"shared_tab_group_account_data":false,"shared_tab_group_data":false,"sharing_message":false,"themes":false,"user_consent":false,"user_events":false,"web_apps":false,"webapks":false,"webauthn_credential":false,"wifi_configurations":false,"workspace_desk":false},"encryption_bootstrap_token_per_account_migration_done":true,"feature_status_for_sync_to_signin":5,"gaia_id":"100819125745700103222","local_device_guids_with_timestamp":[{"cache_guid":"uKE8QSKdDFFemfHuaq+hSA==","timestamp":155274}],"transport_data_per_account":{"DmuYyJH14LWE8nAtb4x0mof3ObC3uVhW5gIgoy7X+/w=":{"sync.bag_of_chips":"Cn8SfUNocm9tZSBNQUMgMTQ0LjAuNzU1OS4xMzMgKDdkYTgyM2IxZDU5NGQxYjQ5Nzk3OTExOTAwZTAwM2VjOTZhOGMwZTctcmVmcy9icmFuY2gtaGVhZHMvNzU1OUB7IzQyNTN9KSBjaGFubmVsKHN0YWJsZSksZ3ppcChnZmUp","sync.birthday":"z00000160-b82e-f625-0000-00005a4bd2ad","sync.cache_guid":"uKE8QSKdDFFemfHuaq+hSA==","sync.last_poll_time":"13415692247794853","sync.last_synced_time":"13415695345015883","sync.short_poll_interval":"14400000000"}}},"syncing_theme_prefs_migrated_to_non_syncing":true,"toolbar":{"pinned_cast_migration_complete":true,"pinned_chrome_labs_migration_complete":true},"total_passwords_available_for_account":0,"total_passwords_available_for_profile":0,"translate_site_blacklist":[],"translate_site_blocklist_with_time":{},"updateclientdata":{"apps":{"ghbmnnjooekpmoecnnnilnnbdlolhkhi":{"cohort":"1::","cohortname":"","dlrc":6985,"installdate":6985,"pf":"18697599-c34c-4ff3-a16e-b6162f1b52e5"},"nmmhkkegccagdldgiimedpiccmgmieda":{"cohort":"1::","cohortname":"","dlrc":6985,"installdate":6985,"pf":"55da8dab-0be3-4d3f-b891-6b3dc79fc1ed"}}},"web_apps":{"daily_metrics":{"https://cloud.google.com/":{"background_duration_sec":0,"captures_links":false,"effective_display_mode":3,"foreground_duration_sec":0,"installed":false,"num_sessions":0,"promotable":true},"https://github.com/":{"background_duration_sec":0,"captures_links":false,"effective_display_mode":3,"foreground_duration_sec":0,"installed":false,"num_sessions":0,"promotable":true},"https://glama.ai/":{"background_duration_sec":0,"captures_links":false,"effective_display_mode":3,"foreground_duration_sec":0,"installed":false,"num_sessions":0,"promotable":true},"https://knowledge.workspace.google.com/":{"background_duration_sec":0,"captures_links":false,"effective_display_mode":3,"foreground_duration_sec":0,"installed":false,"num_sessions":0,"promotable":true},"https://notebooklm.google.com/":{"background_duration_sec":0,"captures_links":false,"effective_display_mode":2,"foreground_duration_sec":0,"installed":false,"num_sessions":0,"promotable":true},"https://one.google.com/?lfhs=2":{"background_duration_sec":0,"captures_links":false,"effective_display_mode":3,"foreground_duration_sec":0,"installed":false,"num_sessions":0,"promotable":true}},"daily_metrics_date":"13415695200000000","did_migrate_default_chrome_apps":["MigrateDefaultChromeAppToWebAppsGSuite","MigrateDefaultChromeAppToWebAppsNonGSuite"],"last_preinstall_synchronize_version":"144","migrated_default_apps":["aohghmighlieiainnegkcijnfilokake","aapocclcgogkmnckokdopfmhonfmgoek","felcaaldnbdncclmgdcncolpebgiejap","apdfllckaahabafndbhieahigkjlhalf","pjkljhegncpnkpknbcohdijeoejaedia","blpcfgokakmgnkcojhhkbfbldkacnbeo"],"web_app_ids":{"mdpkiolbdkhdjpekfbkbmhigcaggjagi":{"default_app_startup_update_last_ignore_time":"13415657899104231"}}},"webauthn":{"touchid":{"metadata_secret":"C5hA5MilC3Rm6wpW5z1SrR5iNMQLwsQh6/jd19uxPos="}},"zerosuggest":{"cachedresults":")]}'\n[\"\",[\"ftp mirrors¶\",\"askjeremy.ai\",\"artificial intelligence\",\"when did wii and original price of games\",\"cloudflare\",\"google web extensions\",\"Tell me about the different Qwen open source models\",\"What are the implications for chatbot regulation?\"],[\"history\",\"history\",\"history\",\"history\",\"history\",\"history\",\"\",\"\"],[],{\"google:clientdata\":{\"bpc\":false,\"tlw\":false},\"google:groupsinfo\":\"ChwIyN8CEhYKEkV4cGxvcmUgaW4gQUkgTW9kZSgX\",\"google:suggestdetail\":[{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dftp+mirrors%C2%B6\\u0026deltok\\u003dAMc44K6bQqZDNCXrijOtVgoeso3qa6SWsw\\u0026gs_ri\\u003dchrome-ext-ansg\",\"zl\":40000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003daskjeremy.ai\\u0026deltok\\u003dAMc44K5u7YTLDeD8hoUU0FBNNu8fyUpEBw\\u0026gs_ri\\u003dchrome-ext-ansg\",\"zl\":40000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dartificial+intelligence\\u0026deltok\\u003dAMc44K4lfM2apbmRWA7PTr5mH4QKFtAXEw\\u0026gs_ri\\u003dchrome-ext-ansg\",\"zl\":40000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dwhen+did+wii+and+original+price+of+games\\u0026deltok\\u003dAMc44K7HkdOj3zNJ9KjnnITPPjlLn23flg\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQARoqCih3aGVuIGRpZCB3aWkgYW5kIG9yaWdpbmFsIHByaWNlIG9mIGdhbWVzIgkKB0FJIE1vZGUyCQoDdWRtEgI1MDIJCgNhZXASAjI4Mu8CCgRtc3RrEuYCQVV0RXhmRFhsTWRhdU9DSEpLdFYtcW5iUWczWHJxZHhRaTZaNWU1ZVh2S0VnN2xiS1lrUVdXN3phX2hPVU5QeXg2ZjlZRFRTNWFBbVNGeWkyVlFCdkFXY2VlN1BsSXNJVklSeTNXQVZrX2swM0poWFlVeVdEb2VLT2dZUHFLNnhlMEU1NUlEWV84NHpfeWNFbEJmSE15SlBLbW53ano5QUZCMEZwMldDcUNmWE1aOXlaMWdmeUkyM1FMZDMtVDZTeEJDblJtZHdqcUZUWkRxLWw3V01qRjVva2VHTFFUZE1lSzVZbkY1eWJaamxSVEloaTBWV2lYc1FZMk15LVkyQUxmcFp3RmNpSnVPcHc1cmZxbEY0VnBNX1o3VTY1a3hLd05TbmpUY0xWazF2ekdBY3BCTkNrekxaaVUwc01tZk1TZUxEQ3pMUTVsaDA5WVpYRTF3RUwxQklseVFyVDFQcVpUbVVtZzIKCgVjc3VpchIBMQ\\u003d\\u003d\",\"zl\":40000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dcloudflare\\u0026delmid\\u003d/m/0h3tb9y\\u0026deltok\\u003dAMc44K55AMKS47cn2GDENZMpIlRjQIiXHA\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:entityinfo\":\"CgovbS8waDN0Yjl5Eh1JVCBzZXJ2aWNlIG1hbmFnZW1lbnQgY29tcGFueTLWBmRhdGE6aW1hZ2UvcG5nO2Jhc2U2NCxpVkJPUncwS0dnb0FBQUFOU1VoRVVnQUFBRUFBQUFCQUNBTUFBQUNkdDRIc0FBQUFoRkJNVkVYLy8vL3pnQ0Q2cmtEemZobjBrazM2clR6N3VXSHlkQUR5ZGdEeWNnRHpmUlR6ZkEveWVBRDFtRm4rOWZIOTdPTHpoQ3I1eHFuMGlUajkySy82cVMzMnFIZjd3bm4wa0VqNnF6WDd3Mzc1d0tEMW5XTDJvV3IrOHV2NzJjYjg0OVgzcllEM3M0cjBqRUQrNk5EOTM3MzZ6cmI2cGlIOHk1RDgxS1Q4ejVuN3ZXejZ0bGNLcFVEZ0FBQUJwMGxFUVZSWWhlMlUyWktDTUJCRlF3SWtrQkFXUWFJaW00cWovdi8vVFdSellJQ0o4eXJud1NxcVBKZnVUaE1BVmxaV1BnSjNmOUF3eGw3aUgvK2pwekZtdGlaQk5yT2M3RjJkNndScEx4Qk8zdk16WW10RHFPMis0YWVXOWd1RTFkdklKbndKVVo0bFJaTUJLRkQwY3pycGF4cmIvNlZ5TG4rTzB3M1VUU3piT2NXWTVyeVlLMENXNEMvNHFWV0xsTTNxY2dybGtyOGc5bGg4Tm1DKzd1RVFUcHZ6YWNxL0xGWGVReU1Bd3pDczdyOHpJcVVLU0hhc29NUUlIK09sY3NhN1B3WHl3RWJBR3FNNkR3TVNsUUJ5QVZzRHR2eE00T2xlbjk3ZUFkUUJ3T3dEWU5VTmdrY1dtOW4rQVN5V2Y3NktQZ0FhN1FMZ2hmbWhEbmtyRmZYYlFtRjBSWWl2K3Z5R0M4VGtKWWdKWVpUYXNpalBDOG95MW5YSFNmYnRDdkhiL1FGRkZkWUo4dGtkK2NxWHhqTWhsRk1veDgwSFFkQzgwemtja2lTS29qelBpNkx3dXgxMk43ZnI3bTVDbytraEk3TmRJN3VHTmpDcnJ1MW9Wa0xJS1RSek1IWmc0ZE1kQjN2U1AxV3ZVM3dHM0lHamNId3RtRXNmd2xHQXAreHJGZ0FDamdLMndFT3EyQUhZaE1ZUWNRT1JITGdhc1ErMjVvakg1TTJ3c3JLeThxbDhBNW92RzF3R3Jwb0RBQUFBQUVsRlRrU3VRbUNDOgpDbG91ZGZsYXJlSgcjYTM1NjE1Ujpnc19zc3A9ZUp6ajR0TFAxVGZJTUM1SnNxeFVZRFJnZEdEdzRrck95UzlOU2N0SkxFb0ZBRzNZQ0RvcBeKARtodHRwczovL3d3dy5jbG91ZGZsYXJlLmNvbS8\\u003d\",\"zl\":40000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dgoogle+web+extensions\\u0026deltok\\u003dAMc44K6i1EP8afzCEUb1GJ2xeZHUWcmaGg\\u0026gs_ri\\u003dchrome-ext-ansg\",\"zl\":40000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dTell+me+about+the+different+Qwen+open+source+models\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K4r_hX3YNbre5ZHbuGvG6XvdHOktw\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxo1CjNUZWxsIG1lIGFib3V0IHRoZSBkaWZmZXJlbnQgUXdlbiBvcGVuIHNvdXJjZSBtb2RlbHMyCQoDdWRtEgI1MDIJCgNhZXASAjI5\",\"zl\":45000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dWhat+are+the+implications+for+chatbot+regulation?\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K6bdYAO2ZP_AkbBYyS-L8rglNFl_g\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxozCjFXaGF0IGFyZSB0aGUgaW1wbGljYXRpb25zIGZvciBjaGF0Ym90IHJlZ3VsYXRpb24/MgkKA3VkbRICNTAyCQoDYWVwEgIyOQ\\u003d\\u003d\",\"zl\":45000}],\"google:suggesteventid\":\"6958840440045979269\",\"google:suggestrelevance\":[1250,1100,700,602,601,600,551,550],\"google:suggestsubtypes\":[[362,39],[362,39],[362,39],[752,798,362,39],[199,465,362,39],[362,39],[731,798,752,362,308],[731,798,752,362,308]],\"google:suggesttype\":[\"PERSONALIZED_QUERY\",\"PERSONALIZED_QUERY\",\"PERSONALIZED_QUERY\",\"PERSONALIZED_QUERY\",\"ENTITY\",\"PERSONALIZED_QUERY\",\"QUERY\",\"QUERY\"]}]","cachedresults_with_url":{"https://www.google.com/search?q=FTP+Mirrors%C2%B6&sourceid=chrome&ie=UTF-8":")]}'\n[\"\",[\"Tell me about the different Qwen open source models\",\"What are the implications for chatbot regulation?\",\"How can different marketing channels be combined effectively?\",\"Why did Palantir\\u0027s recent quarterly results set records?\",\"How does the GitHub Copilot SDK expand its capabilities?\",\"How do language models process words expressing uncertainty?\",\"How does Gemini integration affect Siri\\u0027s user privacy?\",\"What are the developer experience challenges when working with Next.js?\"],[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"],[],{\"google:clientdata\":{\"bpc\":false,\"tlw\":false},\"google:groupsinfo\":\"ChcIwLgCEhEKD1JlY2VudCBzZWFyY2hlcwoaCMjfAhIUChJFeHBsb3JlIGluIEFJIE1vZGU\\u003d\",\"google:suggestdetail\":[{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dTell+me+about+the+different+Qwen+open+source+models\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K4r_hX3YNbre5ZHbuGvG6XvdHOktw\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxo1CjNUZWxsIG1lIGFib3V0IHRoZSBkaWZmZXJlbnQgUXdlbiBvcGVuIHNvdXJjZSBtb2RlbHMyCQoDdWRtEgI1MDIJCgNhZXASAjI5\",\"zl\":45000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dWhat+are+the+implications+for+chatbot+regulation?\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K6bdYAO2ZP_AkbBYyS-L8rglNFl_g\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxozCjFXaGF0IGFyZSB0aGUgaW1wbGljYXRpb25zIGZvciBjaGF0Ym90IHJlZ3VsYXRpb24/MgkKA3VkbRICNTAyCQoDYWVwEgIyOQ\\u003d\\u003d\",\"zl\":45000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dHow+can+different+marketing+channels+be+combined+effectively?\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K4hW6stRkc0QqtEYvT1QGdVVDsp6Q\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxo/Cj1Ib3cgY2FuIGRpZmZlcmVudCBtYXJrZXRpbmcgY2hhbm5lbHMgYmUgY29tYmluZWQgZWZmZWN0aXZlbHk/MgkKA3VkbRICNTAyCQoDYWVwEgIyOQ\\u003d\\u003d\",\"zl\":45000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dWhy+did+Palantir\\u0027s+recent+quarterly+results+set+records?\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K5w0Wwlz4DIZmv2hD9r6nRkZ8v1cw\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxo6CjhXaHkgZGlkIFBhbGFudGlyJ3MgcmVjZW50IHF1YXJ0ZXJseSByZXN1bHRzIHNldCByZWNvcmRzPzIJCgN1ZG0SAjUwMgkKA2FlcBICMjk\\u003d\",\"zl\":45000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dHow+does+the+GitHub+Copilot+SDK+expand+its+capabilities?\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K6W2OSh5KveZMdRuiiVOTWq9yRURA\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxo6CjhIb3cgZG9lcyB0aGUgR2l0SHViIENvcGlsb3QgU0RLIGV4cGFuZCBpdHMgY2FwYWJpbGl0aWVzPzIJCgN1ZG0SAjUwMgkKA2FlcBICMjk\\u003d\",\"zl\":45000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dHow+do+language+models+process+words+expressing+uncertainty?\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K4tBEr5wryacbD7CVSvIAByuGjSIw\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxo+CjxIb3cgZG8gbGFuZ3VhZ2UgbW9kZWxzIHByb2Nlc3Mgd29yZHMgZXhwcmVzc2luZyB1bmNlcnRhaW50eT8yCQoDdWRtEgI1MDIJCgNhZXASAjI5\",\"zl\":45000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dHow+does+Gemini+integration+affect+Siri\\u0027s+user+privacy?\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K5XeiW-AegPqtCefeySYlkgfsw43g\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxo5CjdIb3cgZG9lcyBHZW1pbmkgaW50ZWdyYXRpb24gYWZmZWN0IFNpcmkncyB1c2VyIHByaXZhY3k/MgkKA3VkbRICNTAyCQoDYWVwEgIyOQ\\u003d\\u003d\",\"zl\":45000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dWhat+are+the+developer+experience+challenges+when+working+with+Next.js?\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K4nH7roBgnrcbbL0Q6_fok7rf0B5Q\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxpJCkdXaGF0IGFyZSB0aGUgZGV2ZWxvcGVyIGV4cGVyaWVuY2UgY2hhbGxlbmdlcyB3aGVuIHdvcmtpbmcgd2l0aCBOZXh0LmpzPzIJCgN1ZG0SAjUwMgkKA2FlcBICMjk\\u003d\",\"zl\":45000}],\"google:suggesteventid\":\"3499560262068941268\",\"google:suggestrelevance\":[601,600,555,554,553,552,551,550],\"google:suggestsubtypes\":[[731,798,752,524,362],[731,798,752,524,362],[731,798,752,524,362],[731,798,752,524,362],[731,798,752,524,362],[731,798,752,524,362],[731,798,752,524,362],[731,798,752,524,362]],\"google:suggesttype\":[\"QUERY\",\"QUERY\",\"QUERY\",\"QUERY\",\"QUERY\",\"QUERY\",\"QUERY\",\"QUERY\"],\"google:verbatimrelevance\":851}]"}}} \ No newline at end of file +{"NewTabPage":{"PrevNavigationTime":"13415712649378959"},"accessibility":{"captions":{"headless_caption_enabled":false}},"account_info":[{"access_point":31,"account_id":"100819125745700103222","accountcapabilities":{"accountcapabilities/g42tslldmfya":1,"accountcapabilities/g44tilldmfya":0,"accountcapabilities/ge2dinbnmnqxa":1,"accountcapabilities/ge2tkmznmnqxa":1,"accountcapabilities/ge2tknznmnqxa":1,"accountcapabilities/ge2tkobnmnqxa":1,"accountcapabilities/ge3dgmjnmnqxa":1,"accountcapabilities/ge3dgobnmnqxa":1,"accountcapabilities/ge4tenznmnqxa":1,"accountcapabilities/ge4tgnznmnqxa":0,"accountcapabilities/geydgnznmnqxa":1,"accountcapabilities/geytcnbnmnqxa":1,"accountcapabilities/gezdcnbnmnqxa":1,"accountcapabilities/gezdsmbnmnqxa":0,"accountcapabilities/geztenjnmnqxa":1,"accountcapabilities/gi2tklldmfya":1,"accountcapabilities/gu2dqlldmfya":1,"accountcapabilities/gu4dmlldmfya":0,"accountcapabilities/guydolldmfya":0,"accountcapabilities/guzdslldmfya":0,"accountcapabilities/haytqlldmfya":1,"accountcapabilities/he4tolldmfya":0},"email":"garveyht@gmail.com","full_name":"Hayden Garvey","gaia":"100819125745700103222","given_name":"Hayden","hd":"NO_HOSTED_DOMAIN","is_supervised_child":0,"is_under_advanced_protection":false,"last_downloaded_image_url_with_size":"https://lh3.googleusercontent.com/a/ACg8ocJ02ukvqC4H8BHk_hOE011Fa_SyiZju8cFASQRNAE1e35de1uHd-w=s256-c-ns","locale":"en","picture_url":"https://lh3.googleusercontent.com/a/ACg8ocJ02ukvqC4H8BHk_hOE011Fa_SyiZju8cFASQRNAE1e35de1uHd-w=s96-c"}],"account_tracker_service_last_update":"13415920057184462","account_values":{"accessibility":{"captions":{"live_caption_bubble_expanded":true,"live_caption_enabled":false,"live_caption_language":"en-US","live_caption_mask_offensive_words":false}},"auto_pin_new_tab_groups":true,"autofill":{"has_seen_bnpl":true,"last_version_deduped":145,"name_and_email_profile_not_selected_counter":0,"name_and_email_profile_signature":"3765958046","was_name_and_email_profile_used":true},"bookmark_bar":{"show_apps_shortcut":true,"show_managed_bookmarks":false,"show_on_all_tabs":true,"show_tab_groups":true},"browser":{"allow_javascript_apple_events":true,"enable_spellchecking":true,"pin_split_tab_button":true,"show_forward_button":false,"theme":{"color_scheme":0,"color_variant":1,"user_color":-6395583}},"credentials_enable_service":true,"custom_links":{"initialized":true,"list":[]},"devtools":{"sync_preferences":true,"synced_preferences_sync_enabled":{"active-keybind-set":"\"devToolsDefault\"","adorner-settings":"[{\"adorner\":\"grid\",\"isEnabled\":true},{\"adorner\":\"subgrid\",\"isEnabled\":false},{\"adorner\":\"flex\",\"isEnabled\":false},{\"adorner\":\"ad\",\"isEnabled\":false},{\"adorner\":\"scroll-snap\",\"isEnabled\":true},{\"adorner\":\"container\",\"isEnabled\":true},{\"adorner\":\"slot\",\"isEnabled\":true},{\"adorner\":\"top-layer\",\"isEnabled\":false},{\"adorner\":\"reveal\",\"isEnabled\":true},{\"adorner\":\"media\",\"isEnabled\":true},{\"adorner\":\"scroll\",\"isEnabled\":false},{\"adorner\":\"popover\",\"isEnabled\":true},{\"adorner\":\"starting-style\",\"isEnabled\":true},{\"adorner\":\"grid-lanes\",\"isEnabled\":true}]","allow-scroll-past-eof":"false","auto-attach-to-created-pages":"true","auto-reveal-in-navigator":"true","chrome-theme-colors":"true","console-autocomplete-on-enter":"true","console-timestamps-enabled":"true","console-user-activation-eval":"true","disable-paused-state-overlay":"true","disable-self-xss-warning":"true","emulation.locations":"[{\"title\":\"Berlin\",\"lat\":52.520007,\"long\":13.404954,\"timezoneId\":\"Europe/Berlin\",\"locale\":\"de-DE\"},{\"title\":\"London\",\"lat\":51.507351,\"long\":-0.127758,\"timezoneId\":\"Europe/London\",\"locale\":\"en-GB\"},{\"title\":\"Moscow\",\"lat\":55.755826,\"long\":37.6173,\"timezoneId\":\"Europe/Moscow\",\"locale\":\"ru-RU\"},{\"title\":\"Mountain View\",\"lat\":37.386052,\"long\":-122.083851,\"timezoneId\":\"America/Los_Angeles\",\"locale\":\"en-US\"},{\"title\":\"Mumbai\",\"lat\":19.075984,\"long\":72.877656,\"timezoneId\":\"Asia/Kolkata\",\"locale\":\"mr-IN\"},{\"title\":\"San Francisco\",\"lat\":37.774929,\"long\":-122.419416,\"timezoneId\":\"America/Los_Angeles\",\"locale\":\"en-US\"},{\"title\":\"Shanghai\",\"lat\":31.230416,\"long\":121.473701,\"timezoneId\":\"Asia/Shanghai\",\"locale\":\"zh-Hans-CN\"},{\"title\":\"São Paulo\",\"lat\":-23.55052,\"long\":-46.633309,\"timezoneId\":\"America/Sao_Paulo\",\"locale\":\"pt-BR\"},{\"title\":\"Tokyo\",\"lat\":35.689487,\"long\":139.691706,\"timezoneId\":\"Asia/Tokyo\",\"locale\":\"ja-JP\"}]","enable-ignore-listing":"false","extend-grid-lines":"true","flamechart-selected-navigation":"\"modern\"","frame-viewer-hide-chrome-window":"true","gdp.ai-conversation-count":"5","global-ai-button-click-count":"6","hide-network-messages":"true","lighthouse-show-settings-toolbar":"true","lighthouse.device-type":"\"desktop\"","lighthouse.enable-sampling":"true","lighthouse.mode":"\"snapshot\"","lighthouse.throttling":"\"devtools\"","monitoring-xhr-enabled":"true","network-color-code-resource-types":"true","network.enable-remote-file-loading":"true","network.group-by-frame":"true","network.show-options-to-generate-har-with-sensitive-data":"true","preserve-console-log":"true","receive-gdp-badges":"true","search-in-anonymous-and-content-scripts":"true","selected-context-filter-enabled":"true","show-grid-areas":"true","show-grid-line-labels":"\"lineNames\"","show-grid-track-sizes":"true","show-ua-shadow-dom":"true","show-whitespaces-in-editor":"\"all\"","skip-anonymous-scripts":"true","skip-content-scripts":"false","skip-stack-frames-pattern":"[{\"pattern\":\"/node_modules/|/bower_components/\",\"disabled\":true},{\"pattern\":\"/paywall_modal\\\\.tsx$\",\"disabled\":false}]","sources.word-wrap":"true","syncedInspectorVersion":"40","text-editor-code-folding":"true","text-editor-indent":"\" \"","ui-theme":"\"dark\"","user-shortcuts":"[{\"descriptors\":[{\"key\":3155,\"name\":\"⌘ ⌥ S\"}],\"action\":\"sources.save-all\",\"type\":\"DisabledDefault\",\"keybindSets\":{}},{\"descriptors\":[{\"key\":2131,\"name\":\"⌘ S\"},{\"key\":2131,\"name\":\"⌘ S\"}],\"action\":\"sources.save-all\",\"type\":\"UserShortcut\",\"keybindSets\":{}},{\"descriptors\":[{\"key\":78,\"name\":\"N\"},{\"key\":66,\"name\":\"B\"}],\"action\":\"sources.toggle-navigator-sidebar\",\"type\":\"UserShortcut\",\"keybindSets\":{}},{\"descriptors\":[{\"key\":2101,\"name\":\"⌘ 5\"}],\"action\":\"emulation.capture-screenshot\",\"type\":\"UserShortcut\",\"keybindSets\":{}},{\"descriptors\":[{\"key\":2100,\"name\":\"⌘ 4\"}],\"action\":\"emulation.capture-node-screenshot\",\"type\":\"UserShortcut\",\"keybindSets\":{}},{\"descriptors\":[{\"key\":2097,\"name\":\"⌘ 1\"}],\"action\":\"settings.documentation\",\"type\":\"UserShortcut\",\"keybindSets\":{}},{\"descriptors\":[{\"key\":1061,\"name\":\"⌥ ←\"}],\"action\":\"drjones.network-floating-button\",\"type\":\"UserShortcut\",\"keybindSets\":{}}]"}},"extensions":{"commands":{"linux:Ctrl+Shift+K":{"command_name":"_execute_action","extension":"knheggckgoiihginacbkhaalnibhilkk","global":false},"mac:Alt+P":{"command_name":"_execute_action","extension":"hkgfoiooedgoejojocmhlaklaeopbecg","global":false},"mac:Alt+Shift+M":{"command_name":"_execute_action","extension":"nkbihfbeogaeaoehlefnkodbefgpgknn","global":false},"mac:Alt+Shift+P":{"command_name":"_execute_action","extension":"bfnaelmomeimhlpmgjnjophhpkkoljpa","global":false},"mac:Command+E":{"command_name":"toggle-side-panel","extension":"fcoeoabgfenejglbffodgkkbkcdhcgfn","global":false},"mac:Command+Shift+K":{"command_name":"_execute_action","extension":"knheggckgoiihginacbkhaalnibhilkk","global":false},"mac:Command+Shift+L":{"command_name":"lock","extension":"aeblfdkhhhdcdjpifhhbdiojplfjncoa","global":false},"mac:Command+Shift+X":{"command_name":"_execute_action","extension":"aeblfdkhhhdcdjpifhhbdiojplfjncoa","global":false},"windows:Alt+A":{"command_name":"autofillform","extension":"appojfilknpkghkebigcdkmopdfcjhim","global":false},"windows:Alt+G":{"command_name":"generate","extension":"appojfilknpkghkebigcdkmopdfcjhim","global":false},"windows:Alt+P":{"command_name":"passwordstatewebsite","extension":"appojfilknpkghkebigcdkmopdfcjhim","global":false},"windows:Alt+Shift+M":{"command_name":"_execute_browser_action","extension":"nkbihfbeogaeaoehlefnkodbefgpgknn","global":false},"windows:Alt+T":{"command_name":"enableautofill","extension":"appojfilknpkghkebigcdkmopdfcjhim","global":false},"windows:Ctrl+B":{"command_name":"_execute_action","extension":"lbfdjdlcfchopmahhmdigbanhilfjfek","global":false}},"pinned_extensions":["nckgahadagoaajjgafhacjanaoiihapd","appojfilknpkghkebigcdkmopdfcjhim","cpodebcggidjigndghagpkepglfbhali","edhffjmclaeaibfpmifpjajgkpmnlmgm","cljceoobbmlacgcijeogaeflnkijfbdm","haijifigpgpndcnbbjooffflaceedhdp","pdbopgaddendbobnooalcpakbhnljfjm","lfkjgllfhhebhindbjeenbikdebolboh","jjdofdcmgnhhkipafnbojiejplegeaab","fimfamikepjgchehkohedilpdigcpkoa","knheggckgoiihginacbkhaalnibhilkk","kdkbnkiiimomdbidfhlcdgdplmejdgip","meimoidfecamngeoanhnpdjjdcefoldn","opafjjlpbiaicbbgifbejoochmmeikep","cemcgcfjlhmjmccmlnpfajangkjpknli","npkjkjmjbcmmoopfpklachepijldplcj","ckgimgompljaacjgongnjnnmgflljibg","fgacdjnoljjfikkadhogeofgjoglooma","odcnpipkhjegpefkfplmedhmkmmhmoko","fcoeoabgfenejglbffodgkkbkcdhcgfn","nkbihfbeogaeaoehlefnkodbefgpgknn","bfnaelmomeimhlpmgjnjophhpkkoljpa","ghbmnnjooekpmoecnnnilnnbdlolhkhi","lmjegmlicamnimmfhcmpkclmigmmcbeh"]},"hats":{"survey_metadata":{"any_last_survey_started_time":"13347167611497267","permissions-prompt0":{"last_major_version":120,"last_survey_check_time":"13347167608412568","last_survey_started_time":"13347167611497264"},"whats-new":{"last_survey_check_time":"13382658738311640"}}},"https_only_mode_enabled":true,"intl":{"accept_languages":"en-US","selected_languages":"en-US"},"net":{"easter_egg_high_score":3203,"network_prediction_options":3},"ntp":{"custom_background_dict":{"attribution_action_url":"https://www.google.com/maps/@18.997003,-14.253373,18z/data=!3m1!1e3","attribution_line_1":"Trarza, Mauritania","attribution_line_2":"©2015 Google Earth, Maxar Technologies","background_main_color":-6395583,"background_url":"https://lh6.googleusercontent.com/proxy/po6Ldeo2qqOxXE6HGeg7HnklBwUy-NXujJ2--8I-V_D2BW9cs1HLxDjnlAzjrFpIzV41AKDHym-an4_RZsIDS5VSgqnWGST9A3-7-UrYbI2O=w3840-h2160-p-k-no-nd-mv","collection_id":"satellite_for_NTP","refresh_timestamp":1771567267,"resume_token":"CZdByxkGRQMACfMH/Wm3lPL/CXRt80bvLwUACQfLjqKMWhQACU7I15F24u//CdVHiPh1pOP/CTqYs1pGAwYACcnGf34DqAAACc2q1mD7IOv/CQmhxQOWchUACdOFkAmyygQACa/uyo2PcfD/CXCu4MLGRw8ACVLEzQtN3er/Caewj2ZZlhYACebYM5TxiwMACSfPWpUqCQ0ACZTzlFqibRsACabwLywMX+f/CX3frk5Eg/z/CcMhHcWVWvj/"}},"omnibox":{"keyword_space_triggering_enabled":true},"price_tracking":{"email_notifications_enabled":true},"profile":{"content_settings":{"exceptions":{"anti_abuse":{},"automatic_downloads":{"https://help.salesforce.com:443,*":{"last_modified":"13403414714472183","setting":1},"https://jobhire.ai:443,*":{"last_modified":"13413953393540475","setting":1},"https://www.tiktok.com:443,*":{"last_modified":"13360820554277532","setting":1}},"cookies":{"https://[*.]getresponse.com:443,*":{"last_modified":"13347090814749652","setting":4},"https://[*.]play.vidyard.com:443,*":{"expiration":"0","last_modified":"13308728831283461","model":0,"setting":4}},"images":{},"javascript":{},"local_fonts":{"chrome-extension://ffppmilmeaekegkpckebkeahjgmhggpj/,*":{"last_modified":"13377252850333569","setting":1}},"popups":{"file:///Users/garvey/Desktop/safari.ext/ext/dist/popup.html,*":{"last_modified":"13385984750936425","setting":1},"http://localhost:55859,*":{"last_modified":"13414005096167388","setting":1},"http://localhost:9005,*":{"last_modified":"13376652597585790","setting":1},"https://accounts.google.com:443,*":{"last_modified":"13413065374781332","setting":1},"https://ads.tiktok.com:443,*":{"last_modified":"13363929972297488","setting":1},"https://aistudio.google.com:443,*":{"last_modified":"13405984963527328","setting":1},"https://artifacts.grokusercontent.com:443,*":{"last_modified":"13415815839750945","setting":1},"https://business.tiktok.com:443,*":{"last_modified":"13363929240927549","setting":1},"https://chrome,*":{"last_modified":"13385978061308784","setting":1},"https://console.cloud.google.com:443,*":{"last_modified":"13404630530080386","setting":1},"https://crypto.link.com:443,*":{"last_modified":"13415577376342948","setting":1},"https://dashboard.magic.link:443,*":{"last_modified":"13415053107365763","setting":1},"https://discord.com:443,*":{"last_modified":"13415820631126277","setting":1},"https://flow.idp.hashicorp.com:443,*":{"last_modified":"13414755029807617","setting":1},"https://github.com:443,*":{"last_modified":"13402733575660833","setting":1},"https://huggingface.co:443,*":{"last_modified":"13415615658434242","setting":1},"https://same.new:443,*":{"last_modified":"13403849802110180","setting":1},"https://smithery.ai:443,*":{"last_modified":"13413858007409241","setting":1},"https://ssh.cloud.google.com:443,*":{"last_modified":"13405127029983728","setting":1},"https://t.me:443,*":{"last_modified":"13414035537833837","setting":1},"https://teams.microsoft.com,*":{"expiration":"0","last_modified":"13266604664476063","model":0,"setting":1},"https://twitter.com:443,*":{"last_modified":"13358583503448145","setting":1},"https://www.notion.so:443,*":{"last_modified":"13406892532222742","setting":1},"https://www.pinterest.com:443,*":{"last_modified":"13359355819114436","setting":1},"https://www.taicloud.net:443,*":{"last_modified":"13409957769835230","setting":1}},"tracking_protection":{},"window_placement":{"https://teams.microsoft.com:443,*":{"last_modified":"13412980800818242","last_visit":"13412649600000000","setting":1}}}},"cookie_controls_mode":2,"was_auto_sign_in_first_run_experience_shown":true},"promos":{"ios_password_impressions_counter":1,"ios_password_last_impression_timestamp":"13351908876460053","ios_password_opt_out":true},"safebrowsing":{"aesb_update_time_windows_epoch_micros":"13352596226967094","enabled":true},"settings":{"a11y":{"read_anything":{"color_info":0,"font_name":"Lexend Deca","font_scale":0.5,"highlight_granularity":4,"languages_enabled":["en-us"],"letter_spacing":2,"line_spacing":3,"links_enabled":true,"speech_rate":4.0}}},"sync":{"ai_subscription_tier":2,"demographics":{"birth_year":1995,"gender":1},"glic_rollout_eligibility":true},"toolbar":{"pinned_actions":["kActionShowChromeLabs","kActionShowPasswordsBubbleOrPage","kActionSidePanelShowLensOverlayResults","kActionDevTools","kActionCopyUrl","kActionShowDownloads","kActionTabSearch","kActionSidePanelShowReadingList","kActionSidePanelShowBookmarks","kActionSidePanelShowReadAnything","kActionQrCodeGenerator"],"pinned_cast_migration_complete":true,"pinned_chrome_labs_migration_complete":true,"pinned_search_companion_migration_complete":true},"translate_accepted_count":{"es":1,"fr":3,"pl":0,"ru":1,"und":0,"zh-CN":1},"translate_denied_count_for_language":{"es":0,"fr":0,"pl":1,"ru":0,"und":1,"zh-CN":0},"translate_force_trigger_on_english_count_for_backoff_1":-1,"translate_recent_target":"en","translate_site_blocklist_with_time":{"grok.com":"13413321472412740","www.benefits.ml.com":"13343410217050035"}},"ack_existing_ntp_extensions":true,"aim_eligibility_service":{"aim_eligibility_response":"CAEQARgAIAAwATqNAgozCgEEEgIBAhoFCAQSAQEiBAgBEAoiBAgCEAoqAgMCMgYIAyABKAEyCQgCEgIECRoBATgKIhYIARIMVXBsb2FkIGltYWdlGgQIARAKIhUIAhILVXBsb2FkIGZpbGUaBAgCEAoqQAgEGg1DcmVhdGUgSW1hZ2VzIgZJbWFnZXMqE0Rlc2NyaWJlIHlvdXIgaW1hZ2UyBQgEEgEBOgkKBGltZ24SATEyGwgDEgRBdXRvIgYIAyABKAEqCQoDdWRtEgI1MDIeCAISA1BybyIJCAISAgQJGgEBKgoKA25lbRIDMTQzOgcKBVRvb2xzQhEKD0dlbWluaSAzIG1vZGVsc0oMQXNrIGFueXRoaW5nQg0KCQoDdWRtEgI1MBABQg4KCgoDbmVtEgMxNDMQAg=="},"alternate_error_pages":{"backup":true},"apps":{"shortcuts_arch":"arm64","shortcuts_version":8},"autocomplete":{"retention_policy_last_version":144},"autofill":{"last_version_deduped":144,"metadata_upload_events":{"004":1,"00B":1,"07D":1,"07F":1,"086":1,"08C":1,"148":1,"183":1,"1A2":1,"1B9":1,"1D3":1,"1E4":1,"1F5":1,"21F":1,"225":1,"24F":1,"269":1,"276":1,"27A":1,"27B":1,"2AC":1,"310":1,"329":1,"39F":1},"ran_extra_deduplication":true,"secondary_form_signature_upload_events":{"01E":1,"126":1,"1B9":1,"2EC":1,"321":1},"upload_encoding_seed":"A792D93F3382ECCC39838A26F4D1C00E","upload_events":{"004":33,"00B":2,"07D":32,"07F":5,"086":2,"08C":2,"148":37,"183":2,"1A2":1,"1B9":2,"1D3":2,"1E4":2,"1F5":2,"21F":32,"225":2,"24F":2,"269":2,"276":2,"27A":1,"27B":32,"2AC":33,"310":2,"329":2,"39F":33},"upload_events_last_reset_timestamp":"13415694769241663"},"bookmark":{"storage_computation_last_update":"13415920057181141"},"browser":{"theme":{"color_scheme2":0,"color_variant2":1,"saved_local_theme":"CAAQAEgB","user_color2":-6395583},"window_placement":{"bottom":1489,"left":179,"maximized":false,"right":1645,"top":583,"work_area_bottom":982,"work_area_left":0,"work_area_right":1512,"work_area_top":33}},"cached_image_fetcher_last_startup_eviction_time":"13415832235425356","commerce_daily_metrics_last_update_time":"13415962557945134","countryid_at_install":21843,"default_apps_install_state":3,"domain_diversity":{"last_reporting_timestamp":"13415954324948658","last_reporting_timestamp_v4":"13415918635290969"},"download_bubble":{"partial_view_impressions":4},"dual_layer_user_pref_store":{"user_selected_sync_types":["preferences"]},"enterprise_profile_guid":"36b5bc97-9af0-4f27-8db9-71eff3e24a49","extensions":{"alerts":{"initialized":true},"chrome_url_overrides":{},"cws_info_timestamp":"13415937749797327","install_signature":{"expire_date":"2026-05-10","ids":["ghbmnnjooekpmoecnnnilnnbdlolhkhi"],"invalid_ids":[],"salt":"xWdN2cIeHmDN51zgPrzsEzJZZZsmTC6ElE8poLGF7mM=","signature":"NN4BW2YAhKfIHRPXWIj7jA4QgMGy81mquPUNwYwJyDn/cqaPekwaU9XuTCpY9un2ebcUHDfsWgbcQjKtcvqoHGvbjEHAMLOIEVme/UNk5bgwNQGNZX4qg3+Rr/i3WKAQbwRLchd/sRSJdVZ+IUZ+ceyPsthJwYC92iLkP+GGl8rhkPYk4TJo/JVLJjQBgIdGU1gv5CigU9AkxbVjrAQU0Sf8k7PUx+VsVAH5rC6R4BofiIbZSaiAnrnTZg2cT3wshFDmBak0/oHTcylkHHxvMQ3qKfuLWco/QSIpnGVdftnKx2PbyCA0q1nj/Rcre7u2ig3kIa7DI09MMDe8Uqp3IA==","signature_format_version":2,"timestamp":"13415657477915390"},"last_chrome_version":"144.0.7559.133","theme":{"id":"user_color_theme_id"}},"gaia_cookie":{"changed_time":1771183881.290039,"hash":"9BHrmKcyae2GUG+MQ/Ind4o2VHc=","last_list_accounts_binary_data":"CrMBCAESDUhheWRlbiBHYXJ2ZXkaEmdhcnZleWh0QGdtYWlsLmNvbSJiaHR0cHM6Ly9saDMuZ29vZ2xldXNlcmNvbnRlbnQuY29tLy1BekJQcWFQa1RWSS9BQUFBQUFBQUFBSS9BQUFBQUFBQUFBQS9UNUJSYkZtamZnQS9zNDgtYy9waG90by5qcGcoATABOABIAVIVMTAwODE5MTI1NzQ1NzAwMTAzMjIyeAGCAQZIYXlkZW4=","periodic_report_time_2":"13415920057167162"},"gcm":{"product_category_for_subtypes":"com.chrome.macosx","push_messaging_unsubscribed_entries_list":[]},"google":{"services":{"signin":{"LAST_SIGNIN_ACCESS_POINT":{"time":"2026-02-15T19:31:29.466Z","value":"54"},"REFRESH_TOKEN_RECEIVED":{"time":"2026-02-16T06:40:29.445Z","value":"Successful (100819125745700103222)"}},"signin_scoped_device_id":"841e5a84-1191-4bcc-a9ee-6b2b4560779c"}},"history_clusters":{"all_cache":{"all_keywords":{},"all_timestamp":"13415695338920834"},"short_cache":{"short_keywords":{},"short_timestamp":"13415699460997880"}},"https_only_mode_auto_enabled":false,"https_upgrade_navigations":{"2026-02-16":290},"in_product_help":{"recent_session_enabled_time":"13415657436897472","recent_session_start_times":["13415792985779419","13415692237315473","13415657436897472"],"session_last_active_time":"13415792985779419","session_number":4,"session_start_time":"13415792985779419"},"intl":{"accept_languages":"en-US","selected_languages":"en-US,en"},"invalidation":{"per_sender_registered_for_invalidation":{"1013309121859":{},"947318989803":{}}},"language_model_counters":{"en":226},"media":{"device_id_salt":"3202BD84C6C40CA9B527BC7720C155AE","engagement":{"schema_version":5}},"media_router":{"receiver_id_hash_token":"ihFf92DfGOxXE88eUMDPF7/X/nIjpT6TZvSXgVfClnMYZ7BQFnJav5zQ6DPSL1coHJno4MANGLShYClajalA3g=="},"migrated_user_scripts_toggle":true,"ntp":{"compose_button":{"shown_count":5},"custom_background_dict2":{"attribution_action_url":"https://www.google.com/maps/@18.997003,-14.253373,18z/data=!3m1!1e3","attribution_line_1":"Trarza, Mauritania","attribution_line_2":"©2015 Google Earth, Maxar Technologies","background_main_color":-6395583,"background_url":"https://lh6.googleusercontent.com/proxy/po6Ldeo2qqOxXE6HGeg7HnklBwUy-NXujJ2--8I-V_D2BW9cs1HLxDjnlAzjrFpIzV41AKDHym-an4_RZsIDS5VSgqnWGST9A3-7-UrYbI2O=w3840-h2160-p-k-no-nd-mv","collection_id":"satellite_for_NTP","refresh_timestamp":1771567267,"resume_token":"CZdByxkGRQMACfMH/Wm3lPL/CXRt80bvLwUACQfLjqKMWhQACU7I15F24u//CdVHiPh1pOP/CTqYs1pGAwYACcnGf34DqAAACc2q1mD7IOv/CQmhxQOWchUACdOFkAmyygQACa/uyo2PcfD/CXCu4MLGRw8ACVLEzQtN3er/Caewj2ZZlhYACebYM5TxiwMACSfPWpUqCQ0ACZTzlFqibRsACabwLywMX+f/CX3frk5Eg/z/CcMhHcWVWvj/"},"custom_background_local_to_device":false,"num_personal_suggestions":0},"optimization_guide":{"hintsfetcher":{"hosts_successfully_fetched":{}},"previous_optimization_types_with_filter":{"A2A_MERCHANT_ALLOWLIST":true,"AMERICAN_EXPRESS_CREDIT_CARD_FLIGHT_BENEFITS":true,"AMERICAN_EXPRESS_CREDIT_CARD_SUBSCRIPTION_BENEFITS":true,"AUTOFILL_ABLATION_SITES_LIST1":true,"AUTOFILL_ABLATION_SITES_LIST2":true,"AUTOFILL_ABLATION_SITES_LIST3":true,"AUTOFILL_ABLATION_SITES_LIST4":true,"AUTOFILL_ABLATION_SITES_LIST5":true,"AUTOFILL_ACTOR_IFRAME_ORIGIN_ALLOWLIST":true,"BMO_CREDIT_CARD_AIR_MILES_PARTNER_BENEFITS":true,"BMO_CREDIT_CARD_ALCOHOL_STORE_BENEFITS":true,"BMO_CREDIT_CARD_DINING_BENEFITS":true,"BMO_CREDIT_CARD_DRUGSTORE_BENEFITS":true,"BMO_CREDIT_CARD_ENTERTAINMENT_BENEFITS":true,"BMO_CREDIT_CARD_GROCERY_BENEFITS":true,"BMO_CREDIT_CARD_OFFICE_SUPPLY_BENEFITS":true,"BMO_CREDIT_CARD_RECURRING_BILL_BENEFITS":true,"BMO_CREDIT_CARD_TRANSIT_BENEFITS":true,"BMO_CREDIT_CARD_TRAVEL_BENEFITS":true,"BMO_CREDIT_CARD_WHOLESALE_CLUB_BENEFITS":true,"BUY_NOW_PAY_LATER_ALLOWLIST_AFFIRM":true,"BUY_NOW_PAY_LATER_ALLOWLIST_AFFIRM_ANDROID":true,"BUY_NOW_PAY_LATER_ALLOWLIST_KLARNA":true,"BUY_NOW_PAY_LATER_ALLOWLIST_KLARNA_ANDROID":true,"BUY_NOW_PAY_LATER_ALLOWLIST_ZIP":true,"BUY_NOW_PAY_LATER_ALLOWLIST_ZIP_ANDROID":true,"BUY_NOW_PAY_LATER_BLOCKLIST_AFFIRM":true,"BUY_NOW_PAY_LATER_BLOCKLIST_KLARNA":true,"BUY_NOW_PAY_LATER_BLOCKLIST_ZIP":true,"CAPITAL_ONE_CREDIT_CARD_BENEFITS_BLOCKED":true,"CAPITAL_ONE_CREDIT_CARD_DINING_BENEFITS":true,"CAPITAL_ONE_CREDIT_CARD_ENTERTAINMENT_BENEFITS":true,"CAPITAL_ONE_CREDIT_CARD_GROCERY_BENEFITS":true,"CAPITAL_ONE_CREDIT_CARD_STREAMING_BENEFITS":true,"DIGITAL_CREDENTIALS_LOW_FRICTION":true,"EWALLET_MERCHANT_ALLOWLIST":true,"GLIC_ACTION_PAGE_BLOCK":true,"HISTORY_CLUSTERS":true,"HISTORY_EMBEDDINGS":true,"IBAN_AUTOFILL_BLOCKED":true,"LENS_OVERLAY_EDU_ACTION_CHIP_ALLOWLIST":true,"LENS_OVERLAY_EDU_ACTION_CHIP_BLOCKLIST":true,"NTP_NEXT_DEEP_DIVE_ACTION_CHIP_ALLOWLIST":true,"NTP_NEXT_DEEP_DIVE_ACTION_CHIP_BLOCKLIST":true,"PIX_MERCHANT_ORIGINS_ALLOWLIST":true,"PIX_PAYMENT_MERCHANT_ALLOWLIST":true,"SHARED_CREDIT_CARD_DINING_BENEFITS":true,"SHARED_CREDIT_CARD_ENTERTAINMENT_BENEFITS":true,"SHARED_CREDIT_CARD_FLAT_RATE_BENEFITS_BLOCKLIST":true,"SHARED_CREDIT_CARD_FLIGHT_BENEFITS":true,"SHARED_CREDIT_CARD_GROCERY_BENEFITS":true,"SHARED_CREDIT_CARD_STREAMING_BENEFITS":true,"SHARED_CREDIT_CARD_SUBSCRIPTION_BENEFITS":true,"SHOPPING_PAGE_PREDICTOR":true,"TEXT_CLASSIFIER_ENTITY_DETECTION":true,"VCN_MERCHANT_OPT_OUT_DISCOVER":true,"VCN_MERCHANT_OPT_OUT_MASTERCARD":true,"VCN_MERCHANT_OPT_OUT_VISA":true,"WALLETABLE_PASS_DETECTION_ALLOWLIST":true,"WALLETABLE_PASS_DETECTION_BOARDING_PASS_ALLOWLIST":true,"WALLETABLE_PASS_DETECTION_LOYALTY_ALLOWLIST":true},"previously_registered_optimization_types":{"ABOUT_THIS_SITE":true,"BUY_NOW_PAY_LATER_ALLOWLIST_AFFIRM":true,"BUY_NOW_PAY_LATER_ALLOWLIST_KLARNA":true,"BUY_NOW_PAY_LATER_ALLOWLIST_ZIP":true,"COMPOSE":true,"DIGITAL_CREDENTIALS_LOW_FRICTION":true,"GLIC_ACTION_PAGE_BLOCK":true,"HISTORY_CLUSTERS":true,"LOADING_PREDICTOR":true,"MERCHANT_TRUST_SIGNALS_V2":true,"PAGE_ENTITIES":true,"PRICE_INSIGHTS":true,"PRICE_TRACKING":true,"SALIENT_IMAGE":true,"SAVED_TAB_GROUP":true,"SHOPPING_DISCOUNTS":true,"SHOPPING_PAGE_TYPES":true,"V8_COMPILE_HINTS":true}},"password_manager":{"account_store_backup_password_cleaning_last_timestamp":"13415657497020860","account_store_migrated_to_os_crypt_async":true,"biometric_authentication_filling_promo_counter":1,"has_user_interacted_with_biometric_authentication_promo":true,"profile_store_backup_password_cleaning_last_timestamp":"13415657496850940","profile_store_migrated_to_os_crypt_async":true,"relaunch_chrome_bubble_dismissed_counter":0},"privacy_sandbox":{"first_party_sets_data_access_allowed_initialized":true},"profile":{"avatar_index":26,"background_password_check":{"check_fri_weight":9,"check_interval":"2592000000000","check_mon_weight":6,"check_sat_weight":6,"check_sun_weight":6,"check_thu_weight":9,"check_tue_weight":9,"check_wed_weight":9,"next_check_time":"13418270738421164"},"content_settings":{"exceptions":{"3pcd_heuristics_grants":{"https://[*.]google.com,https://[*.]google.com":{"expiration":"13418285388796320","last_modified":"13415693388796325","lifetime":"2592000000000","setting":1},"https://[*.]youtube.com,https://[*.]google.com":{"expiration":"13418289841901661","last_modified":"13415697841901667","lifetime":"2592000000000","setting":1}},"abusive_notification_permissions":{},"access_to_get_all_screens_media_in_session":{},"anti_abuse":{},"app_banner":{"https://business.google.com:443,*":{"last_modified":"13415701740355894","setting":{"https://business.google.com/":{"next_install_text_animation":{"delay":"86400000000","last_shown":"13415701740355622"}},"https://business.google.com/?lfhs=2":{"couldShowBannerEvents":1.3415701740355892e+16}}},"https://cloud.google.com:443,*":{"last_modified":"13415693486128245","setting":{"https://cloud.google.com/":{"couldShowBannerEvents":1.3415693486128238e+16,"next_install_text_animation":{"delay":"86400000000","last_shown":"13415693486127887"}}}},"https://github.com:443,*":{"last_modified":"13415695327809854","setting":{"https://github.com/":{"couldShowBannerEvents":1.341569532780985e+16,"next_install_text_animation":{"delay":"86400000000","last_shown":"13415695327809538"}}}},"https://glama.ai:443,*":{"last_modified":"13415695408696971","setting":{"https://glama.ai/":{"couldShowBannerEvents":1.3415695408696968e+16,"next_install_text_animation":{"delay":"86400000000","last_shown":"13415695408696660"}}}},"https://knowledge.workspace.google.com:443,*":{"last_modified":"13415693633033867","setting":{"https://knowledge.workspace.google.com/":{"couldShowBannerEvents":1.3415693633033864e+16,"next_install_text_animation":{"delay":"86400000000","last_shown":"13415693633033807"}}}},"https://notebooklm.google.com:443,*":{"last_modified":"13415657482845656","setting":{"https://notebooklm.google.com/":{"couldShowBannerEvents":1.341565748284565e+16,"next_install_text_animation":{"delay":"86400000000","last_shown":"13415657482844569"}}}},"https://one.google.com:443,*":{"last_modified":"13415693362718967","setting":{"https://one.google.com/":{"next_install_text_animation":{"delay":"86400000000","last_shown":"13415693362718723"}},"https://one.google.com/?lfhs=2":{"couldShowBannerEvents":1.341569336271896e+16}}},"https://www.youtube.com:443,*":{"last_modified":"13415697841324839","setting":{"https://www.youtube.com/":{"next_install_text_animation":{"delay":"86400000000","last_shown":"13415697841324728"}},"https://www.youtube.com/?feature=ytca":{"couldShowBannerEvents":1.3415697841324836e+16}}}},"ar":{},"are_suspicious_notifications_allowlisted_by_user":{},"auto_picture_in_picture":{},"auto_select_certificate":{},"automatic_downloads":{},"automatic_fullscreen":{},"autoplay":{},"background_sync":{},"bluetooth_chooser_data":{},"bluetooth_guard":{},"bluetooth_scanning":{},"camera_pan_tilt_zoom":{},"captured_surface_control":{},"client_hints":{"https://accounts.google.com:443,*":{"last_modified":"13415697741978026","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://accounts.youtube.com:443,*":{"last_modified":"13415697629611532","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://admin.google.com:443,*":{"last_modified":"13415697632066167","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://apps.google.com:443,*":{"last_modified":"13415700206784827","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://business.google.com:443,*":{"last_modified":"13415701974355919","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://cloud.google.com:443,*":{"last_modified":"13415700081074178","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://docs.google.com:443,*":{"last_modified":"13415697514315637","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://glama.ai:443,*":{"last_modified":"13415695437294392","setting":{"client_hints":[20,21,22]}},"https://mail.google.com:443,*":{"last_modified":"13415657896116034","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://myactivity.google.com:443,*":{"last_modified":"13415697743465180","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://notebooklm.google.com:443,*":{"last_modified":"13415705339156371","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://one.google.com:443,*":{"last_modified":"13415693361433409","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://workspace.google.com:443,*":{"last_modified":"13415702010839598","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://www.google.com:443,*":{"last_modified":"13415701727479720","setting":{"client_hints":[9,10,11,13,14,16,23,25,29]}},"https://www.youtube.com:443,*":{"last_modified":"13415697840216913","setting":{"client_hints":[0,9,10,11,13,14,16,20,22,23,25,29]}}},"clipboard":{},"controlled_frame":{},"cookie_controls_metadata":{"https://[*.]1edtech.org,*":{"last_modified":"13415701451269569","setting":{}},"https://[*.]appsheet.com,*":{"last_modified":"13415701841474726","setting":{}},"https://[*.]askjeremy.ai,*":{"last_modified":"13415695346106728","setting":{}},"https://[*.]d2l.com,*":{"last_modified":"13415701570245852","setting":{}},"https://[*.]datacenters.google,*":{"last_modified":"13415700512074479","setting":{}},"https://[*.]debian.org,*":{"last_modified":"13415702144628085","setting":{}},"https://[*.]discord.com,*":{"last_modified":"13415694200071826","setting":{}},"https://[*.]epoch.ai,*":{"last_modified":"13415704762999742","setting":{}},"https://[*.]exceedlms.com,*":{"last_modified":"13415700537567354","setting":{}},"https://[*.]generic-mapping-tools.org,*":{"last_modified":"13415702118675230","setting":{}},"https://[*.]github.com,*":{"last_modified":"13415702115345440","setting":{}},"https://[*.]glama.ai,*":{"last_modified":"13415695437351639","setting":{}},"https://[*.]goanywhere.com,*":{"last_modified":"13415705033177371","setting":{}},"https://[*.]google.com,*":{"last_modified":"13415705339160893","setting":{}},"https://[*.]googleblog.com,*":{"last_modified":"13415702004863297","setting":{}},"https://[*.]imsglobal.org,*":{"last_modified":"13415701475551206","setting":{}},"https://[*.]longview.org,*":{"last_modified":"13415704754710018","setting":{}},"https://[*.]navigation.org,*":{"last_modified":"13415704713923466","setting":{}},"https://[*.]redhat.com,*":{"last_modified":"13415702186984427","setting":{}},"https://[*.]steampowered.com,*":{"last_modified":"13415698224180390","setting":{}},"https://[*.]youtube.com,*":{"last_modified":"13415697838977312","setting":{}},"https://[*.]zenodo.org,*":{"last_modified":"13415704673438032","setting":{}}},"cookies":{},"direct_sockets":{},"direct_sockets_private_network_access":{},"display_media_system_audio":{},"disruptive_notification_permissions":{},"durable_storage":{},"fedcm_idp_registration":{},"fedcm_idp_signin":{"https://accounts.google.com:443,*":{"last_modified":"13415832235408239","setting":{"chosen-objects":[{"idp-origin":"https://accounts.google.com","idp-signin-status":true}]}}},"fedcm_share":{},"file_system_access_chooser_data":{},"file_system_access_extended_permission":{},"file_system_access_restore_permission":{},"file_system_last_picked_directory":{},"file_system_read_guard":{},"file_system_write_guard":{},"formfill_metadata":{},"geolocation":{},"geolocation_with_options":{},"hand_tracking":{},"hid_chooser_data":{},"hid_guard":{},"http_allowed":{},"https_enforced":{},"idle_detection":{},"images":{},"important_site_info":{},"initialized_translations":{},"intent_picker_auto_display":{},"javascript":{},"javascript_jit":{},"javascript_optimizer":{},"keyboard_lock":{},"legacy_cookie_access":{},"legacy_cookie_scope":{},"local_fonts":{},"local_network_access":{},"media_engagement":{"https://about.appsheet.com:443,*":{"expiration":"13423477841475085","last_modified":"13415701841475086","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://about.zenodo.org:443,*":{"expiration":"13423478186898724","last_modified":"13415702186898725","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://accounts.google.com:443,*":{"expiration":"13423473629972859","last_modified":"13415697629972862","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":2}},"https://admin.google.com:443,*":{"expiration":"13423473634214882","last_modified":"13415697634214886","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://apps.google.com:443,*":{"expiration":"13423476229547520","last_modified":"13415700229547523","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://business.google.com:443,*":{"expiration":"13423478038463162","last_modified":"13415702038463165","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://cloud.google.com:443,*":{"expiration":"13423477008166337","last_modified":"13415701008166342","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":3}},"https://community.d2l.com:443,*":{"expiration":"13423477665765360","last_modified":"13415701665765364","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://datacenters.google:443,*":{"expiration":"13423476850204970","last_modified":"13415700850204974","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":1.341570049104127e+16,"mediaPlaybacks":1,"visits":1}},"https://desire2learn.brightidea.com:443,*":{"expiration":"13423477667624806","last_modified":"13415701667624810","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://discord.com:443,*":{"expiration":"13423488895235207","last_modified":"13415712895235211","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://docs.google.com:443,*":{"expiration":"13423473519275070","last_modified":"13415697519275071","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://docs.redhat.com:443,*":{"expiration":"13423478190374084","last_modified":"13415702190374086","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://edu.exceedlms.com:443,*":{"expiration":"13423476860761115","last_modified":"13415700860761118","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":2}},"https://edu.google.com:443,*":{"expiration":"13423476683264287","last_modified":"13415700683264291","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://epoch.ai:443,*":{"expiration":"13423481324709905","last_modified":"13415705324709909","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://github.com:443,*":{"expiration":"13423478128359178","last_modified":"13415702128359181","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":3}},"https://glama.ai:443,*":{"expiration":"13423488914743872","last_modified":"13415712914743880","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://go.askjeremy.ai:443,*":{"expiration":"13423473501964768","last_modified":"13415697501964771","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://knowledge.workspace.google.com:443,*":{"expiration":"13423476980058083","last_modified":"13415700980058084","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":2}},"https://micronews.debian.org:443,*":{"expiration":"13423478148429680","last_modified":"13415702148429686","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://myactivity.google.com:443,*":{"expiration":"13423474461155060","last_modified":"13415698461155066","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://notebooklm.google.com:443,*":{"expiration":"13423572578396865","last_modified":"13415796578396867","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":4}},"https://one.google.com:443,*":{"expiration":"13423473505139560","last_modified":"13415697505139564","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://services.google.com:443,*":{"expiration":"13423476684123931","last_modified":"13415700684123934","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":2}},"https://store.steampowered.com:443,*":{"expiration":"13423474392004369","last_modified":"13415698392004373","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://support.cloud.google.com:443,*":{"expiration":"13423474393951565","last_modified":"13415698393951569","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://support.google.com:443,*":{"expiration":"13423568725830254","last_modified":"13415792725830257","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":19}},"https://workspace.google.com:443,*":{"expiration":"13423478045642983","last_modified":"13415702045642986","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":7}},"https://workspaceupdates.googleblog.com:443,*":{"expiration":"13423478009043777","last_modified":"13415702009043778","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://www.1edtech.org:443,*":{"expiration":"13423477689199623","last_modified":"13415701689199625","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":5}},"https://www.appsheet.com:443,*":{"expiration":"13423477846250959","last_modified":"13415701846250965","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://www.debian.org:443,*":{"expiration":"13423478133883365","last_modified":"13415702133883366","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://www.generic-mapping-tools.org:443,*":{"expiration":"13423478122002418","last_modified":"13415702122002421","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":3}},"https://www.goanywhere.com:443,*":{"expiration":"13423481058092026","last_modified":"13415705058092029","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://www.google.com:443,*":{"expiration":"13423474303221354","last_modified":"13415698303221356","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":3}},"https://www.imsglobal.org:443,*":{"expiration":"13423477677062564","last_modified":"13415701677062567","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":3}},"https://www.linkedin.com:443,*":{"expiration":"13423477669361892","last_modified":"13415701669361895","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://www.longview.org:443,*":{"expiration":"13423481310481674","last_modified":"13415705310481677","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://www.navigation.org:443,*":{"expiration":"13423481300985022","last_modified":"13415705300985025","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://www.skills.google:443,*":{"expiration":"13423476870366329","last_modified":"13415700870366331","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":2}},"https://www.youtube.com:443,*":{"expiration":"13423474523338759","last_modified":"13415698523338762","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}},"https://zenodo.org:443,*":{"expiration":"13423480674769347","last_modified":"13415704674769352","lifetime":"7776000000000","setting":{"hasHighScore":false,"lastMediaPlaybackTime":0.0,"mediaPlaybacks":0,"visits":1}}},"media_stream_camera":{},"media_stream_mic":{},"midi_sysex":{},"mixed_script":{},"nfc_devices":{},"notification_interactions":{},"notification_permission_review":{},"notifications":{},"ondevice_languages_downloaded":{},"password_protection":{},"payment_handler":{},"permission_actions_history":{},"permission_autoblocking_data":{"https://www.youtube.com:443,*":{"last_modified":"13415698520970478","setting":{"Notifications":{"ignore_count":1}}}},"permission_autorevocation_data":{},"pointer_lock":{},"popups":{},"protocol_handler":{},"reduced_accept_language":{},"safe_browsing_url_check_data":{},"sensors":{},"serial_chooser_data":{},"serial_guard":{},"site_engagement":{"chrome://newtab/,*":{"last_modified":"13415832235321474","setting":{"lastEngagementTime":1.3415770065860636e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":9.0,"rawScore":8.809152000000001}},"chrome://tab-search.top-chrome/,*":{"last_modified":"13415832235321547","setting":{"lastEngagementTime":1.341575641376318e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":3.0,"rawScore":3.0}},"https://about.appsheet.com:443,*":{"last_modified":"13415832235321334","setting":{"lastEngagementTime":1.3415759257692496e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":2.1,"rawScore":2.1}},"https://about.zenodo.org:443,*":{"last_modified":"13415832235321531","setting":{"lastEngagementTime":1.3415759602805808e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":2.7,"rawScore":2.7}},"https://accounts.google.com:443,*":{"last_modified":"13415832235321375","setting":{"lastEngagementTime":1.3415714877720544e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":0.0,"rawScore":5.1}},"https://business.google.com:443,*":{"last_modified":"13415832235321384","setting":{"lastEngagementTime":1.3415759375420896e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":3.9600000000000004,"rawScore":3.9600000000000004}},"https://cloud.google.com:443,*":{"last_modified":"13415832235321401","setting":{"lastEngagementTime":1.3415757572101484e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":15.0,"rawScore":15.0}},"https://community.d2l.com:443,*":{"last_modified":"13415832235321344","setting":{"lastEngagementTime":1.341575907941464e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":9.299999999999997,"rawScore":9.299999999999997}},"https://datacenters.google:443,*":{"last_modified":"13415832235321457","setting":{"lastEngagementTime":1.3415758125709452e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":10.259999999999996,"rawScore":10.259999999999996}},"https://discord.com:443,*":{"last_modified":"13415832235321352","setting":{"lastEngagementTime":1.3415770306480916e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":5.16,"rawScore":19.876800000000006}},"https://edu.google.com:443,*":{"last_modified":"13415832235321408","setting":{"lastEngagementTime":1.3415758093382472e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":7.499999999999998,"rawScore":7.499999999999998}},"https://epoch.ai:443,*":{"last_modified":"13415832235321310","setting":{"lastEngagementTime":1.3415762689687648e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":11.099999999999996,"rawScore":11.099999999999996}},"https://github.com:443,*":{"last_modified":"13415832235321360","setting":{"lastEngagementTime":1.3415753420765094e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":3.9000000000000004,"rawScore":3.9000000000000004}},"https://glama.ai:443,*":{"last_modified":"13415832235321322","setting":{"lastEngagementTime":1.3415753192513194e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":15.0,"rawScore":15.0}},"https://go.askjeremy.ai:443,*":{"last_modified":"13415832235321278","setting":{"lastEngagementTime":1.3415754916982136e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":2.1,"rawScore":2.1}},"https://knowledge.workspace.google.com:443,*":{"last_modified":"13415832235321433","setting":{"lastEngagementTime":1.3415758395791888e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":5.1,"rawScore":5.1}},"https://notebooklm.google.com:443,*":{"last_modified":"13415832235321416","setting":{"lastEngagementTime":1.3415803435321218e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":9.299999999999997,"rawScore":36.85453846092845}},"https://support.cloud.google.com:443,*":{"last_modified":"13415832235321392","setting":{"lastEngagementTime":1.3415755707510294e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":3.9000000000000004,"rawScore":3.9000000000000004}},"https://support.google.com:443,*":{"last_modified":"13415832235321425","setting":{"lastEngagementTime":1.3415761793398708e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":15.0,"rawScore":20.70000000000001}},"https://workspace.google.com:443,*":{"last_modified":"13415832235321442","setting":{"lastEngagementTime":1.3415759139293108e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":15.0,"rawScore":30.000000000000036}},"https://www.1edtech.org:443,*":{"last_modified":"13415832235321483","setting":{"lastEngagementTime":1.3415758891667218e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":5.1,"rawScore":5.1}},"https://www.debian.org:443,*":{"last_modified":"13415832235321490","setting":{"lastEngagementTime":1.3415759550006456e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":2.1,"rawScore":2.1}},"https://www.generic-mapping-tools.org:443,*":{"last_modified":"13415832235321498","setting":{"lastEngagementTime":1.3415759530890094e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":3.9000000000000004,"rawScore":3.9000000000000004}},"https://www.goanywhere.com:443,*":{"last_modified":"13415832235321368","setting":{"lastEngagementTime":1.3415762471228016e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":6.899999999999999,"rawScore":6.899999999999999}},"https://www.google.com:443,*":{"last_modified":"13415832235321450","setting":{"lastEngagementTime":1.3415753475639996e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":4.8,"rawScore":4.8}},"https://www.imsglobal.org:443,*":{"last_modified":"13415832235321507","setting":{"lastEngagementTime":1.3415758784730516e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":9.299999999999997,"rawScore":9.299999999999997}},"https://www.longview.org:443,*":{"last_modified":"13415832235321515","setting":{"lastEngagementTime":1.3415762162607196e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":2.7600000000000002,"rawScore":2.7600000000000002}},"https://www.navigation.org:443,*":{"last_modified":"13415832235321523","setting":{"lastEngagementTime":1.3415762123303946e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":3.3000000000000003,"rawScore":3.3000000000000003}},"https://www.skills.google:443,*":{"last_modified":"13415832235321466","setting":{"lastEngagementTime":1.3415758195980272e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":2.1,"rawScore":2.1}},"https://zenodo.org:443,*":{"last_modified":"13415832235321539","setting":{"lastEngagementTime":1.3415762085786192e+16,"lastShortcutLaunchTime":0.0,"pointsAddedToday":7.499999999999998,"rawScore":7.499999999999998}}},"sound":{},"speaker_selection":{},"ssl_cert_decisions":{},"storage_access":{},"storage_access_header_origin_trial":{},"subresource_filter":{},"subresource_filter_data":{},"suspicious_notification_ids":{},"suspicious_notification_show_original":{},"third_party_storage_partitioning":{},"top_level_storage_access":{},"tracking_protection":{},"unused_site_permissions":{},"usb_chooser_data":{},"usb_guard":{},"vr":{},"web_app_installation":{},"webid_api":{},"webid_auto_reauthn":{},"window_placement":{}},"permission_actions":{"notifications":[{"action":3,"prompt_disposition":1,"time":"13415698520970439"}]},"pref_version":1},"created_by_version":"144.0.7559.133","creation_time":"13415657436804698","exit_type":"Crashed","family_member_role":"family_manager","last_engagement_time":"13415803435321218","last_time_obsolete_http_credentials_removed":1771183896.858589,"last_time_password_store_metrics_reported":1771358665.106999,"managed":{"custodian_email":"garveyht@gmail.com","custodian_name":"Hayden Garvey","custodian_obfuscated_gaia_id":"100819125745700103222","custodian_profile_image_url":"https://lh3.googleusercontent.com/a/ACg8ocJ02ukvqC4H8BHk_hOE011Fa_SyiZju8cFASQRNAE1e35de1uHd-w","custodian_profile_url":"","locally_parent_approved_extensions":{},"locally_parent_approved_extensions_migration_state":1},"managed_user_id":"","name":"Your Chrome","password_hash_data_list":[],"safety_hub_menu_notifications":{"extensions":{"isCurrentlyActive":false,"result":{"timestamp":"13415698999495934","triggeringExtensions":[]}},"notification-permissions":{"isCurrentlyActive":false,"result":{"notificationPermissions":[],"timestamp":"13415692237581269"}},"passwords":{"isCurrentlyActive":false,"result":{"passwordCheckOrigins":[],"timestamp":"13415692237748416"}},"safe-browsing":{"isCurrentlyActive":false,"onlyShowAfterTime":"13415785399495898","result":{"safeBrowsingStatus":1,"timestamp":"13415698999495910"}},"unused-site-permissions":{"isCurrentlyActive":false,"result":{"permissions":[],"timestamp":"13415692237581291"}}},"were_old_google_logins_removed":true},"safebrowsing":{"advanced_protection_last_refresh":"13415920057413996","aesb_shown_notification":true,"aesb_sync_flow_last_user_interaction_state":1,"aesb_sync_flow_retry_state":3,"aesb_sync_flow_start_timestamp":"13415657490177337","event_timestamps":{},"hash_real_time_ohttp_expiration_time":"13416091435409408","hash_real_time_ohttp_key":"+wAgiPOpgmDO86Q+kGbEjaSrKbinrf14EtWyjJOtFriMFXEABAABAAI=","hash_real_time_ohttp_key_fetch_url":"https://safebrowsingohttpgateway.googleapis.com/v1/ohttp/hpkekeyconfig","metrics_last_log_time":"13415962555","scout_reporting_enabled_when_deprecated":false},"safety_hub":{"unused_site_permissions_revocation":{"migration_completed":true}},"saved_tab_groups":{"did_enable_shared_tab_groups_in_last_session":false,"specifics_to_data_migration":true},"savefile":{"default_directory":"/Users/garvey/Downloads"},"segmentation_platform":{"client_result_prefs":"ClIKDXNob3BwaW5nX3VzZXISQQo2DQAAAAAQpbHT2fay6hcaJAocChoNAAAAPxIMU2hvcHBpbmdVc2VyGgVPdGhlchIEEAIYBCADELPnrtiNtOoXCuUCChFjcm9zc19kZXZpY2VfdXNlchLPAgrDAg0AAIA/EOar09n2suoXGrACCqcCGqQCChkNAACAPxISTm9Dcm9zc0RldmljZVVzYWdlChgNAAAAQBIRQ3Jvc3NEZXZpY2VNb2JpbGUKGQ0AAEBAEhJDcm9zc0RldmljZURlc2t0b3AKGA0AAIBAEhFDcm9zc0RldmljZVRhYmxldAoiDQAAoEASG0Nyb3NzRGV2aWNlTW9iaWxlQW5kRGVza3RvcAohDQAAwEASGkNyb3NzRGV2aWNlTW9iaWxlQW5kVGFibGV0CiINAADgQBIbQ3Jvc3NEZXZpY2VEZXNrdG9wQW5kVGFibGV0CiANAAAAQRIZQ3Jvc3NEZXZpY2VBbGxEZXZpY2VUeXBlcwoXDQAAEEESEENyb3NzRGV2aWNlT3RoZXISEk5vQ3Jvc3NEZXZpY2VVc2FnZRIEEAcYBCACEIa309n2suoX","device_switcher_util":{"result":{"labels":["IosPhoneChrome","Desktop"]}},"last_db_compaction_time":"13415846399000000","uma_in_sql_start_time":"13415657436882411"},"sessions":{"event_log":[{"crashed":false,"time":"13415657436882042","type":0},{"did_schedule_command":true,"first_session_service":true,"tab_count":1,"time":"13415662290834343","type":2,"window_count":1},{"crashed":false,"time":"13415692237279425","type":0},{"did_schedule_command":true,"first_session_service":true,"tab_count":0,"time":"13415796578413084","type":2,"window_count":1},{"crashed":false,"time":"13415832235143691","type":0}],"session_data_status":1},"settings":{"force_google_safesearch":false},"sharing":{"fcm_registration":{"registration_timestamp":"13415832245124402"},"local_sharing_info":{"enabled_features":[4,8],"sender_id_target_info":{"device_auth_secret":"zPcGvyhAfwzxhnf7BVrU5A==","device_fcm_token":"fdYz2sIib5o:APA91bHwsaZ0dDq7KM92ZDd4-YG-kG3gWJfouIrN3etSgWvwaYqquo9r_65ryv2UGDUnzdWIQSyxjHyoFUoyLSKqmtxcoGHARYze9Ufe0Rroq6aMde3xUYA","device_p256dh":"BC/iwDLqXmOgpW4PaoCHDZmfb2z+bU8KXGQotBUNql8mOjXMLTTLcZSp6OW8zRN4VaTPhOmfXYD9L6aBcm7p7KM="}}},"should_read_incoming_syncing_theme_prefs":false,"signin":{"accounts_metadata_dict":{"100819125745700103222":{"ChromeSigninInterceptionUserChoice":2}},"allowed":true,"cookie_clear_on_exit_migration_notice_complete":true,"explicit_browser_signin":true,"prefs_themes_search_engines_account_storage_enabled":true,"signin_with_explicit_browser_signin_on":true},"site_search_settings":{"overridden_keywords":[]},"spellcheck":{"dictionaries":["en-US"]},"sync":{"cached_passphrase_type":2,"cached_persistent_auth_error":false,"cached_trusted_vault_auto_upgrade_experiment_group":"","data_type_status_for_sync_to_signin":{"account_setting":false,"ai_thread":false,"app_list":false,"app_settings":false,"apps":false,"arc_package":false,"autofill":false,"autofill_profiles":false,"autofill_valuable":false,"autofill_valuable_metadata":false,"autofill_wallet":false,"autofill_wallet_credential":false,"autofill_wallet_metadata":false,"autofill_wallet_offer":false,"autofill_wallet_usage":false,"bookmarks":false,"collaboration_group":false,"contact_info":false,"contextual_task":false,"cookies":false,"device_info":false,"dictionary":false,"extension_settings":false,"extensions":false,"history":false,"history_delete_directives":false,"incoming_password_sharing_invitation":false,"managed_user_settings":false,"nigori":false,"os_preferences":false,"os_priority_preferences":false,"outgoing_password_sharing_invitation":false,"passwords":false,"plus_address":false,"plus_address_setting":false,"preferences":false,"printers":false,"printers_authorization_servers":false,"priority_preferences":false,"product_comparison":false,"reading_list":false,"saved_tab_group":false,"search_engines":false,"security_events":false,"send_tab_to_self":false,"sessions":false,"shared_comment":false,"shared_tab_group_account_data":false,"shared_tab_group_data":false,"sharing_message":false,"themes":false,"user_consent":false,"user_events":false,"web_apps":false,"webapks":false,"webauthn_credential":false,"wifi_configurations":false,"workspace_desk":false},"encryption_bootstrap_token_per_account_migration_done":true,"feature_status_for_sync_to_signin":5,"gaia_id":"100819125745700103222","local_device_guids_with_timestamp":[{"cache_guid":"uKE8QSKdDFFemfHuaq+hSA==","timestamp":155275}],"transport_data_per_account":{"DmuYyJH14LWE8nAtb4x0mof3ObC3uVhW5gIgoy7X+/w=":{"sync.bag_of_chips":"Cn8SfUNocm9tZSBNQUMgMTQ0LjAuNzU1OS4xMzMgKDdkYTgyM2IxZDU5NGQxYjQ5Nzk3OTExOTAwZTAwM2VjOTZhOGMwZTctcmVmcy9icmFuY2gtaGVhZHMvNzU1OUB7IzQyNTN9KSBjaGFubmVsKHN0YWJsZSksZ3ppcChnZmUp","sync.birthday":"z00000160-b82e-f625-0000-00005a4bd2ad","sync.cache_guid":"uKE8QSKdDFFemfHuaq+hSA==","sync.last_poll_time":"13415960374027139","sync.last_synced_time":"13415962613551258","sync.short_poll_interval":"14400000000"}}},"syncing_theme_prefs_migrated_to_non_syncing":true,"tab_search":{"tab_index":1},"toolbar":{"pinned_cast_migration_complete":true,"pinned_chrome_labs_migration_complete":true},"total_passwords_available_for_account":722,"total_passwords_available_for_profile":0,"translate_site_blacklist":[],"translate_site_blocklist_with_time":{},"updateclientdata":{"apps":{"ghbmnnjooekpmoecnnnilnnbdlolhkhi":{"cohort":"1::","cohortname":"","dlrc":6988,"installdate":6985,"pf":"9954273a-c4dd-435d-a87f-9e58790bf38d"},"nmmhkkegccagdldgiimedpiccmgmieda":{"cohort":"1::","cohortname":"","dlrc":6988,"installdate":6985,"pf":"4aa5267c-3f6e-407c-a858-62180754dd7b"}}},"web_apps":{"daily_metrics":{"https://notebooklm.google.com/":{"background_duration_sec":0,"captures_links":false,"effective_display_mode":2,"foreground_duration_sec":0,"installed":false,"num_sessions":0,"promotable":true}},"daily_metrics_date":"13415781600000000","did_migrate_default_chrome_apps":["MigrateDefaultChromeAppToWebAppsGSuite","MigrateDefaultChromeAppToWebAppsNonGSuite"],"last_preinstall_synchronize_version":"144","migrated_default_apps":["aohghmighlieiainnegkcijnfilokake","aapocclcgogkmnckokdopfmhonfmgoek","felcaaldnbdncclmgdcncolpebgiejap","apdfllckaahabafndbhieahigkjlhalf","pjkljhegncpnkpknbcohdijeoejaedia","blpcfgokakmgnkcojhhkbfbldkacnbeo"],"web_app_ids":{"mdpkiolbdkhdjpekfbkbmhigcaggjagi":{"default_app_startup_update_last_ignore_time":"13415657899104231"}}},"webauthn":{"touchid":{"metadata_secret":"C5hA5MilC3Rm6wpW5z1SrR5iNMQLwsQh6/jd19uxPos="}},"zerosuggest":{"cachedresults":")]}'\n[\"\",[\"free ai video generator with no restrictions\",\"godebug\\u003dx509ignorecn\\u003d0\",\"best business gangster bad ass\",\"artificial intelligence\",\"cloudflare\",\"askjeremy.ai\",\"ftp mirrors¶\",\"Why are some popular JavaScript tools also unpopular?\",\"kling ai\",\"upsampler\",\"free ai video generator with no restrictions reddit\",\"free ai video generator no restrictions no sign up\"],[\"history\",\"history\",\"history\",\"history\",\"history\",\"history\",\"history\",\"\",\"\",\"\",\"\",\"\"],[],{\"google:clientdata\":{\"bpc\":false,\"tlw\":false},\"google:groupsinfo\":\"ChoIyN8CEhQKEkV4cGxvcmUgaW4gQUkgTW9kZQolCJBOEiAKGlJlbGF0ZWQgdG8gcmVjZW50IHNlYXJjaGVzEAEoAQ\\u003d\\u003d\",\"google:suggestdetail\":[{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dfree+ai+video+generator+with+no+restrictions\\u0026deltok\\u003dAMc44K6esVaHShps743o_LjzDfpX28znOw\\u0026gs_ri\\u003dchrome-ext-ansg\",\"zl\":40000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dgodebug%3Dx509ignorecn%3D0\\u0026deltok\\u003dAMc44K6_1DPJCHJkP6qkBK9vd7WjeF4D1A\\u0026gs_ri\\u003dchrome-ext-ansg\",\"zl\":40000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dbest+business+gangster+bad+ass\\u0026deltok\\u003dAMc44K7bXvnNaWwU66s34T1ZKuEd19Ie1w\\u0026gs_ri\\u003dchrome-ext-ansg\",\"zl\":40000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dartificial+intelligence\\u0026deltok\\u003dAMc44K4lfM2apbmRWA7PTr5mH4QKFtAXEw\\u0026gs_ri\\u003dchrome-ext-ansg\",\"zl\":40000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dcloudflare\\u0026delmid\\u003d/m/0h3tb9y\\u0026deltok\\u003dAMc44K55AMKS47cn2GDENZMpIlRjQIiXHA\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:entityinfo\":\"CgovbS8waDN0Yjl5Eh1JVCBzZXJ2aWNlIG1hbmFnZW1lbnQgY29tcGFueTLWBmRhdGE6aW1hZ2UvcG5nO2Jhc2U2NCxpVkJPUncwS0dnb0FBQUFOU1VoRVVnQUFBRUFBQUFCQUNBTUFBQUNkdDRIc0FBQUFoRkJNVkVYLy8vL3pnQ0Q2cmtEemZobjBrazM2clR6N3VXSHlkQUR5ZGdEeWNnRHpmUlR6ZkEveWVBRDFtRm4rOWZIOTdPTHpoQ3I1eHFuMGlUajkySy82cVMzMnFIZjd3bm4wa0VqNnF6WDd3Mzc1d0tEMW5XTDJvV3IrOHV2NzJjYjg0OVgzcllEM3M0cjBqRUQrNk5EOTM3MzZ6cmI2cGlIOHk1RDgxS1Q4ejVuN3ZXejZ0bGNLcFVEZ0FBQUJwMGxFUVZSWWhlMlUyWktDTUJCRlF3SWtrQkFXUWFJaW00cWovdi8vVFdSellJQ0o4eXJud1NxcVBKZnVUaE1BVmxaV1BnSjNmOUF3eGw3aUgvK2pwekZtdGlaQk5yT2M3RjJkNndScEx4Qk8zdk16WW10RHFPMis0YWVXOWd1RTFkdklKbndKVVo0bFJaTUJLRkQwY3pycGF4cmIvNlZ5TG4rTzB3M1VUU3piT2NXWTVyeVlLMENXNEMvNHFWV0xsTTNxY2dybGtyOGc5bGg4Tm1DKzd1RVFUcHZ6YWNxL0xGWGVReU1Bd3pDczdyOHpJcVVLU0hhc29NUUlIK09sY3NhN1B3WHl3RWJBR3FNNkR3TVNsUUJ5QVZzRHR2eE00T2xlbjk3ZUFkUUJ3T3dEWU5VTmdrY1dtOW4rQVN5V2Y3NktQZ0FhN1FMZ2hmbWhEbmtyRmZYYlFtRjBSWWl2K3Z5R0M4VGtKWWdKWVpUYXNpalBDOG95MW5YSFNmYnRDdkhiL1FGRkZkWUo4dGtkK2NxWHhqTWhsRk1veDgwSFFkQzgwemtja2lTS29qelBpNkx3dXgxMk43ZnI3bTVDbytraEk3TmRJN3VHTmpDcnJ1MW9Wa0xJS1RSek1IWmc0ZE1kQjN2U1AxV3ZVM3dHM0lHamNId3RtRXNmd2xHQXAreHJGZ0FDamdLMndFT3EyQUhZaE1ZUWNRT1JITGdhc1ErMjVvakg1TTJ3c3JLeThxbDhBNW92RzF3R3Jwb0RBQUFBQUVsRlRrU3VRbUNDOgpDbG91ZGZsYXJlSgcjYTM1NjE1Ujpnc19zc3A9ZUp6ajR0TFAxVGZJTUM1SnNxeFVZRFJnZEdEdzRrck95UzlOU2N0SkxFb0ZBRzNZQ0RvcBeKARtodHRwczovL3d3dy5jbG91ZGZsYXJlLmNvbS8\\u003d\",\"zl\":40000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003daskjeremy.ai\\u0026deltok\\u003dAMc44K5u7YTLDeD8hoUU0FBNNu8fyUpEBw\\u0026gs_ri\\u003dchrome-ext-ansg\",\"zl\":40000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dftp+mirrors%C2%B6\\u0026deltok\\u003dAMc44K6bQqZDNCXrijOtVgoeso3qa6SWsw\\u0026gs_ri\\u003dchrome-ext-ansg\",\"zl\":40000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dWhy+are+some+popular+JavaScript+tools+also+unpopular?\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K4zs-LokUoehqER4riQO2J58wsoxQ\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxo3CjVXaHkgYXJlIHNvbWUgcG9wdWxhciBKYXZhU2NyaXB0IHRvb2xzIGFsc28gdW5wb3B1bGFyPzIJCgN1ZG0SAjUwMgkKA2FlcBICMjk\\u003d\",\"zl\":45000},{\"zl\":10000},{\"zl\":10000},{\"zl\":10000},{\"zl\":10000}],\"google:suggesteventid\":\"907273635308621084\",\"google:suggestrelevance\":[1100,652,651,650,602,601,600,554,553,552,551,550],\"google:suggestsubtypes\":[[362,39],[362,39],[362,39],[362,39],[199,465,362,39],[362,39],[362,39],[731,798,752,362,308],[512,650,67,871,362,308],[512,650,67,871,362,308],[512,650,67,871,362,308],[512,650,67,871,362,308]],\"google:suggesttype\":[\"PERSONALIZED_QUERY\",\"PERSONALIZED_QUERY\",\"PERSONALIZED_QUERY\",\"PERSONALIZED_QUERY\",\"ENTITY\",\"PERSONALIZED_QUERY\",\"PERSONALIZED_QUERY\",\"QUERY\",\"QUERY\",\"QUERY\",\"QUERY\",\"QUERY\"]}]","cachedresults_with_url":{"https://www.google.com/search?q=FTP+Mirrors%C2%B6&sourceid=chrome&ie=UTF-8":")]}'\n[\"\",[\"Tell me about the different Qwen open source models\",\"What are the implications for chatbot regulation?\",\"How can different marketing channels be combined effectively?\",\"Why did Palantir\\u0027s recent quarterly results set records?\",\"How does the GitHub Copilot SDK expand its capabilities?\",\"How do language models process words expressing uncertainty?\",\"How does Gemini integration affect Siri\\u0027s user privacy?\",\"What are the developer experience challenges when working with Next.js?\"],[\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\"],[],{\"google:clientdata\":{\"bpc\":false,\"tlw\":false},\"google:groupsinfo\":\"ChcIwLgCEhEKD1JlY2VudCBzZWFyY2hlcwoaCMjfAhIUChJFeHBsb3JlIGluIEFJIE1vZGU\\u003d\",\"google:suggestdetail\":[{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dTell+me+about+the+different+Qwen+open+source+models\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K4r_hX3YNbre5ZHbuGvG6XvdHOktw\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxo1CjNUZWxsIG1lIGFib3V0IHRoZSBkaWZmZXJlbnQgUXdlbiBvcGVuIHNvdXJjZSBtb2RlbHMyCQoDdWRtEgI1MDIJCgNhZXASAjI5\",\"zl\":45000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dWhat+are+the+implications+for+chatbot+regulation?\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K6bdYAO2ZP_AkbBYyS-L8rglNFl_g\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxozCjFXaGF0IGFyZSB0aGUgaW1wbGljYXRpb25zIGZvciBjaGF0Ym90IHJlZ3VsYXRpb24/MgkKA3VkbRICNTAyCQoDYWVwEgIyOQ\\u003d\\u003d\",\"zl\":45000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dHow+can+different+marketing+channels+be+combined+effectively?\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K4hW6stRkc0QqtEYvT1QGdVVDsp6Q\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxo/Cj1Ib3cgY2FuIGRpZmZlcmVudCBtYXJrZXRpbmcgY2hhbm5lbHMgYmUgY29tYmluZWQgZWZmZWN0aXZlbHk/MgkKA3VkbRICNTAyCQoDYWVwEgIyOQ\\u003d\\u003d\",\"zl\":45000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dWhy+did+Palantir\\u0027s+recent+quarterly+results+set+records?\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K5w0Wwlz4DIZmv2hD9r6nRkZ8v1cw\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxo6CjhXaHkgZGlkIFBhbGFudGlyJ3MgcmVjZW50IHF1YXJ0ZXJseSByZXN1bHRzIHNldCByZWNvcmRzPzIJCgN1ZG0SAjUwMgkKA2FlcBICMjk\\u003d\",\"zl\":45000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dHow+does+the+GitHub+Copilot+SDK+expand+its+capabilities?\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K6W2OSh5KveZMdRuiiVOTWq9yRURA\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxo6CjhIb3cgZG9lcyB0aGUgR2l0SHViIENvcGlsb3QgU0RLIGV4cGFuZCBpdHMgY2FwYWJpbGl0aWVzPzIJCgN1ZG0SAjUwMgkKA2FlcBICMjk\\u003d\",\"zl\":45000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dHow+do+language+models+process+words+expressing+uncertainty?\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K4tBEr5wryacbD7CVSvIAByuGjSIw\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxo+CjxIb3cgZG8gbGFuZ3VhZ2UgbW9kZWxzIHByb2Nlc3Mgd29yZHMgZXhwcmVzc2luZyB1bmNlcnRhaW50eT8yCQoDdWRtEgI1MDIJCgNhZXASAjI5\",\"zl\":45000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dHow+does+Gemini+integration+affect+Siri\\u0027s+user+privacy?\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K5XeiW-AegPqtCefeySYlkgfsw43g\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxo5CjdIb3cgZG9lcyBHZW1pbmkgaW50ZWdyYXRpb24gYWZmZWN0IFNpcmkncyB1c2VyIHByaXZhY3k/MgkKA3VkbRICNTAyCQoDYWVwEgIyOQ\\u003d\\u003d\",\"zl\":45000},{\"du\":\"/complete/deleteitems?client\\u003dchrome-omni\\u0026delq\\u003dWhat+are+the+developer+experience+challenges+when+working+with+Next.js?\\u0026ucq\\u003d1\\u0026deltok\\u003dAMc44K4nH7roBgnrcbbL0Q6_fok7rf0B5Q\\u0026gs_ri\\u003dchrome-ext-ansg\",\"google:suggesttemplate\":\"CAIQAxpJCkdXaGF0IGFyZSB0aGUgZGV2ZWxvcGVyIGV4cGVyaWVuY2UgY2hhbGxlbmdlcyB3aGVuIHdvcmtpbmcgd2l0aCBOZXh0LmpzPzIJCgN1ZG0SAjUwMgkKA2FlcBICMjk\\u003d\",\"zl\":45000}],\"google:suggesteventid\":\"3499560262068941268\",\"google:suggestrelevance\":[601,600,555,554,553,552,551,550],\"google:suggestsubtypes\":[[731,798,752,524,362],[731,798,752,524,362],[731,798,752,524,362],[731,798,752,524,362],[731,798,752,524,362],[731,798,752,524,362],[731,798,752,524,362],[731,798,752,524,362]],\"google:suggesttype\":[\"QUERY\",\"QUERY\",\"QUERY\",\"QUERY\",\"QUERY\",\"QUERY\",\"QUERY\",\"QUERY\"],\"google:verbatimrelevance\":851}]"}}} \ No newline at end of file diff --git a/notebooklm_chrome_profile/Default/Reporting and NEL b/notebooklm_chrome_profile/Default/Reporting and NEL index fbaabfb45..c12bfaca6 100644 Binary files a/notebooklm_chrome_profile/Default/Reporting and NEL and b/notebooklm_chrome_profile/Default/Reporting and NEL differ diff --git a/notebooklm_chrome_profile/Default/Search Logos/metadata b/notebooklm_chrome_profile/Default/Search Logos/metadata index bb835e0f0..cdaa81dfb 100644 --- a/notebooklm_chrome_profile/Default/Search Logos/metadata +++ b/notebooklm_chrome_profile/Default/Search Logos/metadata @@ -1 +1 @@ -{"alt_text":"Ski Jumping 2026","animated_url":"","can_show_after_expiration":false,"cta_log_url":"","dark_animated_url":"","dark_background_color":"#1f1f1f","dark_cta_log_url":"","dark_height_px":200,"dark_log_url":"https://www.google.com/async/ddllog?async=doodle:481751193,slot:54,type:1,cta:0","dark_mime_type":"image/png","dark_num_bytes":22103,"dark_share_button_bg":"","dark_share_button_icon":"","dark_share_button_opacity":0.0,"dark_share_button_x":-1,"dark_share_button_y":-1,"dark_width_px":500,"expiration_time":"13415778794483072","fingerprint":"10ff4a6d","full_page_url":"","height_px":200,"iframe_height_px":0,"iframe_width_px":0,"log_url":"https://www.google.com/async/ddllog?async=doodle:481751193,slot:22,type:1,cta:0","mime_type":"image/png","num_bytes":22307,"on_click_url":"https://www.google.com/search?q=I+just+saw+a+ski+jumper+basically+fly.+How+is+that+even+possible?+I+know+the+shape+of+their+skis+is+a+really+big+deal%E2%80%94how+does+that+angle+actually+keep+them+in+the+air,+and+how+on+earth+did+they+figure+out+that+was+the+best+way+to+jump?&udm=50&oi=ddle&noiga=1&aep=84&source=doodle-ntp","share_button_bg":"","share_button_icon":"","share_button_opacity":0.0,"share_button_x":-1,"share_button_y":-1,"short_link":"https://share.google/He5BHR5EuLCJLmxwq","type":"SIMPLE","url":"https://www.google.com/async/ddljson?async=ntp:2","width_px":500} \ No newline at end of file +{"alt_text":"Ski Jumping 2026","animated_url":"","can_show_after_expiration":false,"cta_log_url":"","dark_animated_url":"","dark_background_color":"#1f1f1f","dark_cta_log_url":"","dark_height_px":200,"dark_log_url":"https://www.google.com/async/ddllog?async=doodle:481751193,slot:54,type:1,cta:0","dark_mime_type":"image/png","dark_num_bytes":22103,"dark_share_button_bg":"","dark_share_button_icon":"","dark_share_button_opacity":0.0,"dark_share_button_x":-1,"dark_share_button_y":-1,"dark_width_px":500,"expiration_time":"13415779128593909","fingerprint":"10ff4a6d","full_page_url":"","height_px":200,"iframe_height_px":0,"iframe_width_px":0,"log_url":"https://www.google.com/async/ddllog?async=doodle:481751193,slot:22,type:1,cta:0","mime_type":"image/png","num_bytes":22307,"on_click_url":"https://www.google.com/search?q=I+just+saw+a+ski+jumper+basically+fly.+How+is+that+even+possible?+I+know+the+shape+of+their+skis+is+a+really+big+deal%E2%80%94how+does+that+angle+actually+keep+them+in+the+air,+and+how+on+earth+did+they+figure+out+that+was+the+best+way+to+jump?&udm=50&oi=ddle&noiga=1&aep=84&source=doodle-ntp","share_button_bg":"","share_button_icon":"","share_button_opacity":0.0,"share_button_x":-1,"share_button_y":-1,"short_link":"https://share.google/He5BHR5EuLCJLmxwq","type":"SIMPLE","url":"https://www.google.com/async/ddljson?async=ntp:2","width_px":500} \ No newline at end of file diff --git a/notebooklm_chrome_profile/Default/Secure Preferences b/notebooklm_chrome_profile/Default/Secure Preferences index d7c79e992..fa054d461 100644 --- a/notebooklm_chrome_profile/Default/Secure Preferences +++ b/notebooklm_chrome_profile/Default/Secure Preferences @@ -1 +1 @@ -{"account_values":{"browser":{"show_home_button":false},"extensions":{"ui":{"developer_mode":true}},"homepage_is_newtabpage":true,"session":{"restore_on_startup":1,"startup_urls":["https://www.google.com/","https://app.tms.blujaysolutions.net/CarrierLoadsToMakeOffer.jsp?order=3&shipper=COCA-COLA+BEVERAGES+FLORIDA","https://app.tms.blujaysolutions.net/CarrierLoadsToMakeOffer.jsp?order=3&shipper=heartland","https://app.tms.blujaysolutions.net/CarrierLoadsToMakeOffer.jsp?order=3&shipper=REYES+LOGISTICS+","https://power.dat.com/postings/loads"]}},"extensions":{"settings":{"ahfgeienlihckogmohjhadlkjgocpleb":{"account_extension_type":0,"active_permissions":{"api":["management","system.display","system.storage","webstorePrivate","system.cpu","system.memory","system.network"],"explicit_host":[],"manifest_permissions":[],"scriptable_host":[]},"app_launcher_ordinal":"t","commands":{},"content_settings":[],"creation_flags":1,"disable_reasons":[],"events":[],"first_install_time":"13415657436885222","from_webstore":false,"incognito_content_settings":[],"incognito_preferences":{},"last_update_time":"13415657436885222","location":5,"manifest":{"app":{"launch":{"web_url":"https://chrome.google.com/webstore"},"urls":["https://chrome.google.com/webstore"]},"description":"Discover great apps, games, extensions and themes for Google Chrome.","icons":{"128":"webstore_icon_128.png","16":"webstore_icon_16.png"},"key":"MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCtl3tO0osjuzRsf6xtD2SKxPlTfuoy7AWoObysitBPvH5fE1NaAA1/2JkPWkVDhdLBWLaIBPYeXbzlHp3y4Vv/4XG+aN5qFE3z+1RU/NqkzVYHtIpVScf3DjTYtKVL66mzVGijSoAIwbFCC3LpGdaoe6Q1rSRDp76wR6jjFzsYwQIDAQAB","name":"Web Store","permissions":["webstorePrivate","management","system.cpu","system.display","system.memory","system.network","system.storage"],"version":"0.2"},"needs_sync":true,"page_ordinal":"n","path":"/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/144.0.7559.133/Resources/web_store","preferences":{},"regular_only_preferences":{},"was_installed_by_default":false,"was_installed_by_oem":false},"fignfifoniblkonapihmkfakmlgkbkcf":{"account_extension_type":0,"active_permissions":{"api":["metricsPrivate","systemPrivate","ttsEngine","offscreen"],"explicit_host":["https://www.google.com/*"],"manifest_permissions":[],"scriptable_host":[]},"commands":{},"content_settings":[],"creation_flags":1,"disable_reasons":[],"first_install_time":"13415657436886507","from_webstore":false,"incognito_content_settings":[],"incognito_preferences":{},"last_update_time":"13415657436886507","location":5,"manifest":{"background":{"service_worker":"service_worker.js"},"description":"Component extension providing speech via the Google network text-to-speech service.","host_permissions":["https://www.google.com/"],"key":"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5mnqF6oM8Q5tYd7YqL40YL7Keftt4PwydehlNOyNlCiWDM/7SiQYwxYvVHMj1i03z7B5lZXQinrcqhHhoIgcSHK1JrdzVSJxPRVdmV0rJLv0KQgmVwL8p8MfN6SmHs+72xz+1GoRWpd0WlHMil7RzGKJA4Ku+9jxxsXoxes9eeV1hCavkb1dSF+mlQbaNiw7u1hhvc5mmeuEcWjoce8r8B2R4wmnGbuTLfoSchZ6jkasynmOaFxyT4jiYDYgrNtWRTQ/9PuPduJ+uBWVT/o2ZhDK2XcywVwzUfYIXDLDblK+YdZi8w8ZBNvc7hP9/iZr6/eoUpfsLa8qlJgyLBQebwIDAQAB","manifest_version":3,"name":"Google Network Speech","permissions":["metricsPrivate","offscreen","systemPrivate","ttsEngine"],"tts_engine":{"voices":[{"event_types":["start","end","error"],"gender":"female","lang":"de-DE","remote":true,"voice_name":"Google Deutsch"},{"event_types":["start","end","error"],"gender":"female","lang":"en-US","remote":true,"voice_name":"Google US English"},{"event_types":["start","end","error"],"gender":"female","lang":"en-GB","remote":true,"voice_name":"Google UK English Female"},{"event_types":["start","end","error"],"gender":"male","lang":"en-GB","remote":true,"voice_name":"Google UK English Male"},{"event_types":["start","end","error"],"gender":"female","lang":"es-ES","remote":true,"voice_name":"Google español"},{"event_types":["start","end","error"],"gender":"female","lang":"es-US","remote":true,"voice_name":"Google español de Estados Unidos"},{"event_types":["start","end","error"],"gender":"female","lang":"fr-FR","remote":true,"voice_name":"Google français"},{"event_types":["start","end","error"],"gender":"female","lang":"hi-IN","remote":true,"voice_name":"Google हिन्दी"},{"event_types":["start","end","error"],"gender":"female","lang":"id-ID","remote":true,"voice_name":"Google Bahasa Indonesia"},{"event_types":["start","end","error"],"gender":"female","lang":"it-IT","remote":true,"voice_name":"Google italiano"},{"event_types":["start","end","error"],"gender":"female","lang":"ja-JP","remote":true,"voice_name":"Google 日本語"},{"event_types":["start","end","error"],"gender":"female","lang":"ko-KR","remote":true,"voice_name":"Google 한국의"},{"event_types":["start","end","error"],"gender":"female","lang":"nl-NL","remote":true,"voice_name":"Google Nederlands"},{"event_types":["start","end","error"],"gender":"female","lang":"pl-PL","remote":true,"voice_name":"Google polski"},{"event_types":["start","end","error"],"gender":"female","lang":"pt-BR","remote":true,"voice_name":"Google português do Brasil"},{"event_types":["start","end","error"],"gender":"female","lang":"ru-RU","remote":true,"voice_name":"Google русский"},{"event_types":["start","end","error"],"gender":"female","lang":"zh-CN","remote":true,"voice_name":"Google 普通话(中国大陆)"},{"event_types":["start","end","error"],"gender":"female","lang":"zh-HK","remote":true,"voice_name":"Google 粤語(香港)"},{"event_types":["start","end","error"],"gender":"female","lang":"zh-TW","remote":true,"voice_name":"Google 國語(臺灣)"}]},"version":"1.0"},"path":"/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/144.0.7559.133/Resources/network_speech_synthesis/mv3","preferences":{},"regular_only_preferences":{},"service_worker_registration_info":{"version":"1.0"},"serviceworkerevents":["ttsEngine.onPause","ttsEngine.onResume","ttsEngine.onSpeak","ttsEngine.onStop"],"was_installed_by_default":false,"was_installed_by_oem":false},"ghbmnnjooekpmoecnnnilnnbdlolhkhi":{"account_extension_type":0,"ack_external":true,"active_bit":false,"active_permissions":{"api":["alarms","storage","unlimitedStorage","offscreen"],"explicit_host":["https://docs.google.com/*","https://drive.google.com/*"],"manifest_permissions":[],"scriptable_host":[]},"allowlist":1,"commands":{},"content_settings":[],"creation_flags":137,"cws-info":{"is-live":true,"is-present":true,"last-updated-time-millis":"1770710400000","no-privacy-practice":false,"unpublished-long-ago":false,"violation-type":0},"disable_reasons":[],"first_install_time":"13415657477915101","from_webstore":true,"granted_permissions":{"api":["alarms","storage","unlimitedStorage","offscreen"],"explicit_host":["https://docs.google.com/*","https://drive.google.com/*"],"manifest_permissions":[],"scriptable_host":[]},"incognito_content_settings":[],"incognito_preferences":{},"last_update_time":"13415657477915101","lastpingday":"13415616001735658","location":6,"manifest":{"author":{"email":"docs-hosted-app-own@google.com"},"background":{"service_worker":"service_worker_bin_prod.js"},"content_capabilities":{"matches":["https://docs.google.com/*","https://drive.google.com/*","https://drive-autopush.corp.google.com/*","https://drive-daily-0.corp.google.com/*","https://drive-daily-1.corp.google.com/*","https://drive-daily-2.corp.google.com/*","https://drive-daily-3.corp.google.com/*","https://drive-daily-4.corp.google.com/*","https://drive-daily-5.corp.google.com/*","https://drive-daily-6.corp.google.com/*","https://drive-preprod.corp.google.com/*","https://drive-staging.corp.google.com/*"],"permissions":["clipboardRead","clipboardWrite","unlimitedStorage"]},"content_security_policy":{"extension_pages":"script-src 'self'; object-src 'self'"},"current_locale":"en_US","default_locale":"en_US","description":"Edit, create, and view your documents, spreadsheets, and presentations — all without internet access.","externally_connectable":{"matches":["https://docs.google.com/*","https://drive.google.com/*","https://drive-autopush.corp.google.com/*","https://drive-daily-0.corp.google.com/*","https://drive-daily-1.corp.google.com/*","https://drive-daily-2.corp.google.com/*","https://drive-daily-3.corp.google.com/*","https://drive-daily-4.corp.google.com/*","https://drive-daily-5.corp.google.com/*","https://drive-daily-6.corp.google.com/*","https://drive-preprod.corp.google.com/*","https://drive-staging.corp.google.com/*"]},"host_permissions":["https://docs.google.com/*","https://drive.google.com/*"],"icons":{"128":"128.png"},"key":"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnF7RGLAxIon0/XeNZ4MLdP3DMkoORzEAKVg0sb89JpA/W2osTHr91Wqwdc9lW0mFcSpCYS9Y3e7cUMFo/M2ETASIuZncMiUzX2/0rrWtGQ3UuEj3KSe5PdaVZfisyJw/FebvHwirEWrhqcgzVUj9fL9YjE0G45d1zMKcc1umKvLqPyTznNuKBZ9GJREdGLRJCBmUgCkI8iwtwC+QZTUppmaD50/ksnEUXv+QkgGN07/KoNA5oAgo49Jf1XBoMv4QXtVZQlBYZl84zAsI82hb63a6Gu29U/4qMWDdI7+3Ne5TRvo6Zi3EI4M2NQNplJhik105qrz+eTLJJxvf4slrWwIDAQAB","manifest_version":3,"minimum_chrome_version":"88","name":"Google Docs Offline","permissions":["alarms","storage","unlimitedStorage","offscreen"],"storage":{"managed_schema":"dasherSettingSchema.json"},"update_url":"https://clients2.google.com/service/update2/crx","version":"1.100.1","web_accessible_resources":[{"matches":["\u003Call_urls>"],"resources":["page_embed_script.js"]}]},"path":"ghbmnnjooekpmoecnnnilnnbdlolhkhi/1.100.1_0","preferences":{},"regular_only_preferences":{},"service_worker_registration_info":{"version":"1.100.1"},"serviceworkerevents":["alarms.onAlarm","runtime.onConnectExternal"],"was_installed_by_default":true,"was_installed_by_oem":false,"withholding_permissions":false},"mhjfbmdgcfjbbpaeojofohoefgiehjai":{"account_extension_type":0,"active_permissions":{"api":["contentSettings","fileSystem","fileSystem.write","metricsPrivate","tabs","resourcesPrivate","pdfViewerPrivate"],"explicit_host":["chrome://resources/*","chrome://webui-test/*"],"manifest_permissions":[],"scriptable_host":[]},"commands":{},"content_settings":[],"creation_flags":1,"disable_reasons":[],"events":[],"first_install_time":"13415657436885643","from_webstore":false,"incognito_content_settings":[],"incognito_preferences":{},"last_update_time":"13415657436885643","location":5,"manifest":{"content_security_policy":"script-src 'self' blob: filesystem: chrome://resources chrome://webui-test; object-src * blob: externalfile: file: filesystem: data:","description":"","incognito":"split","key":"MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDN6hM0rsDYGbzQPQfOygqlRtQgKUXMfnSjhIBL7LnReAVBEd7ZmKtyN2qmSasMl4HZpMhVe2rPWVVwBDl6iyNE/Kok6E6v6V3vCLGsOpQAuuNVye/3QxzIldzG/jQAdWZiyXReRVapOhZtLjGfywCvlWq7Sl/e3sbc0vWybSDI2QIDAQAB","manifest_version":2,"mime_types":["application/pdf"],"mime_types_handler":"index.html","name":"Chrome PDF Viewer","offline_enabled":true,"permissions":["chrome://resources/","chrome://webui-test/","contentSettings","metricsPrivate","pdfViewerPrivate","resourcesPrivate","tabs",{"fileSystem":["write"]}],"version":"1","web_accessible_resources":["pdf_embedder.css"]},"path":"/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/144.0.7559.133/Resources/pdf","preferences":{},"regular_only_preferences":{},"was_installed_by_default":false,"was_installed_by_oem":false},"nkeimhogjdpnpccoofpliimaahmaaome":{"account_extension_type":0,"active_permissions":{"api":["processes","webrtcLoggingPrivate","system.cpu","enterprise.hardwarePlatform"],"explicit_host":[],"manifest_permissions":[],"scriptable_host":[]},"commands":{},"content_settings":[],"creation_flags":1,"disable_reasons":[],"events":["runtime.onConnectExternal"],"first_install_time":"13415657436886224","from_webstore":false,"incognito_content_settings":[],"incognito_preferences":{},"last_update_time":"13415657436886224","location":5,"manifest":{"background":{"page":"background.html","persistent":false},"externally_connectable":{"ids":["moklfjoegmpoolceggbebbmgbddlhdgp","ldmpofkllgeicjiihkimgeccbhghhmfj","denipklgekfpcdmbahmbpnmokgajnhma","kjfhgcncjdebkoofmbjoiemiboifnpbo","ikfcpmgefdpheiiomgmhlmmkihchmdlj","jlgegmdnodfhciolbdjciihnlaljdbjo","lkbhffjfgpmpeppncnimiiikojibkhnm","acdafoiapclbpdkhnighhilgampkglpc","hkamnlhnogggfddmjomgbdokdkgfelgg"],"matches":["https://*.meet.google.com/*"]},"incognito":"split","key":"MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDAQt2ZDdPfoSe/JI6ID5bgLHRCnCu9T36aYczmhw/tnv6QZB2I6WnOCMZXJZlRdqWc7w9jo4BWhYS50Vb4weMfh/I0On7VcRwJUgfAxW2cHB+EkmtI1v4v/OU24OqIa1Nmv9uRVeX0GjhQukdLNhAE6ACWooaf5kqKlCeK+1GOkQIDAQAB","manifest_version":2,"name":"Google Hangouts","permissions":["enterprise.hardwarePlatform","processes","system.cpu","webrtcLoggingPrivate"],"version":"1.3.26"},"path":"/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/144.0.7559.133/Resources/hangout_services","preferences":{},"regular_only_preferences":{},"was_installed_by_default":false,"was_installed_by_oem":false},"nmmhkkegccagdldgiimedpiccmgmieda":{"account_extension_type":0,"ack_external":true,"active_bit":false,"active_permissions":{"api":["identity","webview"],"explicit_host":["https://payments.google.com/*","https://sandbox.google.com/*","https://www.google.com/*","https://www.googleapis.com/*"],"manifest_permissions":[],"scriptable_host":[]},"allowlist":1,"commands":{},"content_settings":[],"creation_flags":137,"cws-info":{"is-live":true,"is-present":true,"last-updated-time-millis":"1611820800000","no-privacy-practice":false,"unpublished-long-ago":false,"violation-type":0},"disable_reasons":[],"events":["app.runtime.onLaunched","runtime.onConnectExternal"],"first_install_time":"13415657477580428","from_webstore":true,"granted_permissions":{"api":["identity","webview"],"explicit_host":["https://payments.google.com/*","https://sandbox.google.com/*","https://www.google.com/*","https://www.googleapis.com/*"],"manifest_permissions":[],"scriptable_host":[]},"incognito_content_settings":[],"incognito_preferences":{},"last_update_time":"13415657477580428","lastpingday":"13415616001735658","location":10,"manifest":{"app":{"background":{"scripts":["craw_background.js"]}},"current_locale":"en_US","default_locale":"en","description":"Chrome Web Store Payments","display_in_launcher":false,"display_in_new_tab_page":false,"icons":{"128":"images/icon_128.png","16":"images/icon_16.png"},"key":"MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCrKfMnLqViEyokd1wk57FxJtW2XXpGXzIHBzv9vQI/01UsuP0IV5/lj0wx7zJ/xcibUgDeIxobvv9XD+zO1MdjMWuqJFcKuSS4Suqkje6u+pMrTSGOSHq1bmBVh0kpToN8YoJs/P/yrRd7FEtAXTaFTGxQL4C385MeXSjaQfiRiQIDAQAB","manifest_version":2,"minimum_chrome_version":"29","name":"Chrome Web Store Payments","oauth2":{"auto_approve":true,"client_id":"203784468217.apps.googleusercontent.com","scopes":["https://www.googleapis.com/auth/sierra","https://www.googleapis.com/auth/sierrasandbox","https://www.googleapis.com/auth/chromewebstore","https://www.googleapis.com/auth/chromewebstore.readonly"]},"permissions":["identity","webview","https://www.google.com/","https://www.googleapis.com/*","https://payments.google.com/payments/v4/js/integrator.js","https://sandbox.google.com/payments/v4/js/integrator.js"],"update_url":"https://clients2.google.com/service/update2/crx","version":"1.0.0.6"},"path":"nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.6_0","preferences":{},"regular_only_preferences":{},"running":false,"was_installed_by_default":true,"was_installed_by_oem":false}}},"google":{"services":{"account_id":"100819125745700103222","last_signed_in_username":"garveyht@gmail.com"}},"pinned_tabs":[],"protection":{"macs":{"account_values":{"browser":{"show_home_button":"90BEC96796F35A2B2E5ACF513E8CEEFD5E7A7D241FF71A4975462DD266770CB2","show_home_button_encrypted_hash":"djEwiYEtgmnp7Z1N1I+MIVdgZ4V81758MIruV+Qrw47FzRm1CPfaYZ0M4UWDVX4zdS0U"},"extensions":{"ui":{"developer_mode":"6B0F18070FE5D0C707877FF787416053BEED831B55A42953AD063265EC40FF17","developer_mode_encrypted_hash":"djEwy66tBfRQpsq/DeRe8Hsj3klumvPEn5DpmgeawXvl92VFeXKl/eis8GHUbR2OxhED"}},"homepage":"8041202E5A9B1A6FA3478B880B13E018ECD820F80DD5E465D8E783BBF163F6DC","homepage_encrypted_hash":"djEwLgGSI/ZgN/cqES+9X8LdTljhMW+H6nSHzppB6uUUKCYO8IL/DNICzZS+3/ikfl9+","homepage_is_newtabpage":"DC44EEA01D170B0B480865C853017D7AD48EF556C289279CFFD76AD21DBA4034","homepage_is_newtabpage_encrypted_hash":"djEwRxrGlOOPQTrcdeNYuWG/7cViHmKilXYqAm5zZbF6qJ9Sy3286KGhPojj8S8N7TMF","session":{"restore_on_startup":"3CC8766658CD577F52F1155DBC595084702910A017E70CA5E634CCC5988B63EB","restore_on_startup_encrypted_hash":"djEwTkw8tdsqrnwnRJWnlqYpcIZEArwiL89gnI8sbnnnZiOxOu+LMgB4NgDy6e9GZMRS","startup_urls":"C4F45CF978D9548F0DD8B5B39F5146398C4B52296A6E9AAB78C6254AC3A12C55","startup_urls_encrypted_hash":"djEwqmvvu6l9sccuZMnA8vGXnDb+mkq1FnKJuV5A4n+2iOhb9bnCwOAYYzWsJrSad0hh"}},"browser":{"show_home_button":"FBFF07CE9FB8CB9DBA2C4395A3206DAF1F2E8C9E7EDF95EA6671137F3CF8FEBE","show_home_button_encrypted_hash":"djEwGnJwD3oP4/wUGOKI125J5ffnn7ma4MLiDOP7kn+yL3eVv/WXoqZkYMy+GgE9dgAT"},"default_search_provider_data":{"template_url_data":"8C80B92384D777F3431951FEC28BB11805F794B8E89C699EE751B974DE28E76C","template_url_data_encrypted_hash":"djEwU0z9SeuIbpc+9Dfkb9EX3kDNcFG8dXHaRiFVdGDN4CiYTJIkVGnaLsloGH3RDeMu"},"enterprise_signin":{"policy_recovery_token":"02A7A36A8D5CED6A40C35995BAD425FB15803D61EDDD17B66DD761C3D85F4AEC","policy_recovery_token_encrypted_hash":"djEwgJBgXHr2nLZAAEcdUw+t7MxofR5NUaMkDslfStzb4cLAEUKx7nCZ+bar0Upl3L7g"},"extensions":{"install":{"initiallist":"E4529CCFE0565988A76F1CC19027EA63AE9B507796253563D4A3C68D74F6789E","initiallist_encrypted_hash":"djEwqVFoD857y8F0gTsxQT0rKCwGKBg1fJ8En30Voz/y1DwFUnltHCHU+/qmYbIzVyga","initialprovidername":"3B77CF973CCCAE845467C4E77A02AE51C6A7D05AF360618D338DB1762171043F","initialprovidername_encrypted_hash":"djEwQkoOUJUTqTmfU99eDfkQL3lf6fDIQKCA1DPpt4hpRyOzaan2cdksEG6YVwiSzivW"},"settings":{"ahfgeienlihckogmohjhadlkjgocpleb":"3AF8818B4B93E12998710F71833DF96522508D5344508D1573826AB4474CC00D","fignfifoniblkonapihmkfakmlgkbkcf":"A24AFC96D65F7A2517454BB8CB185B03ED5FC63688B82C8C57C7B0E86461FF41","ghbmnnjooekpmoecnnnilnnbdlolhkhi":"2A2828E882F5B47B561C11E02279D446A56499C0114D4BEC392EEB76549B330E","mhjfbmdgcfjbbpaeojofohoefgiehjai":"445B47BB87D0DDA10E1123C96289407895FC2947B3AADA3D160C3961528AEF89","nkeimhogjdpnpccoofpliimaahmaaome":"776F54C404144B9E32C6D1FBB8E49A9723BAD5FD26275E1234671DB79E4AFF00","nmmhkkegccagdldgiimedpiccmgmieda":"DFABB0C469D7BF4F1878922B8A1C74F30F82D9BE24B54361ADC09D48361F7893"},"settings_encrypted_hash":{"ahfgeienlihckogmohjhadlkjgocpleb":"djEwbbGBzapOFkjeFtwe8sel/dJw6k4oBNLIJCmUpP9zq1K1vSP29BKpWxMccGU36SuX","fignfifoniblkonapihmkfakmlgkbkcf":"djEw6Cz1RucR0CRRXjGXDeTtcR725GaXo6fB5xTFrAcsNuYgyBArpihhrO1YX3q8eRyv","ghbmnnjooekpmoecnnnilnnbdlolhkhi":"djEwxlcI3aPchcQzdTh81BZM8xYytkuz3GkhHUiaQXWNo+ph5Y9OT0re6qi/SZP9s68Z","mhjfbmdgcfjbbpaeojofohoefgiehjai":"djEwFxtJB9woM9XBsi7SfbGjeyeEIknG9yPRebaj3yCcGv9dr3iscMkDV8ExvkRKT4yf","nkeimhogjdpnpccoofpliimaahmaaome":"djEwwEyBhcoyZBkfbznGhDF3wvRIutlxpQsI0Us1ZOc6kH6J4d6D1HiraNLBhnVaqeV3","nmmhkkegccagdldgiimedpiccmgmieda":"djEwSMpkt6ggEA0S6w53fnvG4+IRec7ZXjtzsVHvnz9U9AkqnNFcP1+h18427JZC82vC"},"ui":{"developer_mode":"92432BC8B8D1F536AED813A476F47BCFEF8BE8AD6AE4024B49C7C7F1F1E775F2","developer_mode_encrypted_hash":"djEwM7lfpV49dUmshq8bvh/5dpzZJiYyf3D4SIFAWGSMktCrEYIOAFszS8EjBYrUMaKL"}},"google":{"services":{"account_id":"5B5A888B54901C03F8CBFC78ED0329BAEA64F6FA63FD2674040B3DB4007EAAFA","account_id_encrypted_hash":"djEwb3qhnbmuOu6crDt5sarC2JkzPfCa/nKQGWDnvqKBZ61ZYfCMDQX0yRMq8X6s0gYU","last_signed_in_username":"662FA72E03BF36C47FDACF125FC8E7AB61EC8FC8DEB1A6306EE9561B0F7D456A","last_signed_in_username_encrypted_hash":"djEwaiU9/ZSCWcbx4Xjny9Cw1lGr2oVok+u9BhNPo9oN1msxyeoi/ebu1ZF39uJCI4EQ","last_username":"20349FE2BF43E9CC348D11EECF0872AD38E9EDAC07D76F3DD4FC900256404A19","last_username_encrypted_hash":"djEwf0eTg8bC8aDKXUEIjB8PKy2GRIn6XwqUyJ4xl3h6//zBtPbFgBy7eAV1UJ+V8pha"}},"homepage":"5A7F5420C4DD060E251ABE8F82D2968A8A5BD9593F7C736863908A669376AC22","homepage_encrypted_hash":"djEwYnIDLV9/KUlAWvyb3+XZbixX8xClrWcfAkwgG44Y+FBt2xdMcCZwX68QnAPrQNRO","homepage_is_newtabpage":"6B92BB56E6DB0907B1B46353B69D6EC6A027AA90DCE888F030EA06E0A9602F0C","homepage_is_newtabpage_encrypted_hash":"djEwdepJhmsU3jdiM1CgVOKXK+RPR7RiBNbB+3VJjkuAu1v8ul2EV4QphPOFyJ7T32J2","media":{"storage_id_salt":"C695CA8104FA9F7A80277EB9D2124F82B996AC66FA487F6AB9949FF789CEBAAC","storage_id_salt_encrypted_hash":"djEwbg13Kqm2w1fADhNJgGXHtlUUYwGUfWPCNLq0y+CvKUuOt3s9kFC5mwIL/4vomW6g"},"pinned_tabs":"6CF86A73ED44D968E8FF6B4CD4A67279C61443B4D701EB27A5158DD26444A5EA","pinned_tabs_encrypted_hash":"djEwe6eivIy5Whw9OyyB1UoOccWKUc1b2RUhr/o2D0cCFv4wVTXL76KMteagH5i17qNM","prefs":{"preference_reset_time":"A0E552B7CA383810B2737901F77D5215898276729CAA69B104330DF1EAEDB554","preference_reset_time_encrypted_hash":"djEwdylbcQo2+WkMOt5Jkxl3IwC+YZFKCU7GD3vnG4pTzCP5qab3X7VThKHlpsCoZ5yG"},"safebrowsing":{"incidents_sent":"F8FF975C7F5177B1C6A2E29B818A9DBB6E96784060E92E30C5B3040006D2D31E","incidents_sent_encrypted_hash":"djEwpVUiS4ycyXv/1EyWWm1JuI8UCjSa8FeLKBwpW6LQsFrtt6UkZvwWZGw9J8y04OZb"},"schedule_to_flush_to_disk":"CC82E164AC6585D872FAA5F133748FEFBBFD7095AB9E843EC6D372CD4086BDAE","schedule_to_flush_to_disk_encrypted_hash":"djEwX6/gcpp1mb6d60wuo1ajyeeSsX+ftnIrF/h8xKePT9BBXXLsTJiVCSu8Z40wwkam","search_provider_overrides":"B6C4EABAE83EB112CE525752F8541A090951429DAD64928A0C33635B3B37CA87","search_provider_overrides_encrypted_hash":"djEw6JFwi+ti7X6JxHM4yQtxipeyOaiTQIbb3uliyKgPs8+20E0kBuDe2kN9WSPKuYGG","session":{"restore_on_startup":"50A7FE41151F716E1CD06A8199819E97E99E674DB10AD8205E851877747FAA40","restore_on_startup_encrypted_hash":"djEwreh13zJ3hBnyB9/9bOg0rEoZzWEN11CKV7pOXnJ2hidOExVmdDkCeqiCeGgJg4ju","startup_urls":"E70F5DFC40B3C7A44CD06F977235F1A597BB084228A22E0AA6B49A5C18CEF211","startup_urls_encrypted_hash":"djEwqo+FcunuOha0iWRE6AHCCnOh6xvFNe0atMcFn8VVGQ40UcmtiEB41qIBfCdN0KP6"}},"super_mac":"AEB7BE6BAD381A68E182477B9DEFC6E97A316A80D308F8FDEEDF5F33B34B624F"},"schedule_to_flush_to_disk":"13415692237546925"} \ No newline at end of file +{"account_values":{"browser":{"show_home_button":false},"extensions":{"ui":{"developer_mode":true}},"homepage_is_newtabpage":true,"session":{"restore_on_startup":1,"startup_urls":["https://www.google.com/","https://app.tms.blujaysolutions.net/CarrierLoadsToMakeOffer.jsp?order=3&shipper=COCA-COLA+BEVERAGES+FLORIDA","https://app.tms.blujaysolutions.net/CarrierLoadsToMakeOffer.jsp?order=3&shipper=heartland","https://app.tms.blujaysolutions.net/CarrierLoadsToMakeOffer.jsp?order=3&shipper=REYES+LOGISTICS+","https://power.dat.com/postings/loads"]}},"extensions":{"settings":{"ahfgeienlihckogmohjhadlkjgocpleb":{"account_extension_type":0,"active_permissions":{"api":["management","system.display","system.storage","webstorePrivate","system.cpu","system.memory","system.network"],"explicit_host":[],"manifest_permissions":[],"scriptable_host":[]},"app_launcher_ordinal":"t","commands":{},"content_settings":[],"creation_flags":1,"disable_reasons":[],"events":[],"first_install_time":"13415657436885222","from_webstore":false,"incognito_content_settings":[],"incognito_preferences":{},"last_update_time":"13415657436885222","location":5,"manifest":{"app":{"launch":{"web_url":"https://chrome.google.com/webstore"},"urls":["https://chrome.google.com/webstore"]},"description":"Discover great apps, games, extensions and themes for Google Chrome.","icons":{"128":"webstore_icon_128.png","16":"webstore_icon_16.png"},"key":"MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCtl3tO0osjuzRsf6xtD2SKxPlTfuoy7AWoObysitBPvH5fE1NaAA1/2JkPWkVDhdLBWLaIBPYeXbzlHp3y4Vv/4XG+aN5qFE3z+1RU/NqkzVYHtIpVScf3DjTYtKVL66mzVGijSoAIwbFCC3LpGdaoe6Q1rSRDp76wR6jjFzsYwQIDAQAB","name":"Web Store","permissions":["webstorePrivate","management","system.cpu","system.display","system.memory","system.network","system.storage"],"version":"0.2"},"needs_sync":true,"page_ordinal":"n","path":"/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/144.0.7559.133/Resources/web_store","preferences":{},"regular_only_preferences":{},"was_installed_by_default":false,"was_installed_by_oem":false},"fignfifoniblkonapihmkfakmlgkbkcf":{"account_extension_type":0,"active_permissions":{"api":["metricsPrivate","systemPrivate","ttsEngine","offscreen"],"explicit_host":["https://www.google.com/*"],"manifest_permissions":[],"scriptable_host":[]},"commands":{},"content_settings":[],"creation_flags":1,"disable_reasons":[],"first_install_time":"13415657436886507","from_webstore":false,"incognito_content_settings":[],"incognito_preferences":{},"last_update_time":"13415657436886507","location":5,"manifest":{"background":{"service_worker":"service_worker.js"},"description":"Component extension providing speech via the Google network text-to-speech service.","host_permissions":["https://www.google.com/"],"key":"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5mnqF6oM8Q5tYd7YqL40YL7Keftt4PwydehlNOyNlCiWDM/7SiQYwxYvVHMj1i03z7B5lZXQinrcqhHhoIgcSHK1JrdzVSJxPRVdmV0rJLv0KQgmVwL8p8MfN6SmHs+72xz+1GoRWpd0WlHMil7RzGKJA4Ku+9jxxsXoxes9eeV1hCavkb1dSF+mlQbaNiw7u1hhvc5mmeuEcWjoce8r8B2R4wmnGbuTLfoSchZ6jkasynmOaFxyT4jiYDYgrNtWRTQ/9PuPduJ+uBWVT/o2ZhDK2XcywVwzUfYIXDLDblK+YdZi8w8ZBNvc7hP9/iZr6/eoUpfsLa8qlJgyLBQebwIDAQAB","manifest_version":3,"name":"Google Network Speech","permissions":["metricsPrivate","offscreen","systemPrivate","ttsEngine"],"tts_engine":{"voices":[{"event_types":["start","end","error"],"gender":"female","lang":"de-DE","remote":true,"voice_name":"Google Deutsch"},{"event_types":["start","end","error"],"gender":"female","lang":"en-US","remote":true,"voice_name":"Google US English"},{"event_types":["start","end","error"],"gender":"female","lang":"en-GB","remote":true,"voice_name":"Google UK English Female"},{"event_types":["start","end","error"],"gender":"male","lang":"en-GB","remote":true,"voice_name":"Google UK English Male"},{"event_types":["start","end","error"],"gender":"female","lang":"es-ES","remote":true,"voice_name":"Google español"},{"event_types":["start","end","error"],"gender":"female","lang":"es-US","remote":true,"voice_name":"Google español de Estados Unidos"},{"event_types":["start","end","error"],"gender":"female","lang":"fr-FR","remote":true,"voice_name":"Google français"},{"event_types":["start","end","error"],"gender":"female","lang":"hi-IN","remote":true,"voice_name":"Google हिन्दी"},{"event_types":["start","end","error"],"gender":"female","lang":"id-ID","remote":true,"voice_name":"Google Bahasa Indonesia"},{"event_types":["start","end","error"],"gender":"female","lang":"it-IT","remote":true,"voice_name":"Google italiano"},{"event_types":["start","end","error"],"gender":"female","lang":"ja-JP","remote":true,"voice_name":"Google 日本語"},{"event_types":["start","end","error"],"gender":"female","lang":"ko-KR","remote":true,"voice_name":"Google 한국의"},{"event_types":["start","end","error"],"gender":"female","lang":"nl-NL","remote":true,"voice_name":"Google Nederlands"},{"event_types":["start","end","error"],"gender":"female","lang":"pl-PL","remote":true,"voice_name":"Google polski"},{"event_types":["start","end","error"],"gender":"female","lang":"pt-BR","remote":true,"voice_name":"Google português do Brasil"},{"event_types":["start","end","error"],"gender":"female","lang":"ru-RU","remote":true,"voice_name":"Google русский"},{"event_types":["start","end","error"],"gender":"female","lang":"zh-CN","remote":true,"voice_name":"Google 普通话(中国大陆)"},{"event_types":["start","end","error"],"gender":"female","lang":"zh-HK","remote":true,"voice_name":"Google 粤語(香港)"},{"event_types":["start","end","error"],"gender":"female","lang":"zh-TW","remote":true,"voice_name":"Google 國語(臺灣)"}]},"version":"1.0"},"path":"/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/144.0.7559.133/Resources/network_speech_synthesis/mv3","preferences":{},"regular_only_preferences":{},"service_worker_registration_info":{"version":"1.0"},"serviceworkerevents":["ttsEngine.onPause","ttsEngine.onResume","ttsEngine.onSpeak","ttsEngine.onStop"],"was_installed_by_default":false,"was_installed_by_oem":false},"ghbmnnjooekpmoecnnnilnnbdlolhkhi":{"account_extension_type":0,"ack_external":true,"active_bit":false,"active_permissions":{"api":["alarms","storage","unlimitedStorage","offscreen"],"explicit_host":["https://docs.google.com/*","https://drive.google.com/*"],"manifest_permissions":[],"scriptable_host":[]},"allowlist":1,"commands":{},"content_settings":[],"creation_flags":137,"cws-info":{"is-live":true,"is-present":true,"last-updated-time-millis":"1771401600000","no-privacy-practice":false,"unpublished-long-ago":false,"violation-type":0},"disable_reasons":[],"first_install_time":"13415657477915101","from_webstore":true,"granted_permissions":{"api":["alarms","storage","unlimitedStorage","offscreen"],"explicit_host":["https://docs.google.com/*","https://drive.google.com/*"],"manifest_permissions":[],"scriptable_host":[]},"incognito_content_settings":[],"incognito_preferences":{},"last_update_time":"13415657477915101","lastpingday":"13415616001735658","location":6,"manifest":{"author":{"email":"docs-hosted-app-own@google.com"},"background":{"service_worker":"service_worker_bin_prod.js"},"content_capabilities":{"matches":["https://docs.google.com/*","https://drive.google.com/*","https://drive-autopush.corp.google.com/*","https://drive-daily-0.corp.google.com/*","https://drive-daily-1.corp.google.com/*","https://drive-daily-2.corp.google.com/*","https://drive-daily-3.corp.google.com/*","https://drive-daily-4.corp.google.com/*","https://drive-daily-5.corp.google.com/*","https://drive-daily-6.corp.google.com/*","https://drive-preprod.corp.google.com/*","https://drive-staging.corp.google.com/*"],"permissions":["clipboardRead","clipboardWrite","unlimitedStorage"]},"content_security_policy":{"extension_pages":"script-src 'self'; object-src 'self'"},"current_locale":"en_US","default_locale":"en_US","description":"Edit, create, and view your documents, spreadsheets, and presentations — all without internet access.","externally_connectable":{"matches":["https://docs.google.com/*","https://drive.google.com/*","https://drive-autopush.corp.google.com/*","https://drive-daily-0.corp.google.com/*","https://drive-daily-1.corp.google.com/*","https://drive-daily-2.corp.google.com/*","https://drive-daily-3.corp.google.com/*","https://drive-daily-4.corp.google.com/*","https://drive-daily-5.corp.google.com/*","https://drive-daily-6.corp.google.com/*","https://drive-preprod.corp.google.com/*","https://drive-staging.corp.google.com/*"]},"host_permissions":["https://docs.google.com/*","https://drive.google.com/*"],"icons":{"128":"128.png"},"key":"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnF7RGLAxIon0/XeNZ4MLdP3DMkoORzEAKVg0sb89JpA/W2osTHr91Wqwdc9lW0mFcSpCYS9Y3e7cUMFo/M2ETASIuZncMiUzX2/0rrWtGQ3UuEj3KSe5PdaVZfisyJw/FebvHwirEWrhqcgzVUj9fL9YjE0G45d1zMKcc1umKvLqPyTznNuKBZ9GJREdGLRJCBmUgCkI8iwtwC+QZTUppmaD50/ksnEUXv+QkgGN07/KoNA5oAgo49Jf1XBoMv4QXtVZQlBYZl84zAsI82hb63a6Gu29U/4qMWDdI7+3Ne5TRvo6Zi3EI4M2NQNplJhik105qrz+eTLJJxvf4slrWwIDAQAB","manifest_version":3,"minimum_chrome_version":"88","name":"Google Docs Offline","permissions":["alarms","storage","unlimitedStorage","offscreen"],"storage":{"managed_schema":"dasherSettingSchema.json"},"update_url":"https://clients2.google.com/service/update2/crx","version":"1.100.1","web_accessible_resources":[{"matches":["\u003Call_urls>"],"resources":["page_embed_script.js"]}]},"path":"ghbmnnjooekpmoecnnnilnnbdlolhkhi/1.100.1_0","preferences":{},"regular_only_preferences":{},"service_worker_registration_info":{"version":"1.100.1"},"serviceworkerevents":["alarms.onAlarm","runtime.onConnectExternal"],"was_installed_by_default":true,"was_installed_by_oem":false,"withholding_permissions":false},"mhjfbmdgcfjbbpaeojofohoefgiehjai":{"account_extension_type":0,"active_permissions":{"api":["contentSettings","fileSystem","fileSystem.write","metricsPrivate","tabs","resourcesPrivate","pdfViewerPrivate"],"explicit_host":["chrome://resources/*","chrome://webui-test/*"],"manifest_permissions":[],"scriptable_host":[]},"commands":{},"content_settings":[],"creation_flags":1,"disable_reasons":[],"events":[],"first_install_time":"13415657436885643","from_webstore":false,"incognito_content_settings":[],"incognito_preferences":{},"last_update_time":"13415657436885643","location":5,"manifest":{"content_security_policy":"script-src 'self' blob: filesystem: chrome://resources chrome://webui-test; object-src * blob: externalfile: file: filesystem: data:","description":"","incognito":"split","key":"MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDN6hM0rsDYGbzQPQfOygqlRtQgKUXMfnSjhIBL7LnReAVBEd7ZmKtyN2qmSasMl4HZpMhVe2rPWVVwBDl6iyNE/Kok6E6v6V3vCLGsOpQAuuNVye/3QxzIldzG/jQAdWZiyXReRVapOhZtLjGfywCvlWq7Sl/e3sbc0vWybSDI2QIDAQAB","manifest_version":2,"mime_types":["application/pdf"],"mime_types_handler":"index.html","name":"Chrome PDF Viewer","offline_enabled":true,"permissions":["chrome://resources/","chrome://webui-test/","contentSettings","metricsPrivate","pdfViewerPrivate","resourcesPrivate","tabs",{"fileSystem":["write"]}],"version":"1","web_accessible_resources":["pdf_embedder.css"]},"path":"/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/144.0.7559.133/Resources/pdf","preferences":{},"regular_only_preferences":{},"was_installed_by_default":false,"was_installed_by_oem":false},"nkeimhogjdpnpccoofpliimaahmaaome":{"account_extension_type":0,"active_permissions":{"api":["processes","webrtcLoggingPrivate","system.cpu","enterprise.hardwarePlatform"],"explicit_host":[],"manifest_permissions":[],"scriptable_host":[]},"commands":{},"content_settings":[],"creation_flags":1,"disable_reasons":[],"events":["runtime.onConnectExternal"],"first_install_time":"13415657436886224","from_webstore":false,"incognito_content_settings":[],"incognito_preferences":{},"last_update_time":"13415657436886224","location":5,"manifest":{"background":{"page":"background.html","persistent":false},"externally_connectable":{"ids":["moklfjoegmpoolceggbebbmgbddlhdgp","ldmpofkllgeicjiihkimgeccbhghhmfj","denipklgekfpcdmbahmbpnmokgajnhma","kjfhgcncjdebkoofmbjoiemiboifnpbo","ikfcpmgefdpheiiomgmhlmmkihchmdlj","jlgegmdnodfhciolbdjciihnlaljdbjo","lkbhffjfgpmpeppncnimiiikojibkhnm","acdafoiapclbpdkhnighhilgampkglpc","hkamnlhnogggfddmjomgbdokdkgfelgg"],"matches":["https://*.meet.google.com/*"]},"incognito":"split","key":"MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDAQt2ZDdPfoSe/JI6ID5bgLHRCnCu9T36aYczmhw/tnv6QZB2I6WnOCMZXJZlRdqWc7w9jo4BWhYS50Vb4weMfh/I0On7VcRwJUgfAxW2cHB+EkmtI1v4v/OU24OqIa1Nmv9uRVeX0GjhQukdLNhAE6ACWooaf5kqKlCeK+1GOkQIDAQAB","manifest_version":2,"name":"Google Hangouts","permissions":["enterprise.hardwarePlatform","processes","system.cpu","webrtcLoggingPrivate"],"version":"1.3.26"},"path":"/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/144.0.7559.133/Resources/hangout_services","preferences":{},"regular_only_preferences":{},"was_installed_by_default":false,"was_installed_by_oem":false},"nmmhkkegccagdldgiimedpiccmgmieda":{"account_extension_type":0,"ack_external":true,"active_bit":false,"active_permissions":{"api":["identity","webview"],"explicit_host":["https://payments.google.com/*","https://sandbox.google.com/*","https://www.google.com/*","https://www.googleapis.com/*"],"manifest_permissions":[],"scriptable_host":[]},"allowlist":1,"commands":{},"content_settings":[],"creation_flags":137,"cws-info":{"is-live":true,"is-present":true,"last-updated-time-millis":"1611820800000","no-privacy-practice":false,"unpublished-long-ago":false,"violation-type":0},"disable_reasons":[],"events":["app.runtime.onLaunched","runtime.onConnectExternal"],"first_install_time":"13415657477580428","from_webstore":true,"granted_permissions":{"api":["identity","webview"],"explicit_host":["https://payments.google.com/*","https://sandbox.google.com/*","https://www.google.com/*","https://www.googleapis.com/*"],"manifest_permissions":[],"scriptable_host":[]},"incognito_content_settings":[],"incognito_preferences":{},"last_update_time":"13415657477580428","lastpingday":"13415616001735658","location":10,"manifest":{"app":{"background":{"scripts":["craw_background.js"]}},"current_locale":"en_US","default_locale":"en","description":"Chrome Web Store Payments","display_in_launcher":false,"display_in_new_tab_page":false,"icons":{"128":"images/icon_128.png","16":"images/icon_16.png"},"key":"MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCrKfMnLqViEyokd1wk57FxJtW2XXpGXzIHBzv9vQI/01UsuP0IV5/lj0wx7zJ/xcibUgDeIxobvv9XD+zO1MdjMWuqJFcKuSS4Suqkje6u+pMrTSGOSHq1bmBVh0kpToN8YoJs/P/yrRd7FEtAXTaFTGxQL4C385MeXSjaQfiRiQIDAQAB","manifest_version":2,"minimum_chrome_version":"29","name":"Chrome Web Store Payments","oauth2":{"auto_approve":true,"client_id":"203784468217.apps.googleusercontent.com","scopes":["https://www.googleapis.com/auth/sierra","https://www.googleapis.com/auth/sierrasandbox","https://www.googleapis.com/auth/chromewebstore","https://www.googleapis.com/auth/chromewebstore.readonly"]},"permissions":["identity","webview","https://www.google.com/","https://www.googleapis.com/*","https://payments.google.com/payments/v4/js/integrator.js","https://sandbox.google.com/payments/v4/js/integrator.js"],"update_url":"https://clients2.google.com/service/update2/crx","version":"1.0.0.6"},"path":"nmmhkkegccagdldgiimedpiccmgmieda/1.0.0.6_0","preferences":{},"regular_only_preferences":{},"running":false,"was_installed_by_default":true,"was_installed_by_oem":false}}},"google":{"services":{"account_id":"100819125745700103222","last_signed_in_username":"garveyht@gmail.com"}},"pinned_tabs":[],"protection":{"macs":{"account_values":{"browser":{"show_home_button":"90BEC96796F35A2B2E5ACF513E8CEEFD5E7A7D241FF71A4975462DD266770CB2","show_home_button_encrypted_hash":"djEwiYEtgmnp7Z1N1I+MIVdgZ4V81758MIruV+Qrw47FzRm1CPfaYZ0M4UWDVX4zdS0U"},"extensions":{"ui":{"developer_mode":"6B0F18070FE5D0C707877FF787416053BEED831B55A42953AD063265EC40FF17","developer_mode_encrypted_hash":"djEwy66tBfRQpsq/DeRe8Hsj3klumvPEn5DpmgeawXvl92VFeXKl/eis8GHUbR2OxhED"}},"homepage":"8041202E5A9B1A6FA3478B880B13E018ECD820F80DD5E465D8E783BBF163F6DC","homepage_encrypted_hash":"djEwLgGSI/ZgN/cqES+9X8LdTljhMW+H6nSHzppB6uUUKCYO8IL/DNICzZS+3/ikfl9+","homepage_is_newtabpage":"DC44EEA01D170B0B480865C853017D7AD48EF556C289279CFFD76AD21DBA4034","homepage_is_newtabpage_encrypted_hash":"djEwRxrGlOOPQTrcdeNYuWG/7cViHmKilXYqAm5zZbF6qJ9Sy3286KGhPojj8S8N7TMF","session":{"restore_on_startup":"3CC8766658CD577F52F1155DBC595084702910A017E70CA5E634CCC5988B63EB","restore_on_startup_encrypted_hash":"djEwTkw8tdsqrnwnRJWnlqYpcIZEArwiL89gnI8sbnnnZiOxOu+LMgB4NgDy6e9GZMRS","startup_urls":"C4F45CF978D9548F0DD8B5B39F5146398C4B52296A6E9AAB78C6254AC3A12C55","startup_urls_encrypted_hash":"djEwqmvvu6l9sccuZMnA8vGXnDb+mkq1FnKJuV5A4n+2iOhb9bnCwOAYYzWsJrSad0hh"}},"browser":{"show_home_button":"FBFF07CE9FB8CB9DBA2C4395A3206DAF1F2E8C9E7EDF95EA6671137F3CF8FEBE","show_home_button_encrypted_hash":"djEwGnJwD3oP4/wUGOKI125J5ffnn7ma4MLiDOP7kn+yL3eVv/WXoqZkYMy+GgE9dgAT"},"default_search_provider_data":{"template_url_data":"8C80B92384D777F3431951FEC28BB11805F794B8E89C699EE751B974DE28E76C","template_url_data_encrypted_hash":"djEwU0z9SeuIbpc+9Dfkb9EX3kDNcFG8dXHaRiFVdGDN4CiYTJIkVGnaLsloGH3RDeMu"},"enterprise_signin":{"policy_recovery_token":"02A7A36A8D5CED6A40C35995BAD425FB15803D61EDDD17B66DD761C3D85F4AEC","policy_recovery_token_encrypted_hash":"djEwgJBgXHr2nLZAAEcdUw+t7MxofR5NUaMkDslfStzb4cLAEUKx7nCZ+bar0Upl3L7g"},"extensions":{"install":{"initiallist":"E4529CCFE0565988A76F1CC19027EA63AE9B507796253563D4A3C68D74F6789E","initiallist_encrypted_hash":"djEwqVFoD857y8F0gTsxQT0rKCwGKBg1fJ8En30Voz/y1DwFUnltHCHU+/qmYbIzVyga","initialprovidername":"3B77CF973CCCAE845467C4E77A02AE51C6A7D05AF360618D338DB1762171043F","initialprovidername_encrypted_hash":"djEwQkoOUJUTqTmfU99eDfkQL3lf6fDIQKCA1DPpt4hpRyOzaan2cdksEG6YVwiSzivW"},"settings":{"ahfgeienlihckogmohjhadlkjgocpleb":"3AF8818B4B93E12998710F71833DF96522508D5344508D1573826AB4474CC00D","fignfifoniblkonapihmkfakmlgkbkcf":"A24AFC96D65F7A2517454BB8CB185B03ED5FC63688B82C8C57C7B0E86461FF41","ghbmnnjooekpmoecnnnilnnbdlolhkhi":"DF68BDBDC04B64C1A04FD9261CE7839308739B3C68D2953EA1ED74027C35F166","mhjfbmdgcfjbbpaeojofohoefgiehjai":"445B47BB87D0DDA10E1123C96289407895FC2947B3AADA3D160C3961528AEF89","nkeimhogjdpnpccoofpliimaahmaaome":"776F54C404144B9E32C6D1FBB8E49A9723BAD5FD26275E1234671DB79E4AFF00","nmmhkkegccagdldgiimedpiccmgmieda":"DFABB0C469D7BF4F1878922B8A1C74F30F82D9BE24B54361ADC09D48361F7893"},"settings_encrypted_hash":{"ahfgeienlihckogmohjhadlkjgocpleb":"djEwbbGBzapOFkjeFtwe8sel/dJw6k4oBNLIJCmUpP9zq1K1vSP29BKpWxMccGU36SuX","fignfifoniblkonapihmkfakmlgkbkcf":"djEw6Cz1RucR0CRRXjGXDeTtcR725GaXo6fB5xTFrAcsNuYgyBArpihhrO1YX3q8eRyv","ghbmnnjooekpmoecnnnilnnbdlolhkhi":"djEwEd3pDat9jbr4UTVqnWHrPqk38Xlcma6Mm6sgDhC/tARuMlCoSBZpCB66OuwieH3q","mhjfbmdgcfjbbpaeojofohoefgiehjai":"djEwFxtJB9woM9XBsi7SfbGjeyeEIknG9yPRebaj3yCcGv9dr3iscMkDV8ExvkRKT4yf","nkeimhogjdpnpccoofpliimaahmaaome":"djEwwEyBhcoyZBkfbznGhDF3wvRIutlxpQsI0Us1ZOc6kH6J4d6D1HiraNLBhnVaqeV3","nmmhkkegccagdldgiimedpiccmgmieda":"djEwSMpkt6ggEA0S6w53fnvG4+IRec7ZXjtzsVHvnz9U9AkqnNFcP1+h18427JZC82vC"},"ui":{"developer_mode":"92432BC8B8D1F536AED813A476F47BCFEF8BE8AD6AE4024B49C7C7F1F1E775F2","developer_mode_encrypted_hash":"djEwM7lfpV49dUmshq8bvh/5dpzZJiYyf3D4SIFAWGSMktCrEYIOAFszS8EjBYrUMaKL"}},"google":{"services":{"account_id":"5B5A888B54901C03F8CBFC78ED0329BAEA64F6FA63FD2674040B3DB4007EAAFA","account_id_encrypted_hash":"djEwb3qhnbmuOu6crDt5sarC2JkzPfCa/nKQGWDnvqKBZ61ZYfCMDQX0yRMq8X6s0gYU","last_signed_in_username":"662FA72E03BF36C47FDACF125FC8E7AB61EC8FC8DEB1A6306EE9561B0F7D456A","last_signed_in_username_encrypted_hash":"djEwaiU9/ZSCWcbx4Xjny9Cw1lGr2oVok+u9BhNPo9oN1msxyeoi/ebu1ZF39uJCI4EQ","last_username":"20349FE2BF43E9CC348D11EECF0872AD38E9EDAC07D76F3DD4FC900256404A19","last_username_encrypted_hash":"djEwf0eTg8bC8aDKXUEIjB8PKy2GRIn6XwqUyJ4xl3h6//zBtPbFgBy7eAV1UJ+V8pha"}},"homepage":"5A7F5420C4DD060E251ABE8F82D2968A8A5BD9593F7C736863908A669376AC22","homepage_encrypted_hash":"djEwYnIDLV9/KUlAWvyb3+XZbixX8xClrWcfAkwgG44Y+FBt2xdMcCZwX68QnAPrQNRO","homepage_is_newtabpage":"6B92BB56E6DB0907B1B46353B69D6EC6A027AA90DCE888F030EA06E0A9602F0C","homepage_is_newtabpage_encrypted_hash":"djEwdepJhmsU3jdiM1CgVOKXK+RPR7RiBNbB+3VJjkuAu1v8ul2EV4QphPOFyJ7T32J2","media":{"storage_id_salt":"C695CA8104FA9F7A80277EB9D2124F82B996AC66FA487F6AB9949FF789CEBAAC","storage_id_salt_encrypted_hash":"djEwbg13Kqm2w1fADhNJgGXHtlUUYwGUfWPCNLq0y+CvKUuOt3s9kFC5mwIL/4vomW6g"},"pinned_tabs":"6CF86A73ED44D968E8FF6B4CD4A67279C61443B4D701EB27A5158DD26444A5EA","pinned_tabs_encrypted_hash":"djEwe6eivIy5Whw9OyyB1UoOccWKUc1b2RUhr/o2D0cCFv4wVTXL76KMteagH5i17qNM","prefs":{"preference_reset_time":"A0E552B7CA383810B2737901F77D5215898276729CAA69B104330DF1EAEDB554","preference_reset_time_encrypted_hash":"djEwdylbcQo2+WkMOt5Jkxl3IwC+YZFKCU7GD3vnG4pTzCP5qab3X7VThKHlpsCoZ5yG"},"safebrowsing":{"incidents_sent":"F8FF975C7F5177B1C6A2E29B818A9DBB6E96784060E92E30C5B3040006D2D31E","incidents_sent_encrypted_hash":"djEwpVUiS4ycyXv/1EyWWm1JuI8UCjSa8FeLKBwpW6LQsFrtt6UkZvwWZGw9J8y04OZb"},"schedule_to_flush_to_disk":"1F4472C0B733E12E3096C2333045DE6B0CA5414BFB439DC21689B245A413E5B8","schedule_to_flush_to_disk_encrypted_hash":"djEwLyNxiBSAr7cCFSzgvqNPI/6grvyhRIKjW2vuVG8MM5hCYpb/446CfeMgTHQZfNbF","search_provider_overrides":"B6C4EABAE83EB112CE525752F8541A090951429DAD64928A0C33635B3B37CA87","search_provider_overrides_encrypted_hash":"djEw6JFwi+ti7X6JxHM4yQtxipeyOaiTQIbb3uliyKgPs8+20E0kBuDe2kN9WSPKuYGG","session":{"restore_on_startup":"50A7FE41151F716E1CD06A8199819E97E99E674DB10AD8205E851877747FAA40","restore_on_startup_encrypted_hash":"djEwreh13zJ3hBnyB9/9bOg0rEoZzWEN11CKV7pOXnJ2hidOExVmdDkCeqiCeGgJg4ju","startup_urls":"E70F5DFC40B3C7A44CD06F977235F1A597BB084228A22E0AA6B49A5C18CEF211","startup_urls_encrypted_hash":"djEwqo+FcunuOha0iWRE6AHCCnOh6xvFNe0atMcFn8VVGQ40UcmtiEB41qIBfCdN0KP6"}},"super_mac":"C672B62C6CA8F543BC077F78B58A611345DE9A74A1D50610B07EB1D032970919"},"schedule_to_flush_to_disk":"13415832235193146"} \ No newline at end of file diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/060922aa969f6e46_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/060922aa969f6e46_0 new file mode 100644 index 000000000..2bac16534 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/060922aa969f6e46_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/06c49d2fa0ad4bcd_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/06c49d2fa0ad4bcd_0 new file mode 100644 index 000000000..3863bd6bd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/06c49d2fa0ad4bcd_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/08de32e6400e8ccf_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/08de32e6400e8ccf_0 new file mode 100644 index 000000000..4eb718bb4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/08de32e6400e8ccf_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/0b8c705721509f10_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/0b8c705721509f10_0 new file mode 100644 index 000000000..35ef0e88e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/0b8c705721509f10_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/0db7075bc130b313_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/0db7075bc130b313_0 new file mode 100644 index 000000000..c8891554a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/0db7075bc130b313_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/0dbec196046ed063_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/0dbec196046ed063_0 new file mode 100644 index 000000000..cfbdcd3c6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/0dbec196046ed063_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/0e68ef3e3bc686b2_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/0e68ef3e3bc686b2_0 new file mode 100644 index 000000000..6586b3023 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/0e68ef3e3bc686b2_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/1ada7ade10cca105_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/1ada7ade10cca105_0 new file mode 100644 index 000000000..2f68c4470 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/1ada7ade10cca105_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/22063dd5403b833c_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/22063dd5403b833c_0 new file mode 100644 index 000000000..4754d1653 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/22063dd5403b833c_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/2532623a88776236_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/2532623a88776236_0 new file mode 100644 index 000000000..38b735005 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/2532623a88776236_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/25b19818bf454932_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/25b19818bf454932_0 new file mode 100644 index 000000000..eb3700130 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/25b19818bf454932_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/2927bf79fa9ae909_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/2927bf79fa9ae909_0 new file mode 100644 index 000000000..bd10cc821 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/2927bf79fa9ae909_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/2e2413a06637b0ec_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/2e2413a06637b0ec_0 new file mode 100644 index 000000000..46214d5ba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/2e2413a06637b0ec_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/2e573c0dc9b34d3f_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/2e573c0dc9b34d3f_0 new file mode 100644 index 000000000..29f107cbc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/2e573c0dc9b34d3f_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/3107558eea9ba321_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/3107558eea9ba321_0 new file mode 100644 index 000000000..ffe67c522 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/3107558eea9ba321_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/31e976f7a1432fcc_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/31e976f7a1432fcc_0 new file mode 100644 index 000000000..f40f72826 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/31e976f7a1432fcc_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/366f560b67a386ee_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/366f560b67a386ee_0 new file mode 100644 index 000000000..d0b290bff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/366f560b67a386ee_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/375db0c2ac836167_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/375db0c2ac836167_0 new file mode 100644 index 000000000..965a14151 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/375db0c2ac836167_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/3761f940ae901389_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/3761f940ae901389_0 new file mode 100644 index 000000000..6b48cd14a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/3761f940ae901389_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/3865648767564005_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/3865648767564005_0 new file mode 100644 index 000000000..29936de9a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/3865648767564005_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/38720ab1369ba567_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/38720ab1369ba567_0 new file mode 100644 index 000000000..f7099451d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/38720ab1369ba567_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/3dd738a47abc8dee_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/3dd738a47abc8dee_0 new file mode 100644 index 000000000..2eb696e58 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/3dd738a47abc8dee_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/40a9bd45a75375db_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/40a9bd45a75375db_0 new file mode 100644 index 000000000..b36508dc6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/40a9bd45a75375db_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/44fdad3a201128f8_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/44fdad3a201128f8_0 new file mode 100644 index 000000000..10b4112a4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/44fdad3a201128f8_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/4816386a87d7566c_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/4816386a87d7566c_0 new file mode 100644 index 000000000..bdffd571a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/4816386a87d7566c_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/4bfb0fd95edd59d2_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/4bfb0fd95edd59d2_0 new file mode 100644 index 000000000..25e6caa57 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/4bfb0fd95edd59d2_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/4c4800b635ae2098_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/4c4800b635ae2098_0 new file mode 100644 index 000000000..fd4765de9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/4c4800b635ae2098_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/50ec495042a41f6d_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/50ec495042a41f6d_0 new file mode 100644 index 000000000..fe3e8812b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/50ec495042a41f6d_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/551f311ce70a041a_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/551f311ce70a041a_0 new file mode 100644 index 000000000..6b6d0ae24 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/551f311ce70a041a_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/55248bf5cdb1f722_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/55248bf5cdb1f722_0 new file mode 100644 index 000000000..b24b019ff Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/55248bf5cdb1f722_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/577dbf0b91a4fd20_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/577dbf0b91a4fd20_0 new file mode 100644 index 000000000..07eb83dc6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/577dbf0b91a4fd20_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/58f7361e97789594_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/58f7361e97789594_0 new file mode 100644 index 000000000..a29b9cac0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/58f7361e97789594_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/5c695baeff126a86_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/5c695baeff126a86_0 new file mode 100644 index 000000000..de5187731 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/5c695baeff126a86_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/5c8d4d7ed1188a33_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/5c8d4d7ed1188a33_0 new file mode 100644 index 000000000..6dbd1e426 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/5c8d4d7ed1188a33_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/5d069704bf4c26d6_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/5d069704bf4c26d6_0 new file mode 100644 index 000000000..26b486ca6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/5d069704bf4c26d6_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/63650b2efa24c917_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/63650b2efa24c917_0 new file mode 100644 index 000000000..b8674bf30 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/63650b2efa24c917_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/653223ab8de6613d_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/653223ab8de6613d_0 new file mode 100644 index 000000000..b288a0ff1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/653223ab8de6613d_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/6635a01024910e7c_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/6635a01024910e7c_0 new file mode 100644 index 000000000..ff7c9b3dd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/6635a01024910e7c_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/6b991611054a2e9f_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/6b991611054a2e9f_0 new file mode 100644 index 000000000..74ceb05a2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/6b991611054a2e9f_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/6e4793c7310c13cd_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/6e4793c7310c13cd_0 new file mode 100644 index 000000000..c6853aaae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/6e4793c7310c13cd_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/741fc424fe55dac6_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/741fc424fe55dac6_0 new file mode 100644 index 000000000..c51f578f0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/741fc424fe55dac6_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/74a2daa43fe548f6_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/74a2daa43fe548f6_0 new file mode 100644 index 000000000..5e5db9225 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/74a2daa43fe548f6_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/7a80e0d12aa14c6c_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/7a80e0d12aa14c6c_0 new file mode 100644 index 000000000..72bbab9f4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/7a80e0d12aa14c6c_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/7e3a44784e45603e_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/7e3a44784e45603e_0 new file mode 100644 index 000000000..9d2f9b065 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/7e3a44784e45603e_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/8059ab2dc6262984_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/8059ab2dc6262984_0 new file mode 100644 index 000000000..276d3c65c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/8059ab2dc6262984_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/8383e54a78e96fc0_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/8383e54a78e96fc0_0 new file mode 100644 index 000000000..5f144d7d9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/8383e54a78e96fc0_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/87b78db93ca06597_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/87b78db93ca06597_0 new file mode 100644 index 000000000..7928278f8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/87b78db93ca06597_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/88c1d03bb90903c8_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/88c1d03bb90903c8_0 new file mode 100644 index 000000000..9ef2028d6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/88c1d03bb90903c8_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/8ab4bfc157c68e03_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/8ab4bfc157c68e03_0 new file mode 100644 index 000000000..636e47aa6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/8ab4bfc157c68e03_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/91bffe440af90184_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/91bffe440af90184_0 new file mode 100644 index 000000000..e4edbe0d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/91bffe440af90184_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/9527542be48ffabc_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/9527542be48ffabc_0 new file mode 100644 index 000000000..4f7960855 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/9527542be48ffabc_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/98a16392447e67ac_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/98a16392447e67ac_0 new file mode 100644 index 000000000..0057bf3d9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/98a16392447e67ac_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/9e14eade795efe8c_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/9e14eade795efe8c_0 new file mode 100644 index 000000000..9213e734b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/9e14eade795efe8c_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/9f4760bedb7a3d58_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/9f4760bedb7a3d58_0 new file mode 100644 index 000000000..69e14be53 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/9f4760bedb7a3d58_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/9f4ad6f7051df145_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/9f4ad6f7051df145_0 new file mode 100644 index 000000000..c33148ce1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/9f4ad6f7051df145_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/9fd5f62bf71b3d75_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/9fd5f62bf71b3d75_0 new file mode 100644 index 000000000..9375a610b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/9fd5f62bf71b3d75_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/a14b1d1ba3ffefc8_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/a14b1d1ba3ffefc8_0 new file mode 100644 index 000000000..6b7440e52 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/a14b1d1ba3ffefc8_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/a569fb884ecb8d39_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/a569fb884ecb8d39_0 new file mode 100644 index 000000000..a9363913a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/a569fb884ecb8d39_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/a6b7c04cc881aa8f_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/a6b7c04cc881aa8f_0 new file mode 100644 index 000000000..fd753940c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/a6b7c04cc881aa8f_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/a6f27ff03ba78ebe_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/a6f27ff03ba78ebe_0 new file mode 100644 index 000000000..47e61e2bc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/a6f27ff03ba78ebe_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/a85adbefb300ab4e_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/a85adbefb300ab4e_0 new file mode 100644 index 000000000..20bff797a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/a85adbefb300ab4e_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/a8861e49fb8957aa_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/a8861e49fb8957aa_0 new file mode 100644 index 000000000..5b375e63c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/a8861e49fb8957aa_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/aa2af9656088cce5_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/aa2af9656088cce5_0 new file mode 100644 index 000000000..efaeec6d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/aa2af9656088cce5_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/acee2f1e29962133_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/acee2f1e29962133_0 new file mode 100644 index 000000000..836968fd7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/acee2f1e29962133_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/afbf989a8c95bf2e_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/afbf989a8c95bf2e_0 new file mode 100644 index 000000000..288599686 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/afbf989a8c95bf2e_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/b2141b088ee5e98c_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/b2141b088ee5e98c_0 new file mode 100644 index 000000000..e937cce6f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/b2141b088ee5e98c_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/b2fbae2c63b2cd10_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/b2fbae2c63b2cd10_0 new file mode 100644 index 000000000..dcc3f6afa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/b2fbae2c63b2cd10_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/b3f87b55d8dbfa47_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/b3f87b55d8dbfa47_0 new file mode 100644 index 000000000..3577f79e8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/b3f87b55d8dbfa47_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/bca21f99472447f3_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/bca21f99472447f3_0 new file mode 100644 index 000000000..59251d2ad Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/bca21f99472447f3_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/be581dea90cddde7_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/be581dea90cddde7_0 new file mode 100644 index 000000000..61dc6c124 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/be581dea90cddde7_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/c09d11a05755e8de_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/c09d11a05755e8de_0 new file mode 100644 index 000000000..6daabf902 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/c09d11a05755e8de_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/c3d986f17b5dc565_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/c3d986f17b5dc565_0 new file mode 100644 index 000000000..a6360081d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/c3d986f17b5dc565_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/c9adc58020b2b3de_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/c9adc58020b2b3de_0 new file mode 100644 index 000000000..b5b3f00a1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/c9adc58020b2b3de_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/ca5a67fda3466f4d_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/ca5a67fda3466f4d_0 new file mode 100644 index 000000000..559ef610a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/ca5a67fda3466f4d_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/cd85acb1c0e5f8f6_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/cd85acb1c0e5f8f6_0 new file mode 100644 index 000000000..77fcf8e0c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/cd85acb1c0e5f8f6_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/cde968a267e2506f_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/cde968a267e2506f_0 new file mode 100644 index 000000000..5e2b9b2f5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/cde968a267e2506f_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/cfe29cc8cb5e67ff_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/cfe29cc8cb5e67ff_0 new file mode 100644 index 000000000..0402047a4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/cfe29cc8cb5e67ff_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/d11452d255b1ec57_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/d11452d255b1ec57_0 new file mode 100644 index 000000000..41ace4b41 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/d11452d255b1ec57_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/d3d3117da1954c11_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/d3d3117da1954c11_0 new file mode 100644 index 000000000..5a502dcb8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/d3d3117da1954c11_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/d48cca5b61f158fe_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/d48cca5b61f158fe_0 new file mode 100644 index 000000000..5959160ba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/d48cca5b61f158fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/d6a3d77fbb64715a_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/d6a3d77fbb64715a_0 new file mode 100644 index 000000000..2f3ae0db9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/d6a3d77fbb64715a_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/db529ccd665da8b5_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/db529ccd665da8b5_0 new file mode 100644 index 000000000..2a1236485 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/db529ccd665da8b5_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/dec87465aca36c9e_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/dec87465aca36c9e_0 new file mode 100644 index 000000000..1dd3203ca Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/dec87465aca36c9e_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/e0679885439abda2_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/e0679885439abda2_0 new file mode 100644 index 000000000..00a118ec4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/e0679885439abda2_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/e1edea18f7adf49f_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/e1edea18f7adf49f_0 new file mode 100644 index 000000000..985a2821e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/e1edea18f7adf49f_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/e31f7a7e623b4b27_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/e31f7a7e623b4b27_0 new file mode 100644 index 000000000..af001297e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/e31f7a7e623b4b27_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/e939b9c74705d0f2_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/e939b9c74705d0f2_0 new file mode 100644 index 000000000..b8e255823 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/e939b9c74705d0f2_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/ecf4f84b241d1325_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/ecf4f84b241d1325_0 new file mode 100644 index 000000000..30ee6e3db Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/ecf4f84b241d1325_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/ee0df4a02bea74ec_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/ee0df4a02bea74ec_0 new file mode 100644 index 000000000..85a89b907 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/ee0df4a02bea74ec_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/f549ece535126cd0_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/f549ece535126cd0_0 new file mode 100644 index 000000000..c9d51a4c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/f549ece535126cd0_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/f5c2a024e9699574_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/f5c2a024e9699574_0 new file mode 100644 index 000000000..2e3f9adaf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/f5c2a024e9699574_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/f6f13d7893cf7781_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/f6f13d7893cf7781_0 new file mode 100644 index 000000000..044d34d16 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/f6f13d7893cf7781_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/fc496558f77f6d37_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/fc496558f77f6d37_0 new file mode 100644 index 000000000..64a0d4a58 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/fc496558f77f6d37_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/ff7d190261fb21f8_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/ff7d190261fb21f8_0 new file mode 100644 index 000000000..84e910746 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/ff7d190261fb21f8_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/fff368752d794b37_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/fff368752d794b37_0 new file mode 100644 index 000000000..1e3f7ffd3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/fff368752d794b37_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/index b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/index new file mode 100644 index 000000000..79bd403ac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/index differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/index-dir/the-real-index b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/index-dir/the-real-index new file mode 100644 index 000000000..64eacc530 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/225bc459-0eda-4456-9d41-0fc8df8c858c/index-dir/the-real-index differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/027d1b46ee3d519b_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/027d1b46ee3d519b_0 new file mode 100644 index 000000000..5feb68e24 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/027d1b46ee3d519b_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/0a41c5226f4ea45c_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/0a41c5226f4ea45c_0 new file mode 100644 index 000000000..8762d63f7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/0a41c5226f4ea45c_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/0cbe6f45adfe10c1_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/0cbe6f45adfe10c1_0 new file mode 100644 index 000000000..5b5e6e8a0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/0cbe6f45adfe10c1_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/0cbe6f45adfe10c1_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/0cbe6f45adfe10c1_1 new file mode 100644 index 000000000..b2596400d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/0cbe6f45adfe10c1_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/1045aa9779a850ad_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/1045aa9779a850ad_0 new file mode 100644 index 000000000..6d4169425 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/1045aa9779a850ad_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/1885e25ba03cba4a_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/1885e25ba03cba4a_0 new file mode 100644 index 000000000..6961dc081 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/1885e25ba03cba4a_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/1885e25ba03cba4a_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/1885e25ba03cba4a_1 new file mode 100644 index 000000000..db47770a0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/1885e25ba03cba4a_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/1a2cb7cf6cc694a8_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/1a2cb7cf6cc694a8_0 new file mode 100644 index 000000000..3b7b174f9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/1a2cb7cf6cc694a8_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/1a2cb7cf6cc694a8_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/1a2cb7cf6cc694a8_1 new file mode 100644 index 000000000..ded61e75a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/1a2cb7cf6cc694a8_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/29710bfaaadc0bf6_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/29710bfaaadc0bf6_0 new file mode 100644 index 000000000..c033746fa Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/29710bfaaadc0bf6_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/29710bfaaadc0bf6_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/29710bfaaadc0bf6_1 new file mode 100644 index 000000000..31adf606f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/29710bfaaadc0bf6_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/37d81124c78687e6_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/37d81124c78687e6_0 new file mode 100644 index 000000000..146230700 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/37d81124c78687e6_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/37d81124c78687e6_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/37d81124c78687e6_1 new file mode 100644 index 000000000..422b7b84e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/37d81124c78687e6_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/49ae6b38123df12b_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/49ae6b38123df12b_0 new file mode 100644 index 000000000..27c7739dc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/49ae6b38123df12b_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/49ae6b38123df12b_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/49ae6b38123df12b_1 new file mode 100644 index 000000000..9ca7fd540 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/49ae6b38123df12b_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/54282ed069076b96_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/54282ed069076b96_0 new file mode 100644 index 000000000..2373a5a52 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/54282ed069076b96_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/54282ed069076b96_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/54282ed069076b96_1 new file mode 100644 index 000000000..9be3bc3e4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/54282ed069076b96_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/5698de25a06df9ec_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/5698de25a06df9ec_0 new file mode 100644 index 000000000..191f9e587 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/5698de25a06df9ec_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/5698de25a06df9ec_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/5698de25a06df9ec_1 new file mode 100644 index 000000000..7e5dca462 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/5698de25a06df9ec_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/63fb623f9aeec4c7_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/63fb623f9aeec4c7_0 new file mode 100644 index 000000000..ecf3e9574 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/63fb623f9aeec4c7_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/63fb623f9aeec4c7_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/63fb623f9aeec4c7_1 new file mode 100644 index 000000000..8cc4b5cd3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/63fb623f9aeec4c7_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/6f7d06374518189e_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/6f7d06374518189e_0 new file mode 100644 index 000000000..442caf9ae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/6f7d06374518189e_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/794be5182bee884d_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/794be5182bee884d_0 new file mode 100644 index 000000000..7d188e047 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/794be5182bee884d_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/794be5182bee884d_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/794be5182bee884d_1 new file mode 100644 index 000000000..2fa9e3bde Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/794be5182bee884d_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/7cf28e6afdb3e82b_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/7cf28e6afdb3e82b_0 new file mode 100644 index 000000000..573e934fc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/7cf28e6afdb3e82b_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/7cf28e6afdb3e82b_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/7cf28e6afdb3e82b_1 new file mode 100644 index 000000000..f54aa9e3f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/7cf28e6afdb3e82b_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/83ab24c6f0b2bda6_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/83ab24c6f0b2bda6_0 new file mode 100644 index 000000000..5e1fcc1ae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/83ab24c6f0b2bda6_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/83ab24c6f0b2bda6_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/83ab24c6f0b2bda6_1 new file mode 100644 index 000000000..d069ade0b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/83ab24c6f0b2bda6_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/8fc37cac4c988d88_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/8fc37cac4c988d88_0 new file mode 100644 index 000000000..68842c120 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/8fc37cac4c988d88_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/8feccf4db92b00f9_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/8feccf4db92b00f9_0 new file mode 100644 index 000000000..91d474fb5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/8feccf4db92b00f9_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/976254da14864f05_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/976254da14864f05_0 new file mode 100644 index 000000000..26f3e0857 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/976254da14864f05_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/976254da14864f05_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/976254da14864f05_1 new file mode 100644 index 000000000..bd7bd72fc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/976254da14864f05_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/da47584fe3e0bd71_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/da47584fe3e0bd71_0 new file mode 100644 index 000000000..a41783998 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/da47584fe3e0bd71_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/da47584fe3e0bd71_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/da47584fe3e0bd71_1 new file mode 100644 index 000000000..bf6ab0a32 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/da47584fe3e0bd71_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/dd19bfae5c01031e_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/dd19bfae5c01031e_0 new file mode 100644 index 000000000..fd9f7bc73 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/dd19bfae5c01031e_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/f6db2afbd4812faf_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/f6db2afbd4812faf_0 new file mode 100644 index 000000000..f8522aef3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/f6db2afbd4812faf_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/f6db2afbd4812faf_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/f6db2afbd4812faf_1 new file mode 100644 index 000000000..1b025395a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/f6db2afbd4812faf_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/index b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/index new file mode 100644 index 000000000..79bd403ac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/index differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/index-dir/the-real-index b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/index-dir/the-real-index new file mode 100644 index 000000000..4004e15b8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/ac64c3a6-76d1-4af4-8987-11dd3f397073/index-dir/the-real-index differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/index.txt b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/index.txt new file mode 100644 index 000000000..9ac2b5aa7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/379f1cbab5b08b6fc9e08681e42d8be311441c88/index.txt differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/02c0a25e74604a41_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/02c0a25e74604a41_0 index eef0b2498..4992985a5 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/02c0a25e74604a41_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/02c0a25e74604a41_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/02c0a25e74604a41_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/02c0a25e74604a41_1 new file mode 100644 index 000000000..cc642dee7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/02c0a25e74604a41_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/06147c33ff3369bb_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/06147c33ff3369bb_0 index 905b81203..e0cc496a4 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/06147c33ff3369bb_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/06147c33ff3369bb_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/1be20d99e1600113_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/1be20d99e1600113_0 index a23e84f2d..16a9bc3e6 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/1be20d99e1600113_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/1be20d99e1600113_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/1e7ad787b38ae8d8_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/1e7ad787b38ae8d8_0 index 4a8546107..5322f6a01 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/1e7ad787b38ae8d8_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/1e7ad787b38ae8d8_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/26507a1838ac5aaf_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/26507a1838ac5aaf_0 index 5c1aa02df..b698bf053 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/26507a1838ac5aaf_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/26507a1838ac5aaf_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/26507a1838ac5aaf_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/26507a1838ac5aaf_1 new file mode 100644 index 000000000..4e1e15e4c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/26507a1838ac5aaf_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/36cbe718f52e532f_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/36cbe718f52e532f_0 index 5865cf008..81e41f9b4 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/36cbe718f52e532f_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/36cbe718f52e532f_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/36cbe718f52e532f_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/36cbe718f52e532f_1 new file mode 100644 index 000000000..d9e403521 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/36cbe718f52e532f_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/37befd9530f0a91e_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/37befd9530f0a91e_0 index 50a7f52e9..caf5cce78 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/37befd9530f0a91e_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/37befd9530f0a91e_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/37befd9530f0a91e_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/37befd9530f0a91e_1 new file mode 100644 index 000000000..16bab196a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/37befd9530f0a91e_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3922e267c5cfcce0_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3922e267c5cfcce0_0 index 326176766..19a8593e4 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3922e267c5cfcce0_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3922e267c5cfcce0_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3ab624b634acbacd_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3ab624b634acbacd_0 index 9f049c869..6513ccf3e 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3ab624b634acbacd_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3ab624b634acbacd_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3ab624b634acbacd_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3ab624b634acbacd_1 new file mode 100644 index 000000000..4cdbf059a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3ab624b634acbacd_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3b6b3271595d9ee3_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3b6b3271595d9ee3_0 index af3259495..31777be87 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3b6b3271595d9ee3_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3b6b3271595d9ee3_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3ffbeac896dfd6e5_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3ffbeac896dfd6e5_0 index fa907149d..86571a417 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3ffbeac896dfd6e5_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3ffbeac896dfd6e5_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3ffbeac896dfd6e5_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3ffbeac896dfd6e5_1 new file mode 100644 index 000000000..dfa9a5c6d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/3ffbeac896dfd6e5_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/404014388f77d3e4_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/404014388f77d3e4_0 index 8bbcb754d..6fe8fbf85 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/404014388f77d3e4_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/404014388f77d3e4_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/41625d7fca97e6e8_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/41625d7fca97e6e8_0 index b89e79395..56756a643 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/41625d7fca97e6e8_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/41625d7fca97e6e8_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/41625d7fca97e6e8_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/41625d7fca97e6e8_1 new file mode 100644 index 000000000..b87d79e46 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/41625d7fca97e6e8_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/4b062b3e58885f1f_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/4b062b3e58885f1f_0 index 3918cdb65..0287270d8 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/4b062b3e58885f1f_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/4b062b3e58885f1f_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/4df8cd7b45f8312f_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/4df8cd7b45f8312f_0 index 9dee379fe..c3c2f695d 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/4df8cd7b45f8312f_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/4df8cd7b45f8312f_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/56de65bb860fb505_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/56de65bb860fb505_0 index 5b42b5e2f..3d22f86b7 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/56de65bb860fb505_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/56de65bb860fb505_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/56de65bb860fb505_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/56de65bb860fb505_1 new file mode 100644 index 000000000..73e1707b4 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/56de65bb860fb505_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/5b48a93c54de7157_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/5b48a93c54de7157_0 index 11cee4a96..4fa909ec9 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/5b48a93c54de7157_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/5b48a93c54de7157_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/5cb747aadcdfa2a4_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/5cb747aadcdfa2a4_0 index e836c1c2d..54f1d88c2 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/5cb747aadcdfa2a4_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/5cb747aadcdfa2a4_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/5cb747aadcdfa2a4_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/5cb747aadcdfa2a4_1 new file mode 100644 index 000000000..e152e3615 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/5cb747aadcdfa2a4_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/711cd98136b6bf29_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/711cd98136b6bf29_0 index 7469dc167..ae99baaed 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/711cd98136b6bf29_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/711cd98136b6bf29_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/7db97660b8feeadd_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/7db97660b8feeadd_0 index 6e67cf790..b5043cb0a 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/7db97660b8feeadd_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/7db97660b8feeadd_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/858e92be86597242_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/858e92be86597242_0 index f80e8431c..3b71fa116 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/858e92be86597242_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/858e92be86597242_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/87beb73604fb0535_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/87beb73604fb0535_0 index 80a1f3fe3..625bebaa8 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/87beb73604fb0535_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/87beb73604fb0535_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/87beb73604fb0535_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/87beb73604fb0535_1 new file mode 100644 index 000000000..63129042a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/87beb73604fb0535_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/8e0f76811eccfedf_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/8e0f76811eccfedf_0 index 26accffb4..145a9cc7d 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/8e0f76811eccfedf_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/8e0f76811eccfedf_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/8e0f76811eccfedf_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/8e0f76811eccfedf_1 new file mode 100644 index 000000000..141018936 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/8e0f76811eccfedf_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/9ba56bad06523371_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/9ba56bad06523371_0 index 99a74a23d..e934f9041 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/9ba56bad06523371_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/9ba56bad06523371_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/9ba56bad06523371_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/9ba56bad06523371_1 new file mode 100644 index 000000000..e0cf0cb5e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/9ba56bad06523371_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/9ee918aaf5e4971c_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/9ee918aaf5e4971c_0 index 4b0c4c0df..7f55370ec 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/9ee918aaf5e4971c_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/9ee918aaf5e4971c_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/9fb1cadcfb7954f2_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/9fb1cadcfb7954f2_0 index e326a1c7c..e900c17af 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/9fb1cadcfb7954f2_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/9fb1cadcfb7954f2_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/9fb1cadcfb7954f2_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/9fb1cadcfb7954f2_1 new file mode 100644 index 000000000..ad9aafd38 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/9fb1cadcfb7954f2_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/a61b2474fceed411_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/a61b2474fceed411_0 index a76897a77..e7e5bef60 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/a61b2474fceed411_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/a61b2474fceed411_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/b27f4a90bccfbab2_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/b27f4a90bccfbab2_0 index 642acd884..35995f242 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/b27f4a90bccfbab2_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/b27f4a90bccfbab2_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/bcaa81dfe71aecf7_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/bcaa81dfe71aecf7_0 index 56f3590e1..1d5fd7a3e 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/bcaa81dfe71aecf7_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/bcaa81dfe71aecf7_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/c230409bc0fdf659_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/c230409bc0fdf659_0 index 5015ab416..1278062d1 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/c230409bc0fdf659_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/c230409bc0fdf659_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/c8eb5508acf5f302_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/c8eb5508acf5f302_0 index be2f75094..1a503a837 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/c8eb5508acf5f302_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/c8eb5508acf5f302_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/c8eb5508acf5f302_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/c8eb5508acf5f302_1 new file mode 100644 index 000000000..d1201a690 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/c8eb5508acf5f302_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/cad299451fdee2c8_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/cad299451fdee2c8_0 index 22896f2b9..ed6aebc4c 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/cad299451fdee2c8_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/cad299451fdee2c8_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/cad299451fdee2c8_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/cad299451fdee2c8_1 new file mode 100644 index 000000000..ce0557ad7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/cad299451fdee2c8_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/cd35262f28457849_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/cd35262f28457849_0 index 41f6d9899..0310f328a 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/cd35262f28457849_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/cd35262f28457849_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/cd35262f28457849_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/cd35262f28457849_1 new file mode 100644 index 000000000..cc38a31f2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/cd35262f28457849_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/d01fab9561194de9_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/d01fab9561194de9_0 index 42df5302b..85c90e772 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/d01fab9561194de9_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/d01fab9561194de9_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/d01fab9561194de9_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/d01fab9561194de9_1 new file mode 100644 index 000000000..d932f659e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/d01fab9561194de9_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/d26d1245cef9ef8f_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/d26d1245cef9ef8f_0 index c10ec1e98..f9fe23d54 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/d26d1245cef9ef8f_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/d26d1245cef9ef8f_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/e50b9a7033666190_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/e50b9a7033666190_0 index 2690d719d..1919b0610 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/e50b9a7033666190_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/e50b9a7033666190_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/e50b9a7033666190_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/e50b9a7033666190_1 new file mode 100644 index 000000000..7422ba94d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/e50b9a7033666190_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/eb81e65cdb024cda_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/eb81e65cdb024cda_0 index 583d4bb5a..a550e68a9 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/eb81e65cdb024cda_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/eb81e65cdb024cda_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/eb81e65cdb024cda_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/eb81e65cdb024cda_1 new file mode 100644 index 000000000..1fe1917c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/eb81e65cdb024cda_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f007c976967c6ac4_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f007c976967c6ac4_0 index 53741946c..d0f17c5a1 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f007c976967c6ac4_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f007c976967c6ac4_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f007c976967c6ac4_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f007c976967c6ac4_1 new file mode 100644 index 000000000..890b0c730 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f007c976967c6ac4_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f16a486fd551d43a_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f16a486fd551d43a_0 index 1d394c040..e1c3fecbf 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f16a486fd551d43a_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f16a486fd551d43a_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f16a486fd551d43a_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f16a486fd551d43a_1 new file mode 100644 index 000000000..2cf11861c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f16a486fd551d43a_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f48b91e53890e71a_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f48b91e53890e71a_0 index 77a0605f7..d4df03372 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f48b91e53890e71a_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f48b91e53890e71a_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f48b91e53890e71a_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f48b91e53890e71a_1 new file mode 100644 index 000000000..9f35c7c07 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f48b91e53890e71a_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f9e52f4e91d0ab6d_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f9e52f4e91d0ab6d_0 index b4fd0ced6..4fefb7a7d 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f9e52f4e91d0ab6d_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/f9e52f4e91d0ab6d_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/feabdd83965a0de8_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/feabdd83965a0de8_0 index f2484b852..a17ede89a 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/feabdd83965a0de8_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/feabdd83965a0de8_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/index-dir/the-real-index b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/index-dir/the-real-index index ee78d849b..7789334c7 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/index-dir/the-real-index and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/84da7419-d6cb-428f-ad9c-21840aff5bbe/index-dir/the-real-index differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/index.txt b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/index.txt index 492a61af8..5f3dead56 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/index.txt and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/922798d7958468282bcc5e15486c6474bc339da7/index.txt differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/07eca57ac26bd748_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/07eca57ac26bd748_0 index 672a7df8b..41f36dee1 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/07eca57ac26bd748_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/07eca57ac26bd748_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/08a338c4b0214231_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/08a338c4b0214231_0 index a414c5513..423661497 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/08a338c4b0214231_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/08a338c4b0214231_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/08a338c4b0214231_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/08a338c4b0214231_1 new file mode 100644 index 000000000..a54858d27 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/08a338c4b0214231_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/0be7d167c18a67cb_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/0be7d167c18a67cb_0 new file mode 100644 index 000000000..0e17ef863 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/0be7d167c18a67cb_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/0ea05227ec327515_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/0ea05227ec327515_0 index 8b736b296..70420cec4 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/0ea05227ec327515_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/0ea05227ec327515_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/12003cae4925c8ff_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/12003cae4925c8ff_0 index d6feb4468..e9d378a3a 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/12003cae4925c8ff_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/12003cae4925c8ff_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/21877253d54fbb5c_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/21877253d54fbb5c_0 index 0ed363409..4151feb33 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/21877253d54fbb5c_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/21877253d54fbb5c_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/226ce6b9a4f76d93_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/226ce6b9a4f76d93_0 new file mode 100644 index 000000000..0ace188a1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/226ce6b9a4f76d93_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/23a5b7509c06df9a_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/23a5b7509c06df9a_0 new file mode 100644 index 000000000..6747af0df Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/23a5b7509c06df9a_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/24943a26c463966f_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/24943a26c463966f_0 new file mode 100644 index 000000000..3a7574afb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/24943a26c463966f_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/2986666c49f7ad7c_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/2986666c49f7ad7c_0 index 2428dad52..a3ba32aee 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/2986666c49f7ad7c_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/2986666c49f7ad7c_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/2986666c49f7ad7c_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/2986666c49f7ad7c_1 new file mode 100644 index 000000000..a195944f3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/2986666c49f7ad7c_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/31923d247141906f_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/31923d247141906f_0 new file mode 100644 index 000000000..d2b1e70c3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/31923d247141906f_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/3372468c49b1fa4c_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/3372468c49b1fa4c_0 new file mode 100644 index 000000000..0ad627a28 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/3372468c49b1fa4c_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/36b187e9382295d1_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/36b187e9382295d1_0 index d290f06b0..9e35b40d2 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/36b187e9382295d1_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/36b187e9382295d1_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/36b187e9382295d1_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/36b187e9382295d1_1 new file mode 100644 index 000000000..174af053d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/36b187e9382295d1_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/3af5a860f2f1714d_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/3af5a860f2f1714d_0 new file mode 100644 index 000000000..c70097901 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/3af5a860f2f1714d_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/3e33c340863cfe3f_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/3e33c340863cfe3f_0 new file mode 100644 index 000000000..889709681 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/3e33c340863cfe3f_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/3f92caa6a13d3d4f_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/3f92caa6a13d3d4f_0 new file mode 100644 index 000000000..eb16a8d54 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/3f92caa6a13d3d4f_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/46d6711f436dfbf3_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/46d6711f436dfbf3_0 index 69c7b85ef..10ca75bcd 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/46d6711f436dfbf3_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/46d6711f436dfbf3_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/46d6711f436dfbf3_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/46d6711f436dfbf3_1 new file mode 100644 index 000000000..1baeb8625 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/46d6711f436dfbf3_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/4700c5f998abf337_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/4700c5f998abf337_0 index 04ae3f710..a0671d9cc 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/4700c5f998abf337_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/4700c5f998abf337_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/47d611683484f1a0_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/47d611683484f1a0_0 index c2ed1cf27..e96896267 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/47d611683484f1a0_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/47d611683484f1a0_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/48495f7749f7fe93_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/48495f7749f7fe93_0 index 90b1a7c0d..f32d08257 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/48495f7749f7fe93_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/48495f7749f7fe93_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/48495f7749f7fe93_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/48495f7749f7fe93_1 new file mode 100644 index 000000000..5d37dd5cb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/48495f7749f7fe93_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/526b8987601fc537_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/526b8987601fc537_0 new file mode 100644 index 000000000..f55e3f9f7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/526b8987601fc537_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/52d7f3d009635e4b_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/52d7f3d009635e4b_0 new file mode 100644 index 000000000..03fef152b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/52d7f3d009635e4b_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/54b290369047db02_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/54b290369047db02_0 new file mode 100644 index 000000000..a83b7894f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/54b290369047db02_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/5621a2ca3c751ce6_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/5621a2ca3c751ce6_0 index 5675d6737..91b4f59b5 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/5621a2ca3c751ce6_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/5621a2ca3c751ce6_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/56cdfbbfc09199fa_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/56cdfbbfc09199fa_0 index 1bbc65ecf..44c80dc92 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/56cdfbbfc09199fa_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/56cdfbbfc09199fa_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/57fa6b5893f486bf_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/57fa6b5893f486bf_0 index 71ca03203..7bdb4c5f4 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/57fa6b5893f486bf_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/57fa6b5893f486bf_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/57fa6b5893f486bf_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/57fa6b5893f486bf_1 new file mode 100644 index 000000000..4afeb1b14 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/57fa6b5893f486bf_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/5a72a2c6daefaa2a_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/5a72a2c6daefaa2a_0 index e0116b982..51efe64b8 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/5a72a2c6daefaa2a_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/5a72a2c6daefaa2a_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/5a72a2c6daefaa2a_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/5a72a2c6daefaa2a_1 new file mode 100644 index 000000000..cdcee6f11 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/5a72a2c6daefaa2a_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/5ce4eb56937b073e_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/5ce4eb56937b073e_0 new file mode 100644 index 000000000..bc3d93ccc Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/5ce4eb56937b073e_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/5f09e54a93e404fe_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/5f09e54a93e404fe_0 index 014647c56..1ff8bdf09 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/5f09e54a93e404fe_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/5f09e54a93e404fe_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/606a3759e4156f5b_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/606a3759e4156f5b_0 index aeed53396..1a105f7be 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/606a3759e4156f5b_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/606a3759e4156f5b_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/67eea310954289e3_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/67eea310954289e3_0 index cdb6724e4..851a63aa6 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/67eea310954289e3_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/67eea310954289e3_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/67eea310954289e3_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/67eea310954289e3_1 new file mode 100644 index 000000000..d52248d62 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/67eea310954289e3_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/695aab67e6352b3a_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/695aab67e6352b3a_0 new file mode 100644 index 000000000..db268b7d5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/695aab67e6352b3a_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/69c83588c04e3a86_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/69c83588c04e3a86_0 index 43fcd4bf2..63d51cebb 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/69c83588c04e3a86_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/69c83588c04e3a86_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/6b3364ae793c1e3a_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/6b3364ae793c1e3a_0 index 1b7568ce7..8ec534cf6 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/6b3364ae793c1e3a_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/6b3364ae793c1e3a_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7021c6c4150970e9_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7021c6c4150970e9_0 new file mode 100644 index 000000000..ac384f987 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7021c6c4150970e9_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/70e95f24f0583316_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/70e95f24f0583316_0 new file mode 100644 index 000000000..08a35a4f2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/70e95f24f0583316_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/720ae069d5da4042_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/720ae069d5da4042_0 index 2a24bc6bc..4551c5d13 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/720ae069d5da4042_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/720ae069d5da4042_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/720ae069d5da4042_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/720ae069d5da4042_1 new file mode 100644 index 000000000..218b26ad1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/720ae069d5da4042_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/759ebf45f11f27c3_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/759ebf45f11f27c3_0 index 9d7ab0acb..510b4df68 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/759ebf45f11f27c3_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/759ebf45f11f27c3_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/759ebf45f11f27c3_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/759ebf45f11f27c3_1 new file mode 100644 index 000000000..743c1a983 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/759ebf45f11f27c3_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7b928a50566b8042_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7b928a50566b8042_0 new file mode 100644 index 000000000..b50a048ea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7b928a50566b8042_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7b9a9b70cfcb9d18_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7b9a9b70cfcb9d18_0 index 4576e6e2e..8a9ca2246 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7b9a9b70cfcb9d18_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7b9a9b70cfcb9d18_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7c5e9217933634db_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7c5e9217933634db_0 index 2637d83f7..6f25dd72e 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7c5e9217933634db_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7c5e9217933634db_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7c7daf2d4631ffe7_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7c7daf2d4631ffe7_0 index b281f8611..c7899f8e0 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7c7daf2d4631ffe7_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7c7daf2d4631ffe7_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7c7daf2d4631ffe7_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7c7daf2d4631ffe7_1 new file mode 100644 index 000000000..52556a179 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/7c7daf2d4631ffe7_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/831576160fe17263_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/831576160fe17263_0 index c0635a172..86319505f 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/831576160fe17263_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/831576160fe17263_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/831576160fe17263_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/831576160fe17263_1 new file mode 100644 index 000000000..a5eec9ed8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/831576160fe17263_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/8590782539b5bf20_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/8590782539b5bf20_0 index ed36110fc..1b1e374f4 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/8590782539b5bf20_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/8590782539b5bf20_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9160875a8b2e5929_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9160875a8b2e5929_0 new file mode 100644 index 000000000..deed4a8a1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9160875a8b2e5929_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9226b6e74eba9999_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9226b6e74eba9999_0 new file mode 100644 index 000000000..3ad08b3b3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9226b6e74eba9999_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/93652ba4c01845e8_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/93652ba4c01845e8_0 index e5a7d2df3..5a9ee1544 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/93652ba4c01845e8_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/93652ba4c01845e8_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/95e3d9337c19c660_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/95e3d9337c19c660_0 index e3240db83..b882ea18f 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/95e3d9337c19c660_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/95e3d9337c19c660_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/95e3d9337c19c660_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/95e3d9337c19c660_1 new file mode 100644 index 000000000..4bee85263 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/95e3d9337c19c660_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/97834750a91491dc_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/97834750a91491dc_0 index 862d96d58..183ada048 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/97834750a91491dc_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/97834750a91491dc_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/97c4e62c918db81c_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/97c4e62c918db81c_0 new file mode 100644 index 000000000..99a3fc34b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/97c4e62c918db81c_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/987fa31a1a694dff_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/987fa31a1a694dff_0 index 28d8d0f66..1c7e3c2a0 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/987fa31a1a694dff_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/987fa31a1a694dff_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/98bbaf66c0739467_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/98bbaf66c0739467_0 new file mode 100644 index 000000000..918178fd1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/98bbaf66c0739467_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9a7659decc47dede_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9a7659decc47dede_0 index bf18107ae..badc161d2 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9a7659decc47dede_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9a7659decc47dede_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9a7659decc47dede_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9a7659decc47dede_1 new file mode 100644 index 000000000..f7e4387d3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9a7659decc47dede_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9c4b58bcfc3a258e_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9c4b58bcfc3a258e_0 index d9ad40a94..78779497f 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9c4b58bcfc3a258e_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9c4b58bcfc3a258e_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9c4b58bcfc3a258e_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9c4b58bcfc3a258e_1 new file mode 100644 index 000000000..609c49803 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9c4b58bcfc3a258e_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9dd3daaa50f6ab7f_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9dd3daaa50f6ab7f_0 index d299b22ed..900f76175 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9dd3daaa50f6ab7f_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9dd3daaa50f6ab7f_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9dd3daaa50f6ab7f_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9dd3daaa50f6ab7f_1 new file mode 100644 index 000000000..6542f8e5e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9dd3daaa50f6ab7f_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9ed1b64e1e95489b_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9ed1b64e1e95489b_0 index ff33debca..995aae412 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9ed1b64e1e95489b_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9ed1b64e1e95489b_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9ed1b64e1e95489b_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9ed1b64e1e95489b_1 new file mode 100644 index 000000000..a59ec1fea Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9ed1b64e1e95489b_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9f32808c590bead2_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9f32808c590bead2_0 new file mode 100644 index 000000000..38d844307 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/9f32808c590bead2_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/a11c2f476de422df_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/a11c2f476de422df_0 new file mode 100644 index 000000000..feac42d53 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/a11c2f476de422df_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/a2edc82b448cdabe_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/a2edc82b448cdabe_0 index 1678ffd41..431186991 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/a2edc82b448cdabe_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/a2edc82b448cdabe_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/a2edc82b448cdabe_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/a2edc82b448cdabe_1 new file mode 100644 index 000000000..e84f7c5f7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/a2edc82b448cdabe_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b186c622b0850b5d_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b186c622b0850b5d_0 new file mode 100644 index 000000000..d5aa91423 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b186c622b0850b5d_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b2bd62244c373b02_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b2bd62244c373b02_0 index 52c2d2371..ad8ef8ae1 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b2bd62244c373b02_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b2bd62244c373b02_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b316eb8b4b5fda83_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b316eb8b4b5fda83_0 index abc31e126..bc87d0493 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b316eb8b4b5fda83_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b316eb8b4b5fda83_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b515af967a03debb_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b515af967a03debb_0 index 509744bd8..56914bf9f 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b515af967a03debb_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b515af967a03debb_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b515af967a03debb_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b515af967a03debb_1 new file mode 100644 index 000000000..a9668bf61 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b515af967a03debb_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b52d6e4f12c0473e_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b52d6e4f12c0473e_0 index 1d75d505f..2d76e68dd 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b52d6e4f12c0473e_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b52d6e4f12c0473e_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b52d6e4f12c0473e_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b52d6e4f12c0473e_1 new file mode 100644 index 000000000..9bbda8803 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b52d6e4f12c0473e_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b84150151f016a6c_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b84150151f016a6c_0 index 140890344..e2f165b80 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b84150151f016a6c_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b84150151f016a6c_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b84150151f016a6c_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b84150151f016a6c_1 new file mode 100644 index 000000000..df3348dba Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/b84150151f016a6c_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/ba5027cfee48879a_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/ba5027cfee48879a_0 index ed26dee9c..9c29a63a7 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/ba5027cfee48879a_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/ba5027cfee48879a_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/be231a4410dd057a_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/be231a4410dd057a_0 index 11d1ff714..8ddbf83b9 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/be231a4410dd057a_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/be231a4410dd057a_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/be6fb277d9dbcaae_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/be6fb277d9dbcaae_0 new file mode 100644 index 000000000..517865f1e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/be6fb277d9dbcaae_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/c0f884f170c3094a_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/c0f884f170c3094a_0 new file mode 100644 index 000000000..a76d973ac Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/c0f884f170c3094a_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/c1e61d929652224a_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/c1e61d929652224a_0 index 21953d7d0..020fec040 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/c1e61d929652224a_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/c1e61d929652224a_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/c1e61d929652224a_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/c1e61d929652224a_1 new file mode 100644 index 000000000..994001ed1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/c1e61d929652224a_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/c820f44c2d32847e_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/c820f44c2d32847e_0 new file mode 100644 index 000000000..48bf44e26 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/c820f44c2d32847e_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/cc94eb59c3ebc252_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/cc94eb59c3ebc252_0 new file mode 100644 index 000000000..932349dcb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/cc94eb59c3ebc252_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/cf676c01684b69fa_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/cf676c01684b69fa_0 new file mode 100644 index 000000000..0e964f792 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/cf676c01684b69fa_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/cf7724abd1d7d61e_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/cf7724abd1d7d61e_0 new file mode 100644 index 000000000..40dc794e0 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/cf7724abd1d7d61e_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/cf7724abd1d7d61e_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/cf7724abd1d7d61e_1 new file mode 100644 index 000000000..c1cb38458 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/cf7724abd1d7d61e_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/d34d1bf25135868c_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/d34d1bf25135868c_0 index 2727f6748..3913c8567 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/d34d1bf25135868c_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/d34d1bf25135868c_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/d466661d5168a172_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/d466661d5168a172_0 index 2059758f5..c356aaef8 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/d466661d5168a172_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/d466661d5168a172_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/d47977af3e7ed285_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/d47977af3e7ed285_0 index b97b6783b..c2a5e870d 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/d47977af3e7ed285_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/d47977af3e7ed285_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/d47977af3e7ed285_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/d47977af3e7ed285_1 new file mode 100644 index 000000000..94f09de50 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/d47977af3e7ed285_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/d951f06cd1f0e408_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/d951f06cd1f0e408_0 new file mode 100644 index 000000000..4b0661b4f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/d951f06cd1f0e408_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/da67e17f0329a3a0_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/da67e17f0329a3a0_0 new file mode 100644 index 000000000..2218bbd7d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/da67e17f0329a3a0_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/decc7caf0c37963d_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/decc7caf0c37963d_0 index f3feafec8..ab49b65c8 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/decc7caf0c37963d_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/decc7caf0c37963d_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e11e32d4364cd815_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e11e32d4364cd815_0 new file mode 100644 index 000000000..04c9f288a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e11e32d4364cd815_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e4d0fd497c5533b6_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e4d0fd497c5533b6_0 index e1a43af84..a93c61c61 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e4d0fd497c5533b6_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e4d0fd497c5533b6_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e52283282a5c561e_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e52283282a5c561e_0 index 0fdcfac84..9e721fbd2 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e52283282a5c561e_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e52283282a5c561e_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e52283282a5c561e_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e52283282a5c561e_1 new file mode 100644 index 000000000..439cb6d54 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e52283282a5c561e_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e65d4f6e692714d3_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e65d4f6e692714d3_0 new file mode 100644 index 000000000..30af3cd65 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e65d4f6e692714d3_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e6ce320615821471_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e6ce320615821471_0 index 0644ec0b3..ce81a3002 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e6ce320615821471_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e6ce320615821471_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e6ce320615821471_1 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e6ce320615821471_1 new file mode 100644 index 000000000..126b3e787 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/e6ce320615821471_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/ea9631e951a4abff_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/ea9631e951a4abff_0 new file mode 100644 index 000000000..49877132f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/ea9631e951a4abff_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/f8be0195e5ba5966_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/f8be0195e5ba5966_0 index c92bfd1a4..5f470b065 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/f8be0195e5ba5966_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/f8be0195e5ba5966_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/fcc1847dd96933ab_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/fcc1847dd96933ab_0 index 426d0a947..9b5d9a166 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/fcc1847dd96933ab_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/fcc1847dd96933ab_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/fda34ccff2ba083e_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/fda34ccff2ba083e_0 new file mode 100644 index 000000000..094ec083e Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/fda34ccff2ba083e_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/feb84260254a4e9d_0 b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/feb84260254a4e9d_0 index c8aeb40c0..75e9839ac 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/feb84260254a4e9d_0 and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/feb84260254a4e9d_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/index-dir/the-real-index b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/index-dir/the-real-index index 699ac71cb..c12d379b0 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/index-dir/the-real-index and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/256df2c8-8d00-459b-815e-ca9f532e4f26/index-dir/the-real-index differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/index.txt b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/index.txt index 05d6ee236..3afd5a700 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/index.txt and b/notebooklm_chrome_profile/Default/Service Worker/CacheStorage/c02d92c21a1041fdacc219d920cfe5fb2eb28a9f/index.txt differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/Database/LOG b/notebooklm_chrome_profile/Default/Service Worker/Database/LOG index 645aca1e8..e3e85814e 100644 --- a/notebooklm_chrome_profile/Default/Service Worker/Database/LOG +++ b/notebooklm_chrome_profile/Default/Service Worker/Database/LOG @@ -1,3 +1,3 @@ -2026/02/15-23:10:37.234 3ee65d Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Service Worker/Database/MANIFEST-000001 -2026/02/15-23:10:37.234 3ee65d Recovering log #3 -2026/02/15-23:10:37.234 3ee65d Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Service Worker/Database/000003.log +2026/02/17-14:03:55.085 3ee65f Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Service Worker/Database/MANIFEST-000001 +2026/02/17-14:03:55.086 3ee65f Recovering log #3 +2026/02/17-14:03:55.087 3ee65f Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Service Worker/Database/000003.log diff --git a/notebooklm_chrome_profile/Default/Service Worker/Database/LOG.old b/notebooklm_chrome_profile/Default/Service Worker/Database/LOG.old index 36859dc47..645aca1e8 100644 --- a/notebooklm_chrome_profile/Default/Service Worker/Database/LOG.old +++ b/notebooklm_chrome_profile/Default/Service Worker/Database/LOG.old @@ -1,2 +1,3 @@ -2026/02/15-13:30:38.245 3ee65f Creating DB /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Service Worker/Database since it was missing. -2026/02/15-13:30:38.248 3ee65f Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Service Worker/Database/MANIFEST-000001 +2026/02/15-23:10:37.234 3ee65d Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Service Worker/Database/MANIFEST-000001 +2026/02/15-23:10:37.234 3ee65d Recovering log #3 +2026/02/15-23:10:37.234 3ee65d Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Service Worker/Database/000003.log diff --git a/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/0ae129c33e7a30bd_0 b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/0ae129c33e7a30bd_0 deleted file mode 100644 index 90dc1b005..000000000 Binary files a/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/0ae129c33e7a30bd_0 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/0ae129c33e7a30bd_1 b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/0ae129c33e7a30bd_1 deleted file mode 100644 index b53f3ce4e..000000000 Binary files a/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/0ae129c33e7a30bd_1 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/59b38a3e03c34aeb_0 b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/59b38a3e03c34aeb_0 new file mode 100644 index 000000000..aa8fdda69 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/59b38a3e03c34aeb_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/59b38a3e03c34aeb_1 b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/59b38a3e03c34aeb_1 new file mode 100644 index 000000000..e34acee5d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/59b38a3e03c34aeb_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/7ed24d85806dc9b4_0 b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/7ed24d85806dc9b4_0 new file mode 100644 index 000000000..cacd73b6a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/7ed24d85806dc9b4_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/7ed24d85806dc9b4_1 b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/7ed24d85806dc9b4_1 new file mode 100644 index 000000000..9ead66d6a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/7ed24d85806dc9b4_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/ae1ca707c195e935_0 b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/ae1ca707c195e935_0 new file mode 100644 index 000000000..18dc4adae Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/ae1ca707c195e935_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/b3bd0d67f800d222_0 b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/b3bd0d67f800d222_0 new file mode 100644 index 000000000..41a2a93f3 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/b3bd0d67f800d222_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/b3bd0d67f800d222_1 b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/b3bd0d67f800d222_1 new file mode 100644 index 000000000..af02ff34c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/b3bd0d67f800d222_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/f13a76bbf6c7f0b3_0 b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/f13a76bbf6c7f0b3_0 new file mode 100644 index 000000000..220fe0a3b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/f13a76bbf6c7f0b3_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/f13a76bbf6c7f0b3_1 b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/f13a76bbf6c7f0b3_1 new file mode 100644 index 000000000..f5f64dbcd Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/f13a76bbf6c7f0b3_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/f76ccbbbd72a0391_0 b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/f76ccbbbd72a0391_0 new file mode 100644 index 000000000..88e204ce5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/f76ccbbbd72a0391_0 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/f76ccbbbd72a0391_1 b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/f76ccbbbd72a0391_1 new file mode 100644 index 000000000..08a4aee0d Binary files /dev/null and b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/f76ccbbbd72a0391_1 differ diff --git a/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/index-dir/the-real-index b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/index-dir/the-real-index index 533e98e9e..7479636b8 100644 Binary files a/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/index-dir/the-real-index and b/notebooklm_chrome_profile/Default/Service Worker/ScriptCache/index-dir/the-real-index differ diff --git a/notebooklm_chrome_profile/Default/Session Storage/000005.ldb b/notebooklm_chrome_profile/Default/Session Storage/000005.ldb new file mode 100644 index 000000000..50367f7b7 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Session Storage/000005.ldb differ diff --git a/notebooklm_chrome_profile/Default/Session Storage/000007.ldb b/notebooklm_chrome_profile/Default/Session Storage/000007.ldb new file mode 100644 index 000000000..2e8820269 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Session Storage/000007.ldb differ diff --git a/notebooklm_chrome_profile/Default/Session Storage/000009.ldb b/notebooklm_chrome_profile/Default/Session Storage/000009.ldb new file mode 100644 index 000000000..37aa77978 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Session Storage/000009.ldb differ diff --git a/notebooklm_chrome_profile/Default/Session Storage/LOG b/notebooklm_chrome_profile/Default/Session Storage/LOG index 7667b2e2a..0e0a46c33 100644 --- a/notebooklm_chrome_profile/Default/Session Storage/LOG +++ b/notebooklm_chrome_profile/Default/Session Storage/LOG @@ -1,3 +1,12 @@ 2026/02/15-23:10:37.474 3ee70f Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Session Storage/MANIFEST-000001 2026/02/15-23:10:37.480 3ee70f Recovering log #3 2026/02/15-23:10:37.481 3ee70f Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Session Storage/000003.log +2026/02/16-01:15:44.137 3ee713 Level-0 table #5: started +2026/02/16-01:15:44.140 3ee713 Level-0 table #5: 15657 bytes OK +2026/02/16-01:15:44.141 3ee713 Delete type=0 #3 +2026/02/16-01:44:35.545 3ee713 Level-0 table #7: started +2026/02/16-01:44:35.548 3ee713 Level-0 table #7: 15266 bytes OK +2026/02/16-01:44:35.550 3ee713 Delete type=0 #4 +2026/02/17-04:09:38.656 3ee713 Level-0 table #9: started +2026/02/17-04:09:38.670 3ee713 Level-0 table #9: 38388 bytes OK +2026/02/17-04:09:38.678 3ee713 Delete type=0 #6 diff --git a/notebooklm_chrome_profile/Default/Session Storage/MANIFEST-000001 b/notebooklm_chrome_profile/Default/Session Storage/MANIFEST-000001 index 18e5cab72..6a693679c 100644 Binary files a/notebooklm_chrome_profile/Default/Session Storage/MANIFEST-000001 and b/notebooklm_chrome_profile/Default/Session Storage/MANIFEST-000001 differ diff --git a/notebooklm_chrome_profile/Default/Sessions/Session_13415695718744831 b/notebooklm_chrome_profile/Default/Sessions/Session_13415695718744831 deleted file mode 100644 index aeea51d98..000000000 Binary files a/notebooklm_chrome_profile/Default/Sessions/Session_13415695718744831 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Sessions/Session_13415695993261270 b/notebooklm_chrome_profile/Default/Sessions/Session_13415695993261270 deleted file mode 100644 index ce1bfe526..000000000 Binary files a/notebooklm_chrome_profile/Default/Sessions/Session_13415695993261270 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Sessions/Session_13415792700287860 b/notebooklm_chrome_profile/Default/Sessions/Session_13415792700287860 new file mode 100644 index 000000000..c875d511c Binary files /dev/null and b/notebooklm_chrome_profile/Default/Sessions/Session_13415792700287860 differ diff --git a/notebooklm_chrome_profile/Default/Sessions/Session_13415793016527389 b/notebooklm_chrome_profile/Default/Sessions/Session_13415793016527389 new file mode 100644 index 000000000..8a07ddd3f Binary files /dev/null and b/notebooklm_chrome_profile/Default/Sessions/Session_13415793016527389 differ diff --git a/notebooklm_chrome_profile/Default/Sessions/Tabs_13415692240080242 b/notebooklm_chrome_profile/Default/Sessions/Tabs_13415692240080242 deleted file mode 100644 index 95f21c05d..000000000 Binary files a/notebooklm_chrome_profile/Default/Sessions/Tabs_13415692240080242 and /dev/null differ diff --git a/notebooklm_chrome_profile/Default/Sessions/Tabs_13415700372812331 b/notebooklm_chrome_profile/Default/Sessions/Tabs_13415700372812331 new file mode 100644 index 000000000..b8cdeaa03 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Sessions/Tabs_13415700372812331 differ diff --git a/notebooklm_chrome_profile/Default/Sessions/Tabs_13415701670755591 b/notebooklm_chrome_profile/Default/Sessions/Tabs_13415701670755591 new file mode 100644 index 000000000..04757026a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Sessions/Tabs_13415701670755591 differ diff --git a/notebooklm_chrome_profile/Default/Shortcuts b/notebooklm_chrome_profile/Default/Shortcuts index c1cd7fadd..a52e8aff5 100644 Binary files a/notebooklm_chrome_profile/Default/Shortcuts and b/notebooklm_chrome_profile/Default/Shortcuts differ diff --git a/notebooklm_chrome_profile/Default/Site Characteristics Database/LOG b/notebooklm_chrome_profile/Default/Site Characteristics Database/LOG index 9a3b22e54..1971e99be 100644 --- a/notebooklm_chrome_profile/Default/Site Characteristics Database/LOG +++ b/notebooklm_chrome_profile/Default/Site Characteristics Database/LOG @@ -1,3 +1,3 @@ -2026/02/15-23:10:37.261 3ee66e Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Site Characteristics Database/MANIFEST-000001 -2026/02/15-23:10:37.262 3ee66e Recovering log #3 -2026/02/15-23:10:37.262 3ee66e Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Site Characteristics Database/000003.log +2026/02/17-14:03:55.106 3ee66c Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Site Characteristics Database/MANIFEST-000001 +2026/02/17-14:03:55.107 3ee66c Recovering log #3 +2026/02/17-14:03:55.108 3ee66c Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Site Characteristics Database/000003.log diff --git a/notebooklm_chrome_profile/Default/Site Characteristics Database/LOG.old b/notebooklm_chrome_profile/Default/Site Characteristics Database/LOG.old index f6fbd968b..9a3b22e54 100644 --- a/notebooklm_chrome_profile/Default/Site Characteristics Database/LOG.old +++ b/notebooklm_chrome_profile/Default/Site Characteristics Database/LOG.old @@ -1,2 +1,3 @@ -2026/02/15-13:30:36.852 3ee687 Creating DB /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Site Characteristics Database since it was missing. -2026/02/15-13:30:36.870 3ee687 Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Site Characteristics Database/MANIFEST-000001 +2026/02/15-23:10:37.261 3ee66e Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Site Characteristics Database/MANIFEST-000001 +2026/02/15-23:10:37.262 3ee66e Recovering log #3 +2026/02/15-23:10:37.262 3ee66e Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Site Characteristics Database/000003.log diff --git a/notebooklm_chrome_profile/Default/Sync Data/LevelDB/LOG b/notebooklm_chrome_profile/Default/Sync Data/LevelDB/LOG index 951df25ce..53916a5e7 100644 --- a/notebooklm_chrome_profile/Default/Sync Data/LevelDB/LOG +++ b/notebooklm_chrome_profile/Default/Sync Data/LevelDB/LOG @@ -1,3 +1,3 @@ -2026/02/15-23:10:37.224 3ee66a Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Sync Data/LevelDB/MANIFEST-000001 -2026/02/15-23:10:37.230 3ee66a Recovering log #3 -2026/02/15-23:10:37.243 3ee66a Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Sync Data/LevelDB/000003.log +2026/02/17-14:03:55.069 3ee65f Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Sync Data/LevelDB/MANIFEST-000001 +2026/02/17-14:03:55.075 3ee65f Recovering log #3 +2026/02/17-14:03:55.081 3ee65f Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Sync Data/LevelDB/000003.log diff --git a/notebooklm_chrome_profile/Default/Sync Data/LevelDB/LOG.old b/notebooklm_chrome_profile/Default/Sync Data/LevelDB/LOG.old index c60fc2d2c..951df25ce 100644 --- a/notebooklm_chrome_profile/Default/Sync Data/LevelDB/LOG.old +++ b/notebooklm_chrome_profile/Default/Sync Data/LevelDB/LOG.old @@ -1,2 +1,3 @@ -2026/02/15-13:30:36.839 3ee66b Creating DB /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Sync Data/LevelDB since it was missing. -2026/02/15-13:30:36.877 3ee66b Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Sync Data/LevelDB/MANIFEST-000001 +2026/02/15-23:10:37.224 3ee66a Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Sync Data/LevelDB/MANIFEST-000001 +2026/02/15-23:10:37.230 3ee66a Recovering log #3 +2026/02/15-23:10:37.243 3ee66a Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/Sync Data/LevelDB/000003.log diff --git a/notebooklm_chrome_profile/Default/Sync Data/Nigori.bin b/notebooklm_chrome_profile/Default/Sync Data/Nigori.bin index e8ae5ec67..b41d827fe 100644 Binary files a/notebooklm_chrome_profile/Default/Sync Data/Nigori.bin and b/notebooklm_chrome_profile/Default/Sync Data/Nigori.bin differ diff --git a/notebooklm_chrome_profile/Default/Top Sites b/notebooklm_chrome_profile/Default/Top Sites index d2e68d419..c59ecbb65 100644 Binary files a/notebooklm_chrome_profile/Default/Top Sites and b/notebooklm_chrome_profile/Default/Top Sites differ diff --git a/notebooklm_chrome_profile/Default/TransportSecurity b/notebooklm_chrome_profile/Default/TransportSecurity index 0725a39c9..ba14f6b7b 100644 --- a/notebooklm_chrome_profile/Default/TransportSecurity +++ b/notebooklm_chrome_profile/Default/TransportSecurity @@ -1 +1 @@ -{"sts":[{"expiry":1802757748.204563,"host":"AUZVVbFrGQtNk9gKIJeseeR07Afq6mwL/5l72jB314s=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771221748.204565},{"expiry":1802757161.651544,"host":"BOVxvkwVtjYd/wFouK4v4/gEZ+M1t76tI5vbjkCsg8Y=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771221161.651545},{"expiry":1782106490.270735,"host":"Bwo28ghgWWYL8apLqu0HBvLT7s1sxFyThd1LiseoolI=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771220090.270737},{"expiry":1787001163.582813,"host":"E10e7Gwg5+phsYD4E8qNYFsQySXnIHPAfo4zloUPESc=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771221163.582814},{"expiry":1802756600.22603,"host":"F7/+zp5vrnMGpacwWTYm/zH56F6WNWsTcuV2GLAD0v8=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771220600.226033},{"expiry":1802757790.339748,"host":"IMmEq4iiOVkkaBC6vUyjv31jqS9XCQXEnmyFYZ7MREE=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771221790.339748},{"expiry":1802757807.811949,"host":"Ifty0kmGtBkqpzyRNEJ2iccvLpOffAEtEf72UjNCr0U=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771221807.81195},{"expiry":1774325746.641739,"host":"K5G5VjInBl5+jl9T7YD9izyp3ofvEPDFoITEvcqSpTc=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771221746.641741},{"expiry":1802757165.807228,"host":"LGIWa5GPYLbu3HENIZPMMfLlWOj4g7EbMgVB8aeLRCE=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771221165.807229},{"expiry":1782108642.425644,"host":"MzjCeHe2HKY9Et6ILCNSdg5DgEaRTxCpyzki1qChJHI=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771222242.425649},{"expiry":1802757095.809265,"host":"M4bfUnCmQAi4PNb3B8aI/2+SVJhHKsMfMMT7fzi6ij4=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771221095.809267},{"expiry":1802757790.178443,"host":"RSppokZ1kANM3UybtnoVWNJQxxnIIPFCb7DNQe5s+/c=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771221790.178443},{"expiry":1782106983.818516,"host":"RqJlyx70LJsSZk+r9kvQZj81rCgpI7+38CEvdIg4zp0=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771220583.818518},{"expiry":1782106610.611017,"host":"TUVK1Qd8RS/MNsiCX8N04cWZvC+IzkO8p1Niq0eDWlY=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771220210.611018},{"expiry":1802758179.829517,"host":"TZmujbl93Yt3JI8wZ4X/zjkA0WFNGNW44A+o7h4YyHw=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771222179.829519},{"expiry":1802758085.54907,"host":"U6ST5Xc1k8Ygb1N9dOg/uW+kwaztEg6vxeFiS/jsDo4=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771222085.549072},{"expiry":1802757166.248031,"host":"YgiKFMQCiosw3iLI6pn6wlw4/kiNuPkZPpBW1pbt/Vg=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771221166.248032},{"expiry":1782108605.485897,"host":"Z030MHuAr75Z3Cp3qskx1ltBQH6qfbi1E7Xhe1zqJEs=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771222205.485899},{"expiry":1802757790.396789,"host":"bVzOnu6xyelN8iVLDSbFjyZVgXrXDyLSokjnq2hdUFs=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771221790.39679},{"expiry":1802757795.344733,"host":"by3HYgXFJoQvTPlDd2zzpjW2gj+L2+egy4ezZdihpTo=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771221795.344735},{"expiry":1782108145.189288,"host":"dERK8Ko+SPll3fI4ktOXyGETlPtRvoHIttvQhh3OR68=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771221745.18929},{"expiry":1802757790.321306,"host":"dIsI2buJU03Gk+THOFWmwxSsKSozjiKfCZJTx8Jn9aI=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771221790.321307},{"expiry":1802755762.689936,"host":"fJjUrPqhktMfiTHJX3Q0pJi/P12Q72DBgzzJqjlNC4o=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771219762.689938},{"expiry":1802756090.211077,"host":"hJX45KdVXWxPgQB6ShHAwn+XUJsLKUqwfDdLtsZdrUY=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771220090.211079},{"expiry":1802757745.717851,"host":"kYxWDeIDVgesBS02XkmPRTIpB0nkimBvKZESXctn8eA=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771221745.717853},{"expiry":1782070698.635968,"host":"myxca24Fg7L/IgePD/QeLaUxbyYNmJdOyLPYvlVtjPE=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771184298.635971},{"expiry":1802757746.29993,"host":"nAuqgR4iEWti7SOdT3UHPl6rmZU/DeaIm38P2O2OkgA=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771221746.299931},{"expiry":1802757865.075541,"host":"pIOokkB6kIMJhtWeJx0Sg/uVtG4EncvFFF2Ej0ywbJ4=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771221865.075542},{"expiry":1802756192.207653,"host":"pgON2PUDlLHP5+3vOgOuey/HE8+dfOFJxFi65EReunY=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771220192.207654},{"expiry":1802756038.830828,"host":"s29MWTVxs2Yt8TyQnJ4lyMZtlc9W0pk1vgLF7ET8sqY=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771220038.83083},{"expiry":1802756204.15969,"host":"t4P2CEBz3oL9ns14psRvXLZ5JbYnOSSmw7/wMEsyesU=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771220204.159694},{"expiry":1802756592.950609,"host":"wmV7bNCcLePq9vG+Xr4n8V+40cbB6ldLX/j7kalDLjk=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771220592.950611},{"expiry":1771306439.075486,"host":"z66AQy+riC1NicY5tkqWfrl20JVLuDMjhrKy1fAUX18=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771220039.075487},{"expiry":1771306438.780217,"host":"1l/8VELQ94OWGH2GlVrh3VtX8IIqEqARkKhk/S3C4eM=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771220038.780218},{"expiry":1802757811.481686,"host":"1+Ul/XQt7LBXeYnrxwts6YAUCwZaFupmvggXxoR2CdU=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771221811.481687},{"expiry":1802756602.62916,"host":"23S4wO/a7qwMShn5JqP9FSKBzxlhG/GKe3gcLpKKHPU=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771220602.629161},{"expiry":1802755834.935958,"host":"26YaoM4gVrY0ie3hywpFBUJh47nIlvTljf0QEZuoLCM=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771219834.93596},{"expiry":1802758180.836483,"host":"32asUV7VoCXGPpV4XRVisUdk+AeBBeHbN33ePk3w5J4=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771222180.836485},{"expiry":1802757746.145982,"host":"5EdUoB7YUY9zZV+2DkgVXgho8WUvp+D+6KpeUOhNQIM=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771221746.145983},{"expiry":1802757745.315839,"host":"8/RrMmQlCD2Gsp14wUCE1P8r7B2C5+yE0+g79IPyRsc=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771221745.315841},{"expiry":1802756583.775495,"host":"+HcsszjybdhdAutIh299C6RJUrHwSWYGvfH6HyUU5SU=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771220583.775496},{"expiry":1802757743.003825,"host":"+ccWXqaoHJ9hfuXbleKV6FQUrBlyXAJ31BdqjNQJpHs=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771221743.003826},{"expiry":1802757813.695047,"host":"+loO+DGmT6DTr59JZFAnGSlBAwPkO5M/R9ec1Sw/9KA=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771221813.695052}],"version":2} \ No newline at end of file +{"sts":[{"expiry":1802762161.452716,"host":"ANIaIz8I8bwOqqEhvRWfdVNqDIkdvFWvqIAlT24nbOU=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771226161.45272},{"expiry":1802775290.415071,"host":"AUZVVbFrGQtNk9gKIJeseeR07Afq6mwL/5l72jB314s=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771239290.415073},{"expiry":1802764587.225647,"host":"Ai/2ZrlOqOyBZv8J/GngQGFLuiiUWNn94yUc8MWbvtE=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771228587.225649},{"expiry":1802758277.386016,"host":"BOVxvkwVtjYd/wFouK4v4/gEZ+M1t76tI5vbjkCsg8Y=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771222277.386019},{"expiry":1782113168.739925,"host":"Bwo28ghgWWYL8apLqu0HBvLT7s1sxFyThd1LiseoolI=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771226768.739929},{"expiry":1802764587.481783,"host":"DE1tjk3yO9cPnqieNXwT2XZxzwbfKqK7rmDVhhlDnDA=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771228587.481783},{"expiry":1802767367.805515,"host":"EjnKeRgozdMTvdds2D+6Dy1G6BZW5V1shpDgH0plrDg=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771231367.805516},{"expiry":1787011366.908286,"host":"E10e7Gwg5+phsYD4E8qNYFsQySXnIHPAfo4zloUPESc=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771231366.908287},{"expiry":1802756600.22603,"host":"F7/+zp5vrnMGpacwWTYm/zH56F6WNWsTcuV2GLAD0v8=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771220600.226033},{"expiry":1802767404.122145,"host":"G4KRPyVF6H0x0qJher/3DTtZsigFPUCl+xbPiUXr+FM=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231404.122148},{"expiry":1802767437.214313,"host":"Hi4bEdMq563Qsqn4sVyUls/uVk7U80IxMa3wyWVUqWU=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771231437.214315},{"expiry":1802758391.345854,"host":"IMmEq4iiOVkkaBC6vUyjv31jqS9XCQXEnmyFYZ7MREE=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771222391.345855},{"expiry":1802767433.483245,"host":"IQEbmLRLlW6XgpJSAQiGL5Mwi5eNb8xGDsOZflhDYrw=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231433.483247},{"expiry":1781592624.587901,"host":"IVPe5l4Ox4NlhfyVjksBIwZnUyckzQILtSHpS27rz7Q=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771224624.587902},{"expiry":1802764528.47919,"host":"Ifty0kmGtBkqpzyRNEJ2iccvLpOffAEtEf72UjNCr0U=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771228528.479195},{"expiry":1802767433.482758,"host":"JnVwYqxqa3IPpij/W0aNxeC5IY7RKhldYMSwhsFWius=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231433.48276},{"expiry":1802767458.201114,"host":"KMr9YX7lsxeIKEKcpq38GQQL5ZYZdJChRMrnjyChZPo=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231458.201115},{"expiry":1802763924.483696,"host":"Kw0EBZ78PJKoJvqb/nKBxgR2B227cA8qInogjRQ18Lo=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771227924.483701},{"expiry":1774325746.641739,"host":"K5G5VjInBl5+jl9T7YD9izyp3ofvEPDFoITEvcqSpTc=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771221746.641741},{"expiry":1802767073.434476,"host":"LGIWa5GPYLbu3HENIZPMMfLlWOj4g7EbMgVB8aeLRCE=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231073.434479},{"expiry":1802767433.748557,"host":"MLaf8W7OjIIq/PePwDPiHr4t1awJ5vTuwmZGNWnCw0c=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231433.748559},{"expiry":1802767281.24113,"host":"MlPqB+nQjThHL0mhAwJJJRwrqL4d1gzxY3z9UeN7EZ8=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231281.241133},{"expiry":1782205778.055026,"host":"MzjCeHe2HKY9Et6ILCNSdg5DgEaRTxCpyzki1qChJHI=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771319378.055029},{"expiry":1802767433.553155,"host":"MztrKzIr9UYddfdUE9hZboO5anJ2Et4vIn4Q67H/i6E=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231433.553156},{"expiry":1802767739.283162,"host":"M4bfUnCmQAi4PNb3B8aI/2+SVJhHKsMfMMT7fzi6ij4=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231739.283164},{"expiry":1802767113.917444,"host":"NwrPnnXS1CU/jcgDYVrcwVqTxuQIW83MEHI4lOr7164=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771231113.917445},{"expiry":1782113804.53627,"host":"Or+xs9lI1ulmkUWp7Ib3WqA8IH/XernCHjxaV0A0cxg=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771227404.536272},{"expiry":1802767434.345816,"host":"O4ssZL00z0s+NFRkpCMZay175vexC9nourUPWIT20v0=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231434.345818},{"expiry":1802767439.252317,"host":"O+MRZZ5Xe9iejczuRPCXl/0DXXokFNeH+fjreHB2+tg=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231439.252318},{"expiry":1781592624.641276,"host":"PKxIBtjFWQGy6vbsM6mlgwE1lngJGeXVWTSEOMLTp0g=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771224624.641279},{"expiry":1782113170.604919,"host":"QeQc2dwqG1B+sqmYr5bJQYpeVslPM80vGrLEz689bqo=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771226770.60492},{"expiry":1802760241.822701,"host":"QyliVa0sR+b3vbtWXXDOWR4Pg2DU+cku+0x1e5jqW9I=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771224241.822702},{"expiry":1802758390.804112,"host":"RSppokZ1kANM3UybtnoVWNJQxxnIIPFCb7DNQe5s+/c=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771222390.804113},{"expiry":1782117167.248427,"host":"RqJlyx70LJsSZk+r9kvQZj81rCgpI7+38CEvdIg4zp0=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771230767.248427},{"expiry":1782111070.959357,"host":"SC3iVKx2Q2or0SjhYkWGJ8iUbpGL9rfYidvIDGZKhv4=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771224670.959363},{"expiry":1782114693.562029,"host":"TUVK1Qd8RS/MNsiCX8N04cWZvC+IzkO8p1Niq0eDWlY=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771228293.562029},{"expiry":1802758179.829517,"host":"TZmujbl93Yt3JI8wZ4X/zjkA0WFNGNW44A+o7h4YyHw=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771222179.829519},{"expiry":1802767434.020207,"host":"TriNSmqXPkrF1yy11dROn1aTK5AgsaWzwo1976OSmLY=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231434.020208},{"expiry":1802763398.80268,"host":"U6ST5Xc1k8Ygb1N9dOg/uW+kwaztEg6vxeFiS/jsDo4=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771227398.802682},{"expiry":1802767433.282753,"host":"U7eoEmeuzLXdipycgoGvIL4BFFBVsEXkV9WomoG8SVU=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231433.282755},{"expiry":1802767433.551987,"host":"VuOf4xWkvGi5BfIe6IrL8DWhRrq/qlySsNa1rDL0SwQ=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231433.55199},{"expiry":1802758409.454489,"host":"WJ82OKCsJnp4fLDKENvb7cuoxchdS5r3/dciLPhwWtg=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771222409.454491},{"expiry":1802762992.636574,"host":"W6GXjumDH4ZeKTDNGMEGV6BbJr1e2Vm9OlPU11m6kEM=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771226992.636575},{"expiry":1773820352.531569,"host":"Xa1OIJVKXHnLED3KbMIsM9gsq6O+1L9V60KW98t56YQ=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771228352.53157},{"expiry":1802767437.395094,"host":"YHSMTQnYC85xpfxQXKcYuC0wBIhWAWiCTB+UjCnXwn0=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231437.39512},{"expiry":1786956167.765207,"host":"YL938zvFIwpgpRcmZD7U/LTHR86FqetYzb+MlvetrjU=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231367.765208},{"expiry":1782113799.277954,"host":"YfEdU2zY9OKxDahKhNZm32zzOqi96IVShSpGp2BZkrA=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771227399.277955},{"expiry":1802758302.471696,"host":"YgiKFMQCiosw3iLI6pn6wlw4/kiNuPkZPpBW1pbt/Vg=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771222302.471698},{"expiry":1802767421.948938,"host":"Y1cbV6ziZu1KjdKdxBzKmgzsZCYqaDEHWONjJAo942Q=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771231421.948942},{"expiry":1782205257.39579,"host":"Z030MHuAr75Z3Cp3qskx1ltBQH6qfbi1E7Xhe1zqJEs=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771318857.395792},{"expiry":1802763923.482319,"host":"avhMMFXESNFD9rMgXU50iC1brlSP60CdjW3pfHbMOLM=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771227923.482333},{"expiry":1802764515.916137,"host":"bVzOnu6xyelN8iVLDSbFjyZVgXrXDyLSokjnq2hdUFs=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771228515.916139},{"expiry":1802764528.596967,"host":"by3HYgXFJoQvTPlDd2zzpjW2gj+L2+egy4ezZdihpTo=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771228528.596969},{"expiry":1802774533.850649,"host":"b46jxhI13pvF1wEVRW2d2NTEDWCEStaXkgoP0d+IXBE=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771238533.850657},{"expiry":1782125449.761033,"host":"dERK8Ko+SPll3fI4ktOXyGETlPtRvoHIttvQhh3OR68=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771239049.761043},{"expiry":1802758391.163649,"host":"dIsI2buJU03Gk+THOFWmwxSsKSozjiKfCZJTx8Jn9aI=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771222391.16365},{"expiry":1786996557.98683,"host":"dU3LglvzW9o4BgBVb0Ar5g+NZjJNyZMfVncgydLHIV8=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771228557.986832},{"expiry":1802760859.863147,"host":"duHvQNLEU7QszQn0ArAZjUhbYz3EK8yLCIrZS8gf+oI=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771224859.863149},{"expiry":1802767160.070445,"host":"e3SziuwfuO2UvuBno+qkR1ObHAzZmSUoJhrc7dbP1Uo=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231160.070447},{"expiry":1802767367.633371,"host":"fJjUrPqhktMfiTHJX3Q0pJi/P12Q72DBgzzJqjlNC4o=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231367.633371},{"expiry":1802763924.008209,"host":"fWZDv4lbtrvXJ5kXuUdT8n7XN+FeZy1LO/tOaWAHiio=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771227924.00821},{"expiry":1802767407.900375,"host":"faxKDmVvCl4tqAr7/i8gASEScAve02ie+aMFgrqzAy4=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231407.90038},{"expiry":1802764242.175136,"host":"gHzokIas2xi9SF53PIlfiTdldrXmbd+aL+8KMsG5Kxo=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771228242.175136},{"expiry":1802761423.878241,"host":"hJX45KdVXWxPgQB6ShHAwn+XUJsLKUqwfDdLtsZdrUY=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771225423.878245},{"expiry":1786774459.906303,"host":"iTca8SBpHaKYTUpvXoTxIrE6e6ClACYxbfYMD34LeDM=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771222459.906304},{"expiry":1802764431.083463,"host":"injwQJ7XhTVUs3Y1743s1QgpzqA1oOtLlbWZ08rz2tQ=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771228431.083467},{"expiry":1802767397.154055,"host":"i9im+NPWe9Lf87zGheSPpiSOaR1W0OkLzjuUfDjZhl0=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231397.154059},{"expiry":1782114748.919788,"host":"jZzKbB/LOvpQoo4oTL4HxeRSi+jsTufv7J91v6LW15s=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771228348.919791},{"expiry":1786783284.851421,"host":"kNAwinW00dmv/AcompzwhIRoaZkIQdqs6ZhOAn3sXoQ=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231284.851424},{"expiry":1802764405.227946,"host":"kYxWDeIDVgesBS02XkmPRTIpB0nkimBvKZESXctn8eA=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771228405.227948},{"expiry":1782114836.471068,"host":"kbnpa9rjno/ugqFSzGw9HfgNagmYkzs954dyO54ciYc=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771228436.471073},{"expiry":1802763673.316583,"host":"lSUBF2ZOicv3GabLGIHOASIzveGYCvt/286J4qhrDbE=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771227673.316586},{"expiry":1802767437.242589,"host":"mgMrzEDlu0uJbEz6QrX6q5pZyYn2hyLFEgKyROv38WE=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231437.242591},{"expiry":1802767433.347268,"host":"mxTckib/QiY4+0DDCCuGVcds7SGaXcBl/AbqoCwsNoI=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231433.34727},{"expiry":1782070698.635968,"host":"myxca24Fg7L/IgePD/QeLaUxbyYNmJdOyLPYvlVtjPE=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771184298.635971},{"expiry":1802767280.910358,"host":"nAuqgR4iEWti7SOdT3UHPl6rmZU/DeaIm38P2O2OkgA=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771231280.910359},{"expiry":1802767367.78201,"host":"nI7ijW5D/qL6vrJbV3HhSOPrpYz/u7iTePPaQmk/UEI=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231367.782012},{"expiry":1786780540.255005,"host":"oR3MkEJ1eJ7d1iiALNYX6atwz3Tz5AUF+77uJxAEpac=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771228540.255007},{"expiry":1802757865.075541,"host":"pIOokkB6kIMJhtWeJx0Sg/uVtG4EncvFFF2Ej0ywbJ4=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771221865.075542},{"expiry":1782117196.989732,"host":"pNfffbHLbbeQmTEZQGc/epQFPuEDMPhXRrH6j8xNg7w=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771230796.989734},{"expiry":1802764430.981282,"host":"pgON2PUDlLHP5+3vOgOuey/HE8+dfOFJxFi65EReunY=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771228430.981287},{"expiry":1802767366.764386,"host":"qaDeFdT1UTirY0OQe+c5LKw+zjx6vF/+3vFh7CgrAOY=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231366.764388},{"expiry":1802763851.39439,"host":"s29MWTVxs2Yt8TyQnJ4lyMZtlc9W0pk1vgLF7ET8sqY=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771227851.394391},{"expiry":1802767285.194557,"host":"tXjOdUMSBgtiUbrbGkl6XP80fiDB8uXOkUbnCf0IKvw=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771231285.194558},{"expiry":1802767403.896929,"host":"tqc4AhlVPRaLaw63AN3bUxMG0yj0PzK2ISVtzsXUD1g=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231403.896931},{"expiry":1802767433.168779,"host":"t0tnYtaKohPAEo6kG6GLwBglpNQ1+903cxMggOphRG4=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231433.168781},{"expiry":1802762769.264911,"host":"t4P2CEBz3oL9ns14psRvXLZ5JbYnOSSmw7/wMEsyesU=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771226769.264913},{"expiry":1786996557.908681,"host":"uKOo81trppxWDKxU7r5V6YAMy/Pk0DijWJtSMN5q8oI=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771228557.908681},{"expiry":1802767433.385486,"host":"u6WQzDaah5JZWHMND6aI1ryprokBuQMwYmP5UP+UK+s=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231433.385488},{"expiry":1802767433.337447,"host":"wG+saWS7py5zMNtZWrtfPMH7k37MMaYbUnHQ2n0BNDU=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231433.337448},{"expiry":1802756592.950609,"host":"wmV7bNCcLePq9vG+Xr4n8V+40cbB6ldLX/j7kalDLjk=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771220592.950611},{"expiry":1786783436.85586,"host":"w89C8BqupeVPDalwys582Ya3Ui8vCA0HksB8z88lDrw=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231436.855864},{"expiry":1802767434.40837,"host":"xE9t4ly0ue8RVP6dTnNDzyrrHSA38THntJkUczCz7L4=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231434.408371},{"expiry":1802767367.624415,"host":"zyELNqKKE0M7laJlbz4YlNKDHFsxhLhcRUgo5rt5ENA=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231367.624415},{"expiry":1802763131.401475,"host":"0dqweHYdPGbPIRB/l4SnwNZmmFUQYHcQvhLFabgsOsE=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771227131.401478},{"expiry":1802757811.481686,"host":"1+Ul/XQt7LBXeYnrxwts6YAUCwZaFupmvggXxoR2CdU=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771221811.481687},{"expiry":1802756602.62916,"host":"23S4wO/a7qwMShn5JqP9FSKBzxlhG/GKe3gcLpKKHPU=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771220602.629161},{"expiry":1802755834.935958,"host":"26YaoM4gVrY0ie3hywpFBUJh47nIlvTljf0QEZuoLCM=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771219834.93596},{"expiry":1802767162.994057,"host":"3f7OerknT+maxX9sf/AO5wHJhqCLA4sQRLAv0aztJfg=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771231162.994059},{"expiry":1802758180.836483,"host":"32asUV7VoCXGPpV4XRVisUdk+AeBBeHbN33ePk3w5J4=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771222180.836485},{"expiry":1802759917.754642,"host":"4AGT3lHihuMSd5rUj7B4u6At0jlSH3HFePovjPR+oLE=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771223917.754664},{"expiry":1802894635.424952,"host":"5EdUoB7YUY9zZV+2DkgVXgho8WUvp+D+6KpeUOhNQIM=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771358635.424954},{"expiry":1802767403.687571,"host":"554nAthRctjpaaXjGFtVsF7QfWy1ESiJUiw0zeo0Q7c=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231403.687574},{"expiry":1787301837.350868,"host":"7aSG5YrhUTDbGJRnactj/ijuN7vSaHkSfNzza7tWviU=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231437.350871},{"expiry":1802763429.80719,"host":"8YLfAPT7OmMZD5TQopDMn9UhoKG/Eg/RAQCLBmvfb5M=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771227429.807191},{"expiry":1802763999.736657,"host":"84alWqUNAg8Ty+eMzX389c2Fl6DTgrREvOv/X04qPhE=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771227999.736658},{"expiry":1802894635.404105,"host":"8/RrMmQlCD2Gsp14wUCE1P8r7B2C5+yE0+g79IPyRsc=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771358635.404107},{"expiry":1802764557.859425,"host":"9UvCn9o1ynqURDIUGaQxoozSUYPXtPT9FELAxBKoxh8=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771228557.859426},{"expiry":1802766767.209004,"host":"+HcsszjybdhdAutIh299C6RJUrHwSWYGvfH6HyUU5SU=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771230767.209005},{"expiry":1802767280.797787,"host":"+b+mZh8fEDwr0nbDzMYQMl3R/AuHhdyNVm5sRDNfA+o=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771231280.797789},{"expiry":1802775053.85055,"host":"+ccWXqaoHJ9hfuXbleKV6FQUrBlyXAJ31BdqjNQJpHs=","mode":"force-https","sts_include_subdomains":false,"sts_observed":1771239053.850552},{"expiry":1782113799.25065,"host":"+lPeEeU664E5hmZDsz8+6O9RnpLxT6WoswFwUoLm6aw=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771227399.250651},{"expiry":1802757813.695047,"host":"+loO+DGmT6DTr59JZFAnGSlBAwPkO5M/R9ec1Sw/9KA=","mode":"force-https","sts_include_subdomains":true,"sts_observed":1771221813.695052}],"version":2} \ No newline at end of file diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons Maskable/192.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons Maskable/192.png new file mode 100644 index 000000000..454e1b962 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons Maskable/192.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons Maskable/512.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons Maskable/512.png new file mode 100644 index 000000000..ae60271d2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons Maskable/512.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons Monochrome/16.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons Monochrome/16.png new file mode 100644 index 000000000..92bcb4f8b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons Monochrome/16.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons Monochrome/32.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons Monochrome/32.png new file mode 100644 index 000000000..229c19a3b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons Monochrome/32.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons Monochrome/48.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons Monochrome/48.png new file mode 100644 index 000000000..9f01e07a6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons Monochrome/48.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons Monochrome/512.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons Monochrome/512.png new file mode 100644 index 000000000..a0c59709b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons Monochrome/512.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/128.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/128.png index 605790473..e8896fcec 100644 Binary files a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/128.png and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/128.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/144.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/144.png new file mode 100644 index 000000000..4f888aa16 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/144.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/192.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/192.png index 1a7d537b2..4534bc20c 100644 Binary files a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/192.png and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/192.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/256.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/256.png index c260b347e..1fee477bb 100644 Binary files a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/256.png and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/256.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/32.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/32.png index c063cddfb..72ee1d08a 100644 Binary files a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/32.png and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/32.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/48.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/48.png index c4b4b34d9..2a2a382bf 100644 Binary files a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/48.png and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/48.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/64.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/64.png index 75f878a53..6a231a4b6 100644 Binary files a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/64.png and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/64.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/96.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/96.png index 1ed53653a..d1cd05bda 100644 Binary files a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/96.png and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Icons/96.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Shortcuts Menu Icons/0/512.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Shortcuts Menu Icons/0/512.png new file mode 100644 index 000000000..97a94adc5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Shortcuts Menu Icons/0/512.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Shortcuts Menu Icons/1/512.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Shortcuts Menu Icons/1/512.png new file mode 100644 index 000000000..8b15a9fab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Shortcuts Menu Icons/1/512.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Shortcuts Menu Icons/Monochrome/0/512.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Shortcuts Menu Icons/Monochrome/0/512.png new file mode 100644 index 000000000..97a94adc5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Shortcuts Menu Icons/Monochrome/0/512.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Shortcuts Menu Icons/Monochrome/1/512.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Shortcuts Menu Icons/Monochrome/1/512.png new file mode 100644 index 000000000..8b15a9fab Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Shortcuts Menu Icons/Monochrome/1/512.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons Maskable/192.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons Maskable/192.png new file mode 100644 index 000000000..454e1b962 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons Maskable/192.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons Maskable/512.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons Maskable/512.png new file mode 100644 index 000000000..ae60271d2 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons Maskable/512.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons Monochrome/16.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons Monochrome/16.png new file mode 100644 index 000000000..92bcb4f8b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons Monochrome/16.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons Monochrome/32.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons Monochrome/32.png new file mode 100644 index 000000000..229c19a3b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons Monochrome/32.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons Monochrome/48.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons Monochrome/48.png new file mode 100644 index 000000000..9f01e07a6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons Monochrome/48.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons Monochrome/512.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons Monochrome/512.png new file mode 100644 index 000000000..a0c59709b Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons Monochrome/512.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/128.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/128.png new file mode 100644 index 000000000..e8896fcec Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/128.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/144.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/144.png new file mode 100644 index 000000000..4f888aa16 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/144.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/192.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/192.png index 1a7d537b2..4534bc20c 100644 Binary files a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/192.png and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/192.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/256.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/256.png new file mode 100644 index 000000000..1fee477bb Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/256.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/32.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/32.png new file mode 100644 index 000000000..72ee1d08a Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/32.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/48.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/48.png new file mode 100644 index 000000000..2a2a382bf Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/48.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/64.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/64.png new file mode 100644 index 000000000..6a231a4b6 Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/64.png differ diff --git a/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/96.png b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/96.png new file mode 100644 index 000000000..d1cd05bda Binary files /dev/null and b/notebooklm_chrome_profile/Default/Web Applications/Manifest Resources/agimnkijcaahngcdmfeangaknmldooml/Trusted Icons/Icons/96.png differ diff --git a/notebooklm_chrome_profile/Default/Web Data b/notebooklm_chrome_profile/Default/Web Data index d675a208a..262f96cfe 100644 Binary files a/notebooklm_chrome_profile/Default/Web Data and b/notebooklm_chrome_profile/Default/Web Data differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/10/CacheStorage/index.txt b/notebooklm_chrome_profile/Default/WebStorage/10/CacheStorage/index.txt new file mode 100644 index 000000000..fba078288 --- /dev/null +++ b/notebooklm_chrome_profile/Default/WebStorage/10/CacheStorage/index.txt @@ -0,0 +1,2 @@ +https://www.youtube.com/4https://www.youtube.com/^0https://datacenters.google +( \ No newline at end of file diff --git a/notebooklm_chrome_profile/Default/WebStorage/10/IndexedDB/indexeddb.leveldb/000005.ldb b/notebooklm_chrome_profile/Default/WebStorage/10/IndexedDB/indexeddb.leveldb/000005.ldb new file mode 100644 index 000000000..7ef6ce160 Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/10/IndexedDB/indexeddb.leveldb/000005.ldb differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/10/IndexedDB/indexeddb.leveldb/CURRENT b/notebooklm_chrome_profile/Default/WebStorage/10/IndexedDB/indexeddb.leveldb/CURRENT new file mode 100644 index 000000000..7ed683d17 --- /dev/null +++ b/notebooklm_chrome_profile/Default/WebStorage/10/IndexedDB/indexeddb.leveldb/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/notebooklm_chrome_profile/Default/WebStorage/10/IndexedDB/indexeddb.leveldb/LOCK b/notebooklm_chrome_profile/Default/WebStorage/10/IndexedDB/indexeddb.leveldb/LOCK new file mode 100644 index 000000000..e69de29bb diff --git a/notebooklm_chrome_profile/Default/WebStorage/10/IndexedDB/indexeddb.leveldb/LOG b/notebooklm_chrome_profile/Default/WebStorage/10/IndexedDB/indexeddb.leveldb/LOG new file mode 100644 index 000000000..c82d1cc47 --- /dev/null +++ b/notebooklm_chrome_profile/Default/WebStorage/10/IndexedDB/indexeddb.leveldb/LOG @@ -0,0 +1,6 @@ +2026/02/16-01:26:37.590 3ee65d Creating DB /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/WebStorage/10/IndexedDB/indexeddb.leveldb since it was missing. +2026/02/16-01:26:37.592 3ee65d Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/WebStorage/10/IndexedDB/indexeddb.leveldb/MANIFEST-000001 +2026/02/16-01:34:12.210 3ee65f Level-0 table #5: started +2026/02/16-01:34:12.215 3ee65f Level-0 table #5: 408725 bytes OK +2026/02/16-01:34:12.217 3ee65f Delete type=0 #3 +2026/02/16-01:34:12.219 3ee65f Manual compaction at level-0 from (begin) .. (end); will stop at (end) diff --git a/notebooklm_chrome_profile/Default/WebStorage/10/IndexedDB/indexeddb.leveldb/MANIFEST-000001 b/notebooklm_chrome_profile/Default/WebStorage/10/IndexedDB/indexeddb.leveldb/MANIFEST-000001 new file mode 100644 index 000000000..6c6cb39cd Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/10/IndexedDB/indexeddb.leveldb/MANIFEST-000001 differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/11/CacheStorage/index.txt b/notebooklm_chrome_profile/Default/WebStorage/11/CacheStorage/index.txt new file mode 100644 index 000000000..2e0986626 --- /dev/null +++ b/notebooklm_chrome_profile/Default/WebStorage/11/CacheStorage/index.txt @@ -0,0 +1 @@ +https://www.youtube.com//https://www.youtube.com/^0https://skills.google ( \ No newline at end of file diff --git a/notebooklm_chrome_profile/Default/WebStorage/11/IndexedDB/indexeddb.leveldb/CURRENT b/notebooklm_chrome_profile/Default/WebStorage/11/IndexedDB/indexeddb.leveldb/CURRENT new file mode 100644 index 000000000..7ed683d17 --- /dev/null +++ b/notebooklm_chrome_profile/Default/WebStorage/11/IndexedDB/indexeddb.leveldb/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/notebooklm_chrome_profile/Default/WebStorage/11/IndexedDB/indexeddb.leveldb/LOCK b/notebooklm_chrome_profile/Default/WebStorage/11/IndexedDB/indexeddb.leveldb/LOCK new file mode 100644 index 000000000..e69de29bb diff --git a/notebooklm_chrome_profile/Default/WebStorage/11/IndexedDB/indexeddb.leveldb/LOG b/notebooklm_chrome_profile/Default/WebStorage/11/IndexedDB/indexeddb.leveldb/LOG new file mode 100644 index 000000000..1197193c4 --- /dev/null +++ b/notebooklm_chrome_profile/Default/WebStorage/11/IndexedDB/indexeddb.leveldb/LOG @@ -0,0 +1,2 @@ +2026/02/16-01:32:12.013 3ee65f Creating DB /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/WebStorage/11/IndexedDB/indexeddb.leveldb since it was missing. +2026/02/16-01:32:12.017 3ee65f Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/WebStorage/11/IndexedDB/indexeddb.leveldb/MANIFEST-000001 diff --git a/notebooklm_chrome_profile/Default/WebStorage/11/IndexedDB/indexeddb.leveldb/MANIFEST-000001 b/notebooklm_chrome_profile/Default/WebStorage/11/IndexedDB/indexeddb.leveldb/MANIFEST-000001 new file mode 100644 index 000000000..3ccb46a2f Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/11/IndexedDB/indexeddb.leveldb/MANIFEST-000001 differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/13/IndexedDB/indexeddb.leveldb/CURRENT b/notebooklm_chrome_profile/Default/WebStorage/13/IndexedDB/indexeddb.leveldb/CURRENT new file mode 100644 index 000000000..7ed683d17 --- /dev/null +++ b/notebooklm_chrome_profile/Default/WebStorage/13/IndexedDB/indexeddb.leveldb/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/notebooklm_chrome_profile/Default/WebStorage/13/IndexedDB/indexeddb.leveldb/LOCK b/notebooklm_chrome_profile/Default/WebStorage/13/IndexedDB/indexeddb.leveldb/LOCK new file mode 100644 index 000000000..e69de29bb diff --git a/notebooklm_chrome_profile/Default/WebStorage/13/IndexedDB/indexeddb.leveldb/LOG b/notebooklm_chrome_profile/Default/WebStorage/13/IndexedDB/indexeddb.leveldb/LOG new file mode 100644 index 000000000..d5c723c2d --- /dev/null +++ b/notebooklm_chrome_profile/Default/WebStorage/13/IndexedDB/indexeddb.leveldb/LOG @@ -0,0 +1,2 @@ +2026/02/16-01:53:25.441 3ee65d Creating DB /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/WebStorage/13/IndexedDB/indexeddb.leveldb since it was missing. +2026/02/16-01:53:25.444 3ee65d Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/WebStorage/13/IndexedDB/indexeddb.leveldb/MANIFEST-000001 diff --git a/notebooklm_chrome_profile/Default/WebStorage/13/IndexedDB/indexeddb.leveldb/MANIFEST-000001 b/notebooklm_chrome_profile/Default/WebStorage/13/IndexedDB/indexeddb.leveldb/MANIFEST-000001 new file mode 100644 index 000000000..3ccb46a2f Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/13/IndexedDB/indexeddb.leveldb/MANIFEST-000001 differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/7/CacheStorage/index.txt b/notebooklm_chrome_profile/Default/WebStorage/7/CacheStorage/index.txt new file mode 100644 index 000000000..4e384bf6c --- /dev/null +++ b/notebooklm_chrome_profile/Default/WebStorage/7/CacheStorage/index.txt @@ -0,0 +1 @@ +https://www.youtube.com/,https://www.youtube.com/^0https://google.com ( \ No newline at end of file diff --git a/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb/000005.ldb b/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb/000005.ldb new file mode 100644 index 000000000..ce4412e4c Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb/000005.ldb differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb/LOG b/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb/LOG index 17c209d60..b46c4a316 100644 --- a/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb/LOG +++ b/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb/LOG @@ -1,2 +1,3 @@ -2026/02/16-00:02:25.917 3ee65d Creating DB /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb since it was missing. -2026/02/16-00:02:25.919 3ee65d Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb/MANIFEST-000001 +2026/02/16-01:52:42.337 3ee65f Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb/MANIFEST-000001 +2026/02/16-01:52:42.338 3ee65f Recovering log #4 +2026/02/16-01:52:42.339 3ee65f Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb/000004.log diff --git a/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb/LOG.old b/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb/LOG.old new file mode 100644 index 000000000..31998c192 --- /dev/null +++ b/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb/LOG.old @@ -0,0 +1,3 @@ +2026/02/16-01:31:20.418 3ee65d Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb/MANIFEST-000001 +2026/02/16-01:31:20.418 3ee65d Recovering log #4 +2026/02/16-01:31:20.419 3ee65d Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb/000004.log diff --git a/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb/MANIFEST-000001 b/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb/MANIFEST-000001 index 3ccb46a2f..98e4fd7ce 100644 Binary files a/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb/MANIFEST-000001 and b/notebooklm_chrome_profile/Default/WebStorage/7/IndexedDB/indexeddb.leveldb/MANIFEST-000001 differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/0165033617a132af_0 b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/0165033617a132af_0 new file mode 100644 index 000000000..66a5afdbd Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/0165033617a132af_0 differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/1ae05711e6a015ab_0 b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/1ae05711e6a015ab_0 new file mode 100644 index 000000000..b3021d639 Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/1ae05711e6a015ab_0 differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/49930c91e30005dc_0 b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/49930c91e30005dc_0 new file mode 100644 index 000000000..7ea74142e Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/49930c91e30005dc_0 differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/49e62dc51b4b44a8_0 b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/49e62dc51b4b44a8_0 new file mode 100644 index 000000000..3274f97e9 Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/49e62dc51b4b44a8_0 differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/69002a3487edb649_0 b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/69002a3487edb649_0 new file mode 100644 index 000000000..5532b32b8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/69002a3487edb649_0 differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/77abec58f9f448fb_0 b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/77abec58f9f448fb_0 new file mode 100644 index 000000000..46a6bf6ab Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/77abec58f9f448fb_0 differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/7b9a9b70cfcb9d18_0 b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/7b9a9b70cfcb9d18_0 new file mode 100644 index 000000000..8c1d0c5e8 Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/7b9a9b70cfcb9d18_0 differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/97834750a91491dc_0 b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/97834750a91491dc_0 new file mode 100644 index 000000000..e5c795b3b Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/97834750a91491dc_0 differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/a0763e339944b6aa_0 b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/a0763e339944b6aa_0 new file mode 100644 index 000000000..f76d9d1ef Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/a0763e339944b6aa_0 differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/b1b0ce93c1ba686c_0 b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/b1b0ce93c1ba686c_0 new file mode 100644 index 000000000..ac85f0fa1 Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/b1b0ce93c1ba686c_0 differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/b316eb8b4b5fda83_0 b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/b316eb8b4b5fda83_0 new file mode 100644 index 000000000..bd55ec2cc Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/b316eb8b4b5fda83_0 differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/ef5050b700042c3a_0 b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/ef5050b700042c3a_0 new file mode 100644 index 000000000..2a3fda003 Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/ef5050b700042c3a_0 differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/index b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/index new file mode 100644 index 000000000..79bd403ac Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/index differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/index-dir/the-real-index b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/index-dir/the-real-index new file mode 100644 index 000000000..b4ad72025 Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/82464a4c-dc62-4243-bf9a-73e7261b1b4f/index-dir/the-real-index differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/index.txt b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/index.txt new file mode 100644 index 000000000..7c15d15b5 Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/9/CacheStorage/index.txt differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/9/IndexedDB/indexeddb.leveldb/CURRENT b/notebooklm_chrome_profile/Default/WebStorage/9/IndexedDB/indexeddb.leveldb/CURRENT new file mode 100644 index 000000000..7ed683d17 --- /dev/null +++ b/notebooklm_chrome_profile/Default/WebStorage/9/IndexedDB/indexeddb.leveldb/CURRENT @@ -0,0 +1 @@ +MANIFEST-000001 diff --git a/notebooklm_chrome_profile/Default/WebStorage/9/IndexedDB/indexeddb.leveldb/LOCK b/notebooklm_chrome_profile/Default/WebStorage/9/IndexedDB/indexeddb.leveldb/LOCK new file mode 100644 index 000000000..e69de29bb diff --git a/notebooklm_chrome_profile/Default/WebStorage/9/IndexedDB/indexeddb.leveldb/LOG b/notebooklm_chrome_profile/Default/WebStorage/9/IndexedDB/indexeddb.leveldb/LOG new file mode 100644 index 000000000..17c3bd5dd --- /dev/null +++ b/notebooklm_chrome_profile/Default/WebStorage/9/IndexedDB/indexeddb.leveldb/LOG @@ -0,0 +1,2 @@ +2026/02/16-01:15:59.165 3ee65d Creating DB /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/WebStorage/9/IndexedDB/indexeddb.leveldb since it was missing. +2026/02/16-01:15:59.168 3ee65d Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/WebStorage/9/IndexedDB/indexeddb.leveldb/MANIFEST-000001 diff --git a/notebooklm_chrome_profile/Default/WebStorage/9/IndexedDB/indexeddb.leveldb/MANIFEST-000001 b/notebooklm_chrome_profile/Default/WebStorage/9/IndexedDB/indexeddb.leveldb/MANIFEST-000001 new file mode 100644 index 000000000..3ccb46a2f Binary files /dev/null and b/notebooklm_chrome_profile/Default/WebStorage/9/IndexedDB/indexeddb.leveldb/MANIFEST-000001 differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/QuotaManager b/notebooklm_chrome_profile/Default/WebStorage/QuotaManager index a2bedcad3..b10667f25 100644 Binary files a/notebooklm_chrome_profile/Default/WebStorage/QuotaManager and b/notebooklm_chrome_profile/Default/WebStorage/QuotaManager differ diff --git a/notebooklm_chrome_profile/Default/WebStorage/QuotaManager-journal b/notebooklm_chrome_profile/Default/WebStorage/QuotaManager-journal index a34852675..e69de29bb 100644 Binary files a/notebooklm_chrome_profile/Default/WebStorage/QuotaManager-journal and b/notebooklm_chrome_profile/Default/WebStorage/QuotaManager-journal differ diff --git a/notebooklm_chrome_profile/Default/shared_proto_db/LOG b/notebooklm_chrome_profile/Default/shared_proto_db/LOG index 29a19a809..0fa5744c5 100644 --- a/notebooklm_chrome_profile/Default/shared_proto_db/LOG +++ b/notebooklm_chrome_profile/Default/shared_proto_db/LOG @@ -1,3 +1,3 @@ -2026/02/15-23:10:37.553 3ee66b Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/shared_proto_db/MANIFEST-000001 -2026/02/15-23:10:37.554 3ee66b Recovering log #3 -2026/02/15-23:10:37.554 3ee66b Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/shared_proto_db/000003.log +2026/02/17-14:03:55.204 3ee66b Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/shared_proto_db/MANIFEST-000001 +2026/02/17-14:03:55.204 3ee66b Recovering log #3 +2026/02/17-14:03:55.206 3ee66b Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/shared_proto_db/000003.log diff --git a/notebooklm_chrome_profile/Default/shared_proto_db/LOG.old b/notebooklm_chrome_profile/Default/shared_proto_db/LOG.old index eb40ed2e0..29a19a809 100644 --- a/notebooklm_chrome_profile/Default/shared_proto_db/LOG.old +++ b/notebooklm_chrome_profile/Default/shared_proto_db/LOG.old @@ -1,2 +1,3 @@ -2026/02/15-13:30:37.995 3ee66b Creating DB /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/shared_proto_db since it was missing. -2026/02/15-13:30:37.998 3ee66b Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/shared_proto_db/MANIFEST-000001 +2026/02/15-23:10:37.553 3ee66b Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/shared_proto_db/MANIFEST-000001 +2026/02/15-23:10:37.554 3ee66b Recovering log #3 +2026/02/15-23:10:37.554 3ee66b Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/shared_proto_db/000003.log diff --git a/notebooklm_chrome_profile/Default/shared_proto_db/metadata/LOG b/notebooklm_chrome_profile/Default/shared_proto_db/metadata/LOG index 420be0564..5ff64e5c9 100644 --- a/notebooklm_chrome_profile/Default/shared_proto_db/metadata/LOG +++ b/notebooklm_chrome_profile/Default/shared_proto_db/metadata/LOG @@ -1,3 +1,3 @@ -2026/02/15-23:10:37.551 3ee66b Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/shared_proto_db/metadata/MANIFEST-000001 -2026/02/15-23:10:37.551 3ee66b Recovering log #3 -2026/02/15-23:10:37.552 3ee66b Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/shared_proto_db/metadata/000003.log +2026/02/17-14:03:55.201 3ee66b Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/shared_proto_db/metadata/MANIFEST-000001 +2026/02/17-14:03:55.202 3ee66b Recovering log #3 +2026/02/17-14:03:55.202 3ee66b Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/shared_proto_db/metadata/000003.log diff --git a/notebooklm_chrome_profile/Default/shared_proto_db/metadata/LOG.old b/notebooklm_chrome_profile/Default/shared_proto_db/metadata/LOG.old index cef7fb647..420be0564 100644 --- a/notebooklm_chrome_profile/Default/shared_proto_db/metadata/LOG.old +++ b/notebooklm_chrome_profile/Default/shared_proto_db/metadata/LOG.old @@ -1,2 +1,3 @@ -2026/02/15-13:30:37.986 3ee66b Creating DB /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/shared_proto_db/metadata since it was missing. -2026/02/15-13:30:37.992 3ee66b Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/shared_proto_db/metadata/MANIFEST-000001 +2026/02/15-23:10:37.551 3ee66b Reusing MANIFEST /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/shared_proto_db/metadata/MANIFEST-000001 +2026/02/15-23:10:37.551 3ee66b Recovering log #3 +2026/02/15-23:10:37.552 3ee66b Reusing old log /Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/Default/shared_proto_db/metadata/000003.log diff --git a/notebooklm_chrome_profile/GrShaderCache/data_1 b/notebooklm_chrome_profile/GrShaderCache/data_1 index eea1629fb..5ccb9324b 100644 Binary files a/notebooklm_chrome_profile/GrShaderCache/data_1 and b/notebooklm_chrome_profile/GrShaderCache/data_1 differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/data_0 b/notebooklm_chrome_profile/GraphiteDawnCache/data_0 index d16cfce29..f57fcf50c 100644 Binary files a/notebooklm_chrome_profile/GraphiteDawnCache/data_0 and b/notebooklm_chrome_profile/GraphiteDawnCache/data_0 differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/data_1 b/notebooklm_chrome_profile/GraphiteDawnCache/data_1 index df9561093..d07dbe3b8 100644 Binary files a/notebooklm_chrome_profile/GraphiteDawnCache/data_1 and b/notebooklm_chrome_profile/GraphiteDawnCache/data_1 differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/data_2 b/notebooklm_chrome_profile/GraphiteDawnCache/data_2 index 9076bd331..844674a80 100644 Binary files a/notebooklm_chrome_profile/GraphiteDawnCache/data_2 and b/notebooklm_chrome_profile/GraphiteDawnCache/data_2 differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/data_3 b/notebooklm_chrome_profile/GraphiteDawnCache/data_3 index 42f6c61db..eca8a5d71 100644 Binary files a/notebooklm_chrome_profile/GraphiteDawnCache/data_3 and b/notebooklm_chrome_profile/GraphiteDawnCache/data_3 differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_000022 b/notebooklm_chrome_profile/GraphiteDawnCache/f_000022 new file mode 100644 index 000000000..5b3504e5c Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_000022 differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_000023 b/notebooklm_chrome_profile/GraphiteDawnCache/f_000023 new file mode 100644 index 000000000..a7e0e11ab Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_000023 differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_000024 b/notebooklm_chrome_profile/GraphiteDawnCache/f_000024 new file mode 100644 index 000000000..478b31fdb Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_000024 differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_000025 b/notebooklm_chrome_profile/GraphiteDawnCache/f_000025 new file mode 100644 index 000000000..6c8e88b61 Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_000025 differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_000026 b/notebooklm_chrome_profile/GraphiteDawnCache/f_000026 new file mode 100644 index 000000000..20e464308 Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_000026 differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_000027 b/notebooklm_chrome_profile/GraphiteDawnCache/f_000027 new file mode 100644 index 000000000..078d5b5cd Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_000027 differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_000028 b/notebooklm_chrome_profile/GraphiteDawnCache/f_000028 new file mode 100644 index 000000000..13b52b3e8 Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_000028 differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_000029 b/notebooklm_chrome_profile/GraphiteDawnCache/f_000029 new file mode 100644 index 000000000..f45e33f4d Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_000029 differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_00002a b/notebooklm_chrome_profile/GraphiteDawnCache/f_00002a new file mode 100644 index 000000000..d3093f0f1 Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_00002a differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_00002b b/notebooklm_chrome_profile/GraphiteDawnCache/f_00002b new file mode 100644 index 000000000..c796dbb36 Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_00002b differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_00002c b/notebooklm_chrome_profile/GraphiteDawnCache/f_00002c new file mode 100644 index 000000000..b7d9af738 Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_00002c differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_00002d b/notebooklm_chrome_profile/GraphiteDawnCache/f_00002d new file mode 100644 index 000000000..966060f76 Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_00002d differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_00002e b/notebooklm_chrome_profile/GraphiteDawnCache/f_00002e new file mode 100644 index 000000000..466ea9c53 Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_00002e differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_00002f b/notebooklm_chrome_profile/GraphiteDawnCache/f_00002f new file mode 100644 index 000000000..cfc6f0417 Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_00002f differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_000030 b/notebooklm_chrome_profile/GraphiteDawnCache/f_000030 new file mode 100644 index 000000000..7ba2dc93a Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_000030 differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_000031 b/notebooklm_chrome_profile/GraphiteDawnCache/f_000031 new file mode 100644 index 000000000..d3e6f7dac Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_000031 differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_000032 b/notebooklm_chrome_profile/GraphiteDawnCache/f_000032 new file mode 100644 index 000000000..6031ba58f Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_000032 differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_000033 b/notebooklm_chrome_profile/GraphiteDawnCache/f_000033 new file mode 100644 index 000000000..e2017e2f1 Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_000033 differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_000034 b/notebooklm_chrome_profile/GraphiteDawnCache/f_000034 new file mode 100644 index 000000000..7e1251b73 Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_000034 differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_000035 b/notebooklm_chrome_profile/GraphiteDawnCache/f_000035 new file mode 100644 index 000000000..d6a1de360 Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_000035 differ diff --git a/notebooklm_chrome_profile/GraphiteDawnCache/f_000036 b/notebooklm_chrome_profile/GraphiteDawnCache/f_000036 new file mode 100644 index 000000000..2a342350f Binary files /dev/null and b/notebooklm_chrome_profile/GraphiteDawnCache/f_000036 differ diff --git a/notebooklm_chrome_profile/Local State b/notebooklm_chrome_profile/Local State index 433cc95ff..9c7abc72f 100644 --- a/notebooklm_chrome_profile/Local State +++ b/notebooklm_chrome_profile/Local State @@ -1 +1 @@ -{"autofill":{"ablation_seed":"iei2iB10NPM=","states_data_dir":"/Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/AutofillStates/2025.6.13.84507"},"breadcrumbs":{"enabled":false,"enabled_time":"13415657436803691"},"browser":{"whats_new":{"enabled_order":["ReadAnythingReadAloud","SideBySide","PdfInk2"]}},"hardware_acceleration_mode_previous":true,"legacy":{"profile":{"name":{"migrated":true}}},"local":{"password_hash_data_list":[]},"management":{"platform":{"enterprise_mdm_mac":0}},"network_time":{"network_time_mapping":{"local":1.771222335542719e+12,"network":1.771222335e+12,"ticks":189550198077.0,"uncertainty":1082133.0}},"optimization_guide":{"model_cache_key_mapping":{"13E6DC4029A1E4B4C1":"4F40902F3B6AE19A","15E6DC4029A1E4B4C1":"4F40902F3B6AE19A","20E6DC4029A1E4B4C1":"4F40902F3B6AE19A","24E6DC4029A1E4B4C1":"E6DC4029A1E4B4C1","25E6DC4029A1E4B4C1":"4F40902F3B6AE19A","26E6DC4029A1E4B4C1":"4F40902F3B6AE19A","2E6DC4029A1E4B4C1":"4F40902F3B6AE19A","43E6DC4029A1E4B4C1":"4F40902F3B6AE19A","45E6DC4029A1E4B4C1":"4F40902F3B6AE19A","9E6DC4029A1E4B4C1":"4F40902F3B6AE19A"},"model_execution":{"last_usage_by_feature":{}},"model_store_metadata":{"13":{"4F40902F3B6AE19A":{"et":"13418249477200357","kbvd":false,"mbd":"13/E6DC4029A1E4B4C1/9BC7534999752D6A","v":"1673999601"}},"15":{"4F40902F3B6AE19A":{"et":"13418249477201879","kbvd":true,"mbd":"15/E6DC4029A1E4B4C1/F2FAC812084DB1A0","v":"5"}},"2":{"4F40902F3B6AE19A":{"et":"13418249477199293","kbvd":true,"mbd":"2/E6DC4029A1E4B4C1/D32425E9B504C8FC","v":"1679317318"}},"20":{"4F40902F3B6AE19A":{"et":"13418249477201128","kbvd":false,"mbd":"20/E6DC4029A1E4B4C1/5BD8089A9BF60160","v":"1745311339"}},"24":{"E6DC4029A1E4B4C1":{"et":"13418249477202561","kbvd":false,"mbd":"24/E6DC4029A1E4B4C1/323FD455D70AE55D","v":"1728324084"}},"25":{"4F40902F3B6AE19A":{"et":"13418249477354823","kbvd":false,"mbd":"25/E6DC4029A1E4B4C1/D9B50D1F2498A301","v":"1761663972"}},"26":{"4F40902F3B6AE19A":{"et":"13427753477352622","kbvd":false,"mbd":"26/E6DC4029A1E4B4C1/DE73E601A104E422","v":"1696268326"}},"43":{"4F40902F3B6AE19A":{"et":"13418249477399118","kbvd":false,"mbd":"43/E6DC4029A1E4B4C1/98E189F86B475961","v":"1742495073"}},"45":{"4F40902F3B6AE19A":{"et":"13418249477368411","kbvd":false,"mbd":"45/E6DC4029A1E4B4C1/4D731032A2932E6B","v":"240731042075"}},"9":{"4F40902F3B6AE19A":{"et":"13418249477187912","kbvd":false,"mbd":"9/E6DC4029A1E4B4C1/9D14E6909A0EEA9C","v":"1767628897"}}},"on_device":{"last_version":"144.0.7559.133","model_crash_count":0,"performance_class":6,"performance_class_version":"144.0.7559.133"},"predictionmodelfetcher":{"last_fetch_attempt":"13415692247235447","last_fetch_success":"13415692247327180"}},"performance_intervention":{"last_daily_sample":"13415657437203776"},"performance_tuning":{"last_battery_use":{"timestamp":"13415662895153583"}},"policy":{"last_statistics_update":"13415657436737902"},"profile":{"info_cache":{"Default":{"active_time":1771222281.385431,"avatar_icon":"chrome://theme/IDR_PROFILE_AVATAR_26","background_apps":false,"default_avatar_fill_color":-15654122,"default_avatar_stroke_color":-4797256,"enterprise_label":"","first_account_name_hash":882,"force_signin_profile_locked":false,"gaia_given_name":"Hayden","gaia_id":"100819125745700103222","gaia_name":"Hayden Garvey","gaia_picture_file_name":"Google Profile Picture.png","hosted_domain":"NO_HOSTED_DOMAIN","is_consented_primary_account":false,"is_ephemeral":false,"is_managed":0,"is_using_default_avatar":true,"is_using_default_name":true,"last_downloaded_gaia_picture_url_with_size":"https://lh3.googleusercontent.com/a/ACg8ocJ02ukvqC4H8BHk_hOE011Fa_SyiZju8cFASQRNAE1e35de1uHd-w=s256-c-ns","managed_user_id":"","metrics_bucket_index":1,"name":"Your Chrome","profile_color_seed":-8024956,"profile_highlight_color":-15654122,"signin.with_credential_provider":false,"user_name":"garveyht@gmail.com"}},"last_active_profiles":["Default"],"metrics":{"next_bucket_index":2},"profile_counts_reported":"13415657436804607","profiles_order":["Default"]},"profile_network_context_service":{"http_cache_finch_experiment_groups":"None None None None"},"session_id_generator_last_value":"471002656","signin":{"active_accounts":{"DmuYyJH14LWE8nAtb4x0mof3ObC3uVhW5gIgoy7X+/w=":"13415695881385416"},"active_accounts_last_emitted":"13415657436586393","active_accounts_managed":{"DmuYyJH14LWE8nAtb4x0mof3ObC3uVhW5gIgoy7X+/w=":false}},"subresource_filter":{"ruleset_version":{"checksum":449305315,"content":"9.65.0","format":37}},"tab_stats":{"discards_external":0,"discards_frozen":0,"discards_proactive":0,"discards_suggested":0,"discards_urgent":0,"last_daily_sample":"13415657436732453","max_tabs_per_window":35,"reloads_external":0,"reloads_frozen":0,"reloads_proactive":0,"reloads_suggested":0,"reloads_urgent":0,"total_tab_count_max":35,"window_count_max":1},"toast":{"non_milestone_update_toast_version":"144.0.7559.133"},"ukm":{"persisted_logs":[]},"uninstall_metrics":{"installation_date2":"1771183836"},"updateclientdata":{"apps":{"bjbcblmdcnggnibecjikpoljcgkbgphl":{"cohort":"1:2t4f:","cohortname":"Stable","dlrc":6985,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"e5060e6a-b9a2-4648-bd40-517bf006305c","pv":"20260206.1"},"eeigpngbgcognadeebkilcpcaedhellh":{"cohort":"1:w59:","cohortname":"Auto","dlrc":6985,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"1ac092fa-dc7b-4ba4-b419-833a8fdec1c8","pv":"2025.6.13.84507"},"efniojlnjndmcbiieegkicadnoecjjef":{"cohort":"1:18ql:","cohortname":"Auto Stage3","dlrc":6985,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"8e2e9e15-b0d6-4a89-b785-d5abe135fc94","pv":"1580"},"gcmjkmgdlgnkkcocmoeiminaijmmjnii":{"cohort":"1:bm1:","cohortname":"Stable","dlrc":6985,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"0bebfe85-4f54-4fdc-b521-26df73a476c2","pv":"9.65.0"},"ggkkehgbnfjpeggfpleeakpidbkibbmn":{"cohort":"1:ut9/1a0f:","cohortname":"M108 and Above","dlrc":6985,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"a4ea7427-c227-459d-9e21-8970ebca2056","pv":"2026.2.12.120"},"giekcmmlnklenlaomppkphknjmnnpneh":{"cohort":"1:j5l:","cohortname":"Auto","dlrc":6985,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"a374a86b-186c-4711-aa2b-a0db045945af","pv":"7"},"gonpemdgkjcecdgbnaabipppbmgfggbe":{"cohort":"1:z1x:","cohortname":"Auto","dlrc":6985,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"d0ad49c2-88cc-4b75-96e0-3cc0563231f3","pv":"2025.7.24.0"},"hajigopbbjhghbfimgkfmpenfkclmohk":{"cohort":"1:2tdl:","cohortname":"Stable","dlrc":6985,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"90498de6-a17b-4f67-8a73-752f6e364337","pv":"4"},"hfnkpimlhhgieaddgfemjhofmfblmnib":{"cohort":"1:287f:","cohortname":"Auto full","dlrc":6985,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"a0fa04aa-1e5b-48d9-ada4-f77304783803","pv":"10348"},"ihnlcenocehgdaegdmhbidjhnhdchfmm":{"cohort":"1::","cohortname":"","dlrc":6985,"installdate":6985,"pf":"96a39294-700e-4492-96e3-ed61a835b036"},"jflhchccmppkfebkiaminageehmchikm":{"cohort":"1:26yf:","cohortname":"Stable","dlrc":6985,"installdate":6985,"pf":"c2dac161-2a6e-45a5-97ee-967b9c2db5d2"},"jflookgnkcckhobaglndicnbbgbonegd":{"cohort":"1:s7x:","cohortname":"Auto","dlrc":6985,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"9d9a21d7-8f37-4603-85ce-5be0e7df2683","pv":"3091"},"khaoiebndkojlmppeemjhbpbandiljpe":{"cohort":"1:cux:","cohortname":"Auto","dlrc":6985,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"3c0b110c-1b7b-4435-9eee-de63077e0d19","pv":"145.0.7584.0"},"kiabhabjdbkjdpjbpigfodbdjmbglcoo":{"cohort":"1:v3l:","cohortname":"Auto","dlrc":6985,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"d781dc43-75b9-4db4-b20b-dc24493b453e","pv":"2025.9.29.1"},"laoigpblnllgcgjnjnllmfolckpjlhki":{"cohort":"1:10zr:","cohortname":"Auto","dlrc":6985,"fp":"","installdate":6985,"max_pv":"1.0.7.1652906823","pf":"60335aec-25ba-40b7-b20e-5d6f4f6a4fc5","pv":"1.1.0.3"},"llkgjffcdpffmhiakmfcdcblohccpfmo":{"cohort":"1::","cohortname":"","dlrc":6985,"installdate":6985,"pf":"6beb0d72-57f0-4f34-a764-ee7c076489b8"},"lmelglejhemejginpboagddgdfbepgmp":{"cohort":"1:lwl:","cohortname":"Auto","dlrc":6985,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"7f74ce1a-5bd3-4028-9d04-250c137b0fbc","pv":"627"},"mcfjlbnicoclaecapilmleaelokfnijm":{"cohort":"1:2ql3:","cohortname":"Initial upload","dlrc":6985,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"046df1ff-f0bb-460e-a3a5-70bb58e9c968","pv":"2024.11.26.0"},"niikhdgajlphfehepabhhblakbdgeefj":{"cohort":"1:1uh3:","cohortname":"Auto Main Cohort.","dlrc":6985,"installdate":6985,"pf":"fcf3a50e-d6ee-46e7-9578-2172b2eb923f"},"ninodabcejpeglfjbkhdplaoglpcbffj":{"cohort":"1:3bsf:","cohortname":"Auto","dlrc":6985,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"1a86273b-7b77-4581-9e55-ea2a0ac6fe64","pv":"8.6294.2057"},"npdjjkjlcidkjlamlmmdelcjbcpdjocm":{"cohort":"1:3dhx:","cohortname":"Everyone","dlrc":6985,"installdate":6985,"pf":"c9425a89-f229-49d1-892f-15ec3b986692"},"obedbbhbpmojnkanicioggnmelmoomoc":{"cohort":"1:s6f:3cr3@0.025","cohortname":"Auto","dlrc":6985,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"d7f61099-3650-4225-a4d1-0d70dbab294d","pv":"20251024.824731831.14"},"oimompecagnajdejgnnjijobebaeigek":{"cohort":"1:3cjr:","cohortname":"Auto","dlrc":6985,"installdate":6985,"pf":"d8dd455a-d5df-481c-b604-521bbb93c186"},"ojhpjlocmbogdgmfpkhlaaeamibhnphh":{"cohort":"1:w0x:","cohortname":"All users","dlrc":6985,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"6dc26373-2b4b-4d2e-9303-58731a169d2d","pv":"3"},"pmagihnlncbcefglppponlgakiphldeh":{"cohort":"1:2ntr:","cohortname":"General Release","dlrc":6985,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"f514f48f-bad9-4440-a874-2167969f3fad","pv":"2024.10.17.0"}}},"user_experience_metrics":{"limited_entropy_randomization_source":"80FCF566D2E5BBEDAD755BD37574DB4F","low_entropy_source3":6988,"machine_id":12087694,"provisional_client_id":"d7bc6b68-b3c9-4ecf-b2fc-4de8df6c8be6","pseudo_low_entropy_source":5703,"session_id":0,"stability":{"browser_last_live_timestamp":"13415657436549105","stats_buildtime":"1770065380","stats_version":"144.0.7559.133-64"}},"variations_compressed_seed":"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","variations_country":"us","variations_crash_streak":0,"variations_failed_to_fetch_seed_streak":0,"variations_google_groups":{"Default":[]},"variations_last_fetch_time":"13415695935580381","variations_permanent_consistency_country":["144.0.7559.133","us"],"variations_seed_date":"13415695935000000","variations_seed_milestone":144,"variations_seed_serial_number":"SMChYyMDI2MDIxNS0wMzAwMDYuNTI0MDAwEgsIARADGJABIAAoAQ==#dtu1Dz3AlmA=","variations_seed_signature":"MEUCIQCkK3TWplY+U3gXJHY0PVKRYBqCUSccU4rqcYeEWbnOhwIgbfcK83l/7iyaSKl/C6ILta+RrD//v3qZ1DdQ6Ogw+Og=","was":{"restarted":false}} \ No newline at end of file +{"autofill":{"ablation_seed":"iei2iB10NPM=","states_data_dir":"/Users/garvey/Dev/EventRelay/notebooklm_chrome_profile/AutofillStates/2025.6.13.84507"},"breadcrumbs":{"enabled":false,"enabled_time":"13415657436803691"},"browser":{"whats_new":{"enabled_order":["ReadAnythingReadAloud","SideBySide","PdfInk2"]}},"hardware_acceleration_mode_previous":true,"legacy":{"profile":{"name":{"migrated":true}}},"local":{"password_hash_data_list":[]},"management":{"platform":{"enterprise_mdm_mac":0}},"network_time":{"network_time_mapping":{"local":1.771492706731724e+12,"network":1.771492706e+12,"ticks":410950337762.0,"uncertainty":1099926.0}},"optimization_guide":{"model_cache_key_mapping":{"13E6DC4029A1E4B4C1":"4F40902F3B6AE19A","15E6DC4029A1E4B4C1":"4F40902F3B6AE19A","20E6DC4029A1E4B4C1":"4F40902F3B6AE19A","24E6DC4029A1E4B4C1":"E6DC4029A1E4B4C1","25E6DC4029A1E4B4C1":"4F40902F3B6AE19A","26E6DC4029A1E4B4C1":"4F40902F3B6AE19A","2E6DC4029A1E4B4C1":"4F40902F3B6AE19A","43E6DC4029A1E4B4C1":"4F40902F3B6AE19A","45E6DC4029A1E4B4C1":"4F40902F3B6AE19A","9E6DC4029A1E4B4C1":"4F40902F3B6AE19A"},"model_execution":{"last_usage_by_feature":{}},"model_store_metadata":{"13":{"4F40902F3B6AE19A":{"et":"13418249477200357","kbvd":false,"mbd":"13/E6DC4029A1E4B4C1/9BC7534999752D6A","v":"1673999601"}},"15":{"4F40902F3B6AE19A":{"et":"13418249477201879","kbvd":true,"mbd":"15/E6DC4029A1E4B4C1/F2FAC812084DB1A0","v":"5"}},"2":{"4F40902F3B6AE19A":{"et":"13418249477199293","kbvd":true,"mbd":"2/E6DC4029A1E4B4C1/D32425E9B504C8FC","v":"1679317318"}},"20":{"4F40902F3B6AE19A":{"et":"13418249477201128","kbvd":false,"mbd":"20/E6DC4029A1E4B4C1/5BD8089A9BF60160","v":"1745311339"}},"24":{"E6DC4029A1E4B4C1":{"et":"13418249477202561","kbvd":false,"mbd":"24/E6DC4029A1E4B4C1/323FD455D70AE55D","v":"1728324084"}},"25":{"4F40902F3B6AE19A":{"et":"13418249477354823","kbvd":false,"mbd":"25/E6DC4029A1E4B4C1/D9B50D1F2498A301","v":"1761663972"}},"26":{"4F40902F3B6AE19A":{"et":"13427753477352622","kbvd":false,"mbd":"26/E6DC4029A1E4B4C1/DE73E601A104E422","v":"1696268326"}},"43":{"4F40902F3B6AE19A":{"et":"13418249477399118","kbvd":false,"mbd":"43/E6DC4029A1E4B4C1/98E189F86B475961","v":"1742495073"}},"45":{"4F40902F3B6AE19A":{"et":"13418249477368411","kbvd":false,"mbd":"45/E6DC4029A1E4B4C1/4D731032A2932E6B","v":"240731042075"}},"9":{"4F40902F3B6AE19A":{"et":"13418249477187912","kbvd":false,"mbd":"9/E6DC4029A1E4B4C1/9D14E6909A0EEA9C","v":"1767628897"}}},"on_device":{"last_version":"144.0.7559.133","model_crash_count":0,"performance_class":6,"performance_class_version":"144.0.7559.133"},"predictionmodelfetcher":{"last_fetch_attempt":"13415954394618279","last_fetch_success":"13415954394794060"}},"password_manager":{"had_biometrics_available":true},"performance_intervention":{"last_daily_sample":"13415922159181487"},"performance_tuning":{"last_battery_use":{"timestamp":"13415927737845183"}},"policy":{"last_statistics_update":"13415848032783876"},"profile":{"info_cache":{"Default":{"active_time":1771322702.288167,"avatar_icon":"chrome://theme/IDR_PROFILE_AVATAR_26","background_apps":false,"default_avatar_fill_color":-15523051,"default_avatar_stroke_color":-4666186,"enterprise_label":"","first_account_name_hash":882,"force_signin_profile_locked":false,"gaia_given_name":"Hayden","gaia_id":"100819125745700103222","gaia_name":"Hayden Garvey","gaia_picture_file_name":"Google Profile Picture.png","hosted_domain":"NO_HOSTED_DOMAIN","is_consented_primary_account":false,"is_ephemeral":false,"is_managed":0,"is_using_default_avatar":true,"is_using_default_name":true,"last_downloaded_gaia_picture_url_with_size":"https://lh3.googleusercontent.com/a/ACg8ocJ02ukvqC4H8BHk_hOE011Fa_SyiZju8cFASQRNAE1e35de1uHd-w=s256-c-ns","managed_user_id":"","metrics_bucket_index":1,"name":"Your Chrome","profile_color_seed":-15577309,"profile_highlight_color":-15523051,"signin.with_credential_provider":false,"user_name":"garveyht@gmail.com"}},"last_active_profiles":[],"metrics":{"next_bucket_index":2},"profile_counts_reported":"13415920057309132","profiles_order":["Default"]},"profile_network_context_service":{"http_cache_finch_experiment_groups":"None None None None"},"session_id_generator_last_value":"471002848","signin":{"active_accounts":{"DmuYyJH14LWE8nAtb4x0mof3ObC3uVhW5gIgoy7X+/w=":"13415796302287883"},"active_accounts_last_emitted":"13415920057308504","active_accounts_managed":{"DmuYyJH14LWE8nAtb4x0mof3ObC3uVhW5gIgoy7X+/w=":false}},"subresource_filter":{"ruleset_version":{"checksum":449305315,"content":"9.65.0","format":37}},"tab_stats":{"discards_external":0,"discards_frozen":0,"discards_proactive":0,"discards_suggested":0,"discards_urgent":0,"last_daily_sample":"13415922158711502","max_tabs_per_window":4,"reloads_external":0,"reloads_frozen":0,"reloads_proactive":0,"reloads_suggested":0,"reloads_urgent":0,"total_tab_count_max":4,"window_count_max":1},"toast":{"non_milestone_update_toast_version":"144.0.7559.133"},"ukm":{"persisted_logs":[]},"uninstall_metrics":{"installation_date2":"1771183836"},"updateclientdata":{"apps":{"bjbcblmdcnggnibecjikpoljcgkbgphl":{"cohort":"1:2t4f:","cohortname":"Stable","dlrc":6989,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"920386c4-0f08-46ea-81ce-2057659580dd","pv":"20260206.1"},"eeigpngbgcognadeebkilcpcaedhellh":{"cohort":"1:w59:","cohortname":"Auto","dlrc":6989,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"f3b20085-d910-4035-878b-7f11b493347e","pv":"2025.6.13.84507"},"efniojlnjndmcbiieegkicadnoecjjef":{"cohort":"1:18ql:","cohortname":"Auto Stage3","dlrc":6989,"fp":"","installdate":6985,"max_pv":"1580","pf":"775c46e4-a0d6-41b4-b439-ba6ab0d0718b","pv":"1585"},"gcmjkmgdlgnkkcocmoeiminaijmmjnii":{"cohort":"1:bm1:","cohortname":"Stable","dlrc":6989,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"450e15d0-7afa-4294-9cf4-79ea954a3a0b","pv":"9.65.0"},"ggkkehgbnfjpeggfpleeakpidbkibbmn":{"cohort":"1:ut9/1a0f:3h6r@0.025","cohortname":"M108 and Above","dlrc":6989,"fp":"","installdate":6985,"max_pv":"2026.2.12.120","pf":"b533914d-2bd2-439b-9773-ba99c065209d","pv":"2026.2.16.121"},"giekcmmlnklenlaomppkphknjmnnpneh":{"cohort":"1:j5l:","cohortname":"Auto","dlrc":6989,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"c9881e7a-e672-4c79-a398-b7e30fe10344","pv":"7"},"gonpemdgkjcecdgbnaabipppbmgfggbe":{"cohort":"1:z1x:","cohortname":"Auto","dlrc":6989,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"547bfebe-5aa5-4658-8dee-9d7df1bc0fda","pv":"2025.7.24.0"},"hajigopbbjhghbfimgkfmpenfkclmohk":{"cohort":"1:2tdl:","cohortname":"Stable","dlrc":6989,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"109cec5e-904b-4b0d-af0a-6d555c0a64cd","pv":"4"},"hfnkpimlhhgieaddgfemjhofmfblmnib":{"cohort":"1:287f:","cohortname":"Auto full","dlrc":6989,"fp":"","installdate":6985,"max_pv":"10354","pf":"a2f35920-a1b3-4db8-ac03-902b08309b73","pv":"10355"},"ihnlcenocehgdaegdmhbidjhnhdchfmm":{"cohort":"1::","cohortname":"","dlrc":6989,"installdate":6985,"pf":"e9e3eaf1-ce15-4a0f-bf0c-4ac5c4543991"},"jflhchccmppkfebkiaminageehmchikm":{"cohort":"1:26yf:","cohortname":"Stable","dlrc":6989,"installdate":6985,"pf":"725c9275-91ae-42ce-bce6-4de393410197"},"jflookgnkcckhobaglndicnbbgbonegd":{"cohort":"1:s7x:","cohortname":"Auto","dlrc":6989,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"14029aa7-17a9-4774-af47-3dabeefd17bd","pv":"3091"},"khaoiebndkojlmppeemjhbpbandiljpe":{"cohort":"1:cux:","cohortname":"Auto","dlrc":6989,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"69786959-0d2e-4946-85c7-c406042cd44b","pv":"145.0.7584.0"},"kiabhabjdbkjdpjbpigfodbdjmbglcoo":{"cohort":"1:v3l:","cohortname":"Auto","dlrc":6989,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"f4ea075f-02e0-4788-826a-140ba14b9148","pv":"2025.9.29.1"},"laoigpblnllgcgjnjnllmfolckpjlhki":{"cohort":"1:10zr:","cohortname":"Auto","dlrc":6989,"fp":"","installdate":6985,"max_pv":"1.0.7.1652906823","pf":"184048fc-4378-4bbc-88f9-e8481d7aff95","pv":"1.1.0.3"},"llkgjffcdpffmhiakmfcdcblohccpfmo":{"cohort":"1::","cohortname":"","dlrc":6989,"installdate":6985,"pf":"15f4b67d-706e-49aa-a4b1-fd945573317a"},"lmelglejhemejginpboagddgdfbepgmp":{"cohort":"1:lwl:","cohortname":"Auto","dlrc":6989,"fp":"","installdate":6985,"max_pv":"628","pf":"488ecbe9-df5a-4922-a6f7-c1dcfa11505c","pv":"629"},"mcfjlbnicoclaecapilmleaelokfnijm":{"cohort":"1:2ql3:","cohortname":"Initial upload","dlrc":6989,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"c08a72b4-e09c-4bcd-9ca8-699ab1855375","pv":"2024.11.26.0"},"niikhdgajlphfehepabhhblakbdgeefj":{"cohort":"1:1uh3:","cohortname":"Auto Main Cohort.","dlrc":6989,"installdate":6985,"pf":"3bbece4e-9f15-45c8-ac38-397243a289c8"},"ninodabcejpeglfjbkhdplaoglpcbffj":{"cohort":"1:3bsf:","cohortname":"Auto","dlrc":6989,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"3d13fda7-62a7-43ce-92c6-5e4416948b22","pv":"8.6294.2057"},"npdjjkjlcidkjlamlmmdelcjbcpdjocm":{"cohort":"1:3dhx:","cohortname":"Everyone","dlrc":6989,"installdate":6985,"pf":"c3de4303-c088-404c-8a8c-579d90645fbf"},"obedbbhbpmojnkanicioggnmelmoomoc":{"cohort":"1:s6f:3cr3@0.025","cohortname":"Auto","dlrc":6989,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"a62c8588-8727-4b26-b46f-a6b8c06f2b3c","pv":"20251024.824731831.14"},"oimompecagnajdejgnnjijobebaeigek":{"cohort":"1:3cjr:","cohortname":"Auto","dlrc":6989,"installdate":6985,"pf":"6b6cc913-43d2-441b-a631-d1aa80ac6118"},"ojhpjlocmbogdgmfpkhlaaeamibhnphh":{"cohort":"1:w0x:","cohortname":"All users","dlrc":6989,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"fb0d2711-cb06-4a4f-ab53-4ce61769c29a","pv":"3"},"pmagihnlncbcefglppponlgakiphldeh":{"cohort":"1:2ntr:","cohortname":"General Release","dlrc":6989,"fp":"","installdate":6985,"max_pv":"0.0.0.0","pf":"21dd628c-0857-4be1-bcaa-08beb5b2d8a6","pv":"2024.10.17.0"}}},"user_experience_metrics":{"limited_entropy_randomization_source":"80FCF566D2E5BBEDAD755BD37574DB4F","low_entropy_source3":6988,"machine_id":12087694,"provisional_client_id":"d7bc6b68-b3c9-4ecf-b2fc-4de8df6c8be6","pseudo_low_entropy_source":5703,"session_id":0,"stability":{"browser_last_live_timestamp":"13415657436549105","stats_buildtime":"1770065380","stats_version":"144.0.7559.133-64"}},"variations_compressed_seed":"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","variations_country":"us","variations_crash_streak":0,"variations_failed_to_fetch_seed_streak":0,"variations_google_groups":{"Default":[]},"variations_last_fetch_time":"13415966306778366","variations_permanent_consistency_country":["145.0.7632.109","us"],"variations_seed_date":"13415966306000000","variations_seed_milestone":144,"variations_seed_serial_number":"SMChYyMDI2MDIxOC0xNzAwNTAuMTAzMDAwEgsIARADGJABIAAoAQ==#TVlNSB3F4AI=","variations_seed_signature":"MEUCIBsFrBamwAl43TmJGbrYCoiq/yyFN1G9LC+/s3QGaml+AiEAx6I9OCV+JV4YqAXVAV/xeQ7JtiQ37Iaz10PF24cAftA=","was":{"restarted":false}} \ No newline at end of file diff --git a/notebooklm_chrome_profile/OptimizationHints/628/_metadata/verified_contents.json b/notebooklm_chrome_profile/OptimizationHints/628/_metadata/verified_contents.json new file mode 100644 index 000000000..9bb7a4ce5 --- /dev/null +++ b/notebooklm_chrome_profile/OptimizationHints/628/_metadata/verified_contents.json @@ -0,0 +1 @@ +[{"description":"treehash per file","signed_content":{"payload":"eyJjb250ZW50X2hhc2hlcyI6W3siYmxvY2tfc2l6ZSI6NDA5NiwiZGlnZXN0Ijoic2hhMjU2IiwiZmlsZXMiOlt7InBhdGgiOiJtYW5pZmVzdC5qc29uIiwicm9vdF9oYXNoIjoiQW5UZDB0X1dFS2F5a0JPa1BFVDJvcThXOTlHNHp6WkhSLTE2QXdXV3ZrWSJ9LHsicGF0aCI6Im9wdGltaXphdGlvbi1oaW50cy5wYiIsInJvb3RfaGFzaCI6InJ5bnFLZTc5bWlOZ0ZVTExaUkxhbXNoMWJwcEh6OVhiTWZHT2R4NDdndzQifV0sImZvcm1hdCI6InRyZWVoYXNoIiwiaGFzaF9ibG9ja19zaXplIjo0MDk2fV0sIml0ZW1faWQiOiJsbWVsZ2xlamhlbWVqZ2lucGJvYWdkZGdkZmJlcGdtcCIsIml0ZW1fdmVyc2lvbiI6IjYyOCIsInByb3RvY29sX3ZlcnNpb24iOjF9","signatures":[{"header":{"kid":"publisher"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"vuRGXEWKabqHOmma2U-wqsr5RlywXnp_e5v-muR8o3WhSFTin9sUEASCkCBfezeDMbYouOgd9w-lw-JPcI2Gmd2h1saDpYG8JhzNYtwbY3zWd1gpZ2ZMF4WSQsvS2NqSTJTiRxlvA383jJeXozait0YyopQoyTII8Hxm4R5m372qEiRfaZTjNY00Eiw4EIhyyhRFMcdTuC7cU_GCFfhaZKLbyd3GELoDWYrbQFayrmtXqmkxzERuWUG1uPSBzPm5Sh3Cc613DCE3psS6ljiCmphYGpsCEqvtp28y_oV7n8exeks1xoFfsp6j01LIV7KLx8nOEQntnZb294NX3dAUY9pSpVWNdCAK4fspIICYvw_N5fXYVdoACK5LAiEE_qunCn2OF-lGyGbbMGt1oW86TIEK4_SrhKoTZNNhK185Gs_qm30TBydOc938yma7axDctkMdNG-u69N48H6j96geV0NdTdQl8VtglABgPW9RkXgFwZ0ln3VphEcjOfSiDIq9E0Ha-4mjarGhuyQe8pRwsoBOIArkqbeEYMTeKMt4280UfvW4crHo5doKculSdsA3ngxFwPtQwhcU065KDrtltAYnpDZOBlios3TiDZrVYlnRDIoEx1BwIQ0MMunQSaPi0I4EjfRytwr-O0O_o89ciDFSutZ9WgeOf6ldF9LXczw"},{"header":{"kid":"webstore"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"OjRMlL_-Yh0aTnDl2hTRb_zcYxcg0cwtLK-fEmoaLRsLUvNVmVsKZON9JppE5VSLGVZoEVZ0I3prXwCClaLj8Bh4I6C84rUg3Ye22TITylzo3t-SArFESqafnKK392_zMUVr7qYZZMWLVf2u5BDJ1ihiD2fMvH11BDJS02gD6P7nvOiAtseVKYEgCMqiKchgxVItXf83AXd0YPTK39B9um3XJKrWgLG3kpSq2RZ6NfCCO7wMK4g_-SMe5HqOBiHjOmDSSmv4AtFg9g2IsSKJy6gBHvX9Fxw7iIM_XKVjJ7YwptNKR9jdBhmVkS55k_mpcAO9Dh-pvu8yyWPfceo4PA"}]}}] \ No newline at end of file diff --git a/notebooklm_chrome_profile/OptimizationHints/628/manifest.json b/notebooklm_chrome_profile/OptimizationHints/628/manifest.json new file mode 100644 index 000000000..6ca41553b --- /dev/null +++ b/notebooklm_chrome_profile/OptimizationHints/628/manifest.json @@ -0,0 +1,6 @@ +{ + "manifest_version": 2, + "name": "Optimization Hints", + "version": "628", + "ruleset_format": "1.0.0" +} \ No newline at end of file diff --git a/notebooklm_chrome_profile/OptimizationHints/628/optimization-hints.pb b/notebooklm_chrome_profile/OptimizationHints/628/optimization-hints.pb new file mode 100644 index 000000000..ea9cacbf5 Binary files /dev/null and b/notebooklm_chrome_profile/OptimizationHints/628/optimization-hints.pb differ diff --git a/notebooklm_chrome_profile/OptimizationHints/629/_metadata/verified_contents.json b/notebooklm_chrome_profile/OptimizationHints/629/_metadata/verified_contents.json new file mode 100644 index 000000000..e0d5be00b --- /dev/null +++ b/notebooklm_chrome_profile/OptimizationHints/629/_metadata/verified_contents.json @@ -0,0 +1 @@ +[{"description":"treehash per file","signed_content":{"payload":"eyJjb250ZW50X2hhc2hlcyI6W3siYmxvY2tfc2l6ZSI6NDA5NiwiZGlnZXN0Ijoic2hhMjU2IiwiZmlsZXMiOlt7InBhdGgiOiJtYW5pZmVzdC5qc29uIiwicm9vdF9oYXNoIjoiSWs5X1FoSlp1MjVtMlJDV0RYUEtKUlg2a1VyM2VJLXFMS01EMk53ckpqVSJ9LHsicGF0aCI6Im9wdGltaXphdGlvbi1oaW50cy5wYiIsInJvb3RfaGFzaCI6InJ5bnFLZTc5bWlOZ0ZVTExaUkxhbXNoMWJwcEh6OVhiTWZHT2R4NDdndzQifV0sImZvcm1hdCI6InRyZWVoYXNoIiwiaGFzaF9ibG9ja19zaXplIjo0MDk2fV0sIml0ZW1faWQiOiJsbWVsZ2xlamhlbWVqZ2lucGJvYWdkZGdkZmJlcGdtcCIsIml0ZW1fdmVyc2lvbiI6IjYyOSIsInByb3RvY29sX3ZlcnNpb24iOjF9","signatures":[{"header":{"kid":"publisher"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"pyBZ8N2lwhD0AwoLGRRBoAROlRnUdqQyQCmnNvVC6jcH_PugdRZvbAth3UZnLeqKwHUDAFiO71K7wqJ6RxzMhAmjb-9RoP56-3LIDff6z91GeYa6DgMWPDhDbsLRtmAjQivNRj_XZPZzB2TmT6NNA1e0nZDBnYhXxYFpHYMKn5pyrbLQVC6VriG2CQqlsRK5NrBbl2Nx3DlWDkujzWIfx2odJQhBUO7SU6bKLnXa-XXgxFfwq3zGnV6Nns1_3XHQ75yE2yeYIELHdp6ADdKNM8M3VhXdQXkdjLdl6c7EETioqU_6E7ySXrRdGhuCgth6tLzxB9KCNXkUrgjJa9SuhXWMaT2vCVSzxQetWEXprCoigjiZWnAL9OWr-3iBayCVWLchffajAD5_OdNj0JSEE0gm7K8dS37LGEbElMowvJwZGcEVXHu2_J9_OZt_ONLoEjj4qp5X2M3Kx65Fb9H49OMCDk9YLY2tZ_k5zkS9Ncvq7xz46zmfBxT8_37-hGWQQ-Ce0wBJ5r5ClAW0GUsO8Ne0054b7Cu6JKsXgXswMrOKUur_rBbXIRKued7r3Gj7u8KFOdncY6zBayw1ej1X0VCu5jnBB9IlecAyw3YjRfxSIsg5JqI7tCs4cSqikKXabWgX9Njg6V0FPZOsaQA5Pe9ZLRGLFgDOX1HVZkn9T-M"},{"header":{"kid":"webstore"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"Ct9ub4qNimp8w5vVx2Kezf-3ENqQZyz67S-BjKTfuPA26vopJyLNqGlzTG13g8naEP-i14Jcv-AiUzlCq-l2IvGa_PesBwqYk6uxW8DhPPc9x24DrO2b-4xxqUUQvnF4-Ai8hIDrJBvc_jd0QNXrdE5r2DW2zWR43jzUewUteZ9w6e3FuFgOpJPtuYRJ5XXDLYD1g_ZN2LbkCWGIFZZ1XKZsBsBezfpbLokQz3Q3Mhjh_lmulGSlIahsk673CMPjBLMDn6QrR9n6WXUZhFK9OwkGlDvoDnCXDCVtgiP10DEXtADwMyTlxfK4nhUaoOey0yZOA5tgAUWTqKKK9KjBQg"}]}}] \ No newline at end of file diff --git a/notebooklm_chrome_profile/OptimizationHints/629/manifest.json b/notebooklm_chrome_profile/OptimizationHints/629/manifest.json new file mode 100644 index 000000000..52fa37f86 --- /dev/null +++ b/notebooklm_chrome_profile/OptimizationHints/629/manifest.json @@ -0,0 +1,6 @@ +{ + "manifest_version": 2, + "name": "Optimization Hints", + "version": "629", + "ruleset_format": "1.0.0" +} \ No newline at end of file diff --git a/notebooklm_chrome_profile/OptimizationHints/629/optimization-hints.pb b/notebooklm_chrome_profile/OptimizationHints/629/optimization-hints.pb new file mode 100644 index 000000000..ea9cacbf5 Binary files /dev/null and b/notebooklm_chrome_profile/OptimizationHints/629/optimization-hints.pb differ diff --git a/notebooklm_chrome_profile/PKIMetadata/1585/_metadata/verified_contents.json b/notebooklm_chrome_profile/PKIMetadata/1585/_metadata/verified_contents.json new file mode 100644 index 000000000..70735b2bb --- /dev/null +++ b/notebooklm_chrome_profile/PKIMetadata/1585/_metadata/verified_contents.json @@ -0,0 +1 @@ +[{"description":"treehash per file","signed_content":{"payload":"eyJjb250ZW50X2hhc2hlcyI6W3siYmxvY2tfc2l6ZSI6NDA5NiwiZGlnZXN0Ijoic2hhMjU2IiwiZmlsZXMiOlt7InBhdGgiOiJjcnMucGIiLCJyb290X2hhc2giOiJwM1NSQUg1aUp1YzhUMmtYVG9FRDF6NTZaYUhjSzdJbFFoenNKWFNWelVFIn0seyJwYXRoIjoiY3RfY29uZmlnLnBiIiwicm9vdF9oYXNoIjoiVUdUZFk0Sk9aTkNSZ2ZnWXhCTnFNQVVsVGVEUmcwY2NIak5TN0ZwX1RWWSJ9LHsicGF0aCI6ImtwX3BpbnNsaXN0LnBiIiwicm9vdF9oYXNoIjoiLWZEQjQyUjRvanBmWGNfZ0Q2M1FIZnVhOElJTDZ2N1p6MVVtckdkNWEzWSJ9LHsicGF0aCI6Im1hbmlmZXN0Lmpzb24iLCJyb290X2hhc2giOiJDeDhJMFBQWkRsSlJuN0J4cXJSV0ZLakhYSVZGdHBqTDV1cUVtYVY3NHk4In1dLCJmb3JtYXQiOiJ0cmVlaGFzaCIsImhhc2hfYmxvY2tfc2l6ZSI6NDA5Nn1dLCJpdGVtX2lkIjoiZWZuaW9qbG5qbmRtY2JpaWVlZ2tpY2Fkbm9lY2pqZWYiLCJpdGVtX3ZlcnNpb24iOiIxNTg1IiwicHJvdG9jb2xfdmVyc2lvbiI6MX0","signatures":[{"header":{"kid":"publisher"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"rmUyvAlC5AxEohqwdN2SDu2DP9VGe6rlNOKa5oTRyBAgRaGJxKeZD1ZhlN8ZAJ8KTfeeIPcoe0105dZi4SDFfgEp3n_-Bpj-yLf0wCExCVnKikIiAKCfLYWU4R5rCjbfgKmwWJtkgBGKc2Gb51ukZBDgDQhKKbt-YoI5uEXbJGDht-gOWyXbRxKiCZnLyU7LWeYuFH3Ie8-_A1vARhykXVXNFzKncPUG4euP6F12bfFD2zkaR6JSqui2LtYObwTvg-2xO7-71s1VS69bcKdLVKGLS6oKkL7PYZVChS1LLBYLuSgM7YMqmxAln0yqYoL-GwtJbdNSTLKJlrdMVzZeDafEAyRstxjB71dJiJgyHrb6CANsK3ofIHNLULwwRptTWWw6OmIEzZPJX9pZNxe2gZzqQGm427jT4d_3t72gj_Hmt4I5439HbTas670W5FYyywYwtjKsK2uWLKBGXzrmspNzS-kl694kNwN8WcZXlPrnwe5x5ghdC2nzumZ4mBEnoA_w8kDcYFzsXm_h8RjLCa2p6isGd-4e7lg_JXKkEtwOPnRJ4JWr1olnFfeaPZ_RPd0A6IqlYrji07s7pdzx1B8q8_eIrewtEy_BXE3rtAqanm48LK3G6eCqHaAgo4S4RaMmYT6ZVCvcFu3z9IMY1YN2yLuBQNzJ3-NsjW7ZnrM"},{"header":{"kid":"webstore"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"OhXSQSy-LqgOwC3XpQwe6pv0hCmd8ZpTXQKhOaDjNbnaEnKySAHVRGHm5G2rgRI9BQzdwUUQXR2n1M3JmRq760YOG5TdFIV1RIdmmMTMYryvpYE-ya8OPov9X1lWbwtxY2s-kxPkDgpPMquY9vJ0GcZaBB-duzTNa0aEbyv71rwOa41Z1YDykSogYbyeMFgp_LclE_meyXLe25muuHpBbQJ0qQ2iW55WswTCSDNmVBoCdQVrJdcBgMZFhU0IuH7C1br8RAx7uOQz7dMFjDyYyhBAUsVb6lBq5p5TmY9GeAHCG4H-BmyxiH-g92sOxfayUoN8q1K32l_pISSg2ocM7w"}]}}] \ No newline at end of file diff --git a/notebooklm_chrome_profile/PKIMetadata/1585/crs.pb b/notebooklm_chrome_profile/PKIMetadata/1585/crs.pb new file mode 100644 index 000000000..c1311a229 Binary files /dev/null and b/notebooklm_chrome_profile/PKIMetadata/1585/crs.pb differ diff --git a/notebooklm_chrome_profile/PKIMetadata/1585/ct_config.pb b/notebooklm_chrome_profile/PKIMetadata/1585/ct_config.pb new file mode 100644 index 000000000..f382c00ea --- /dev/null +++ b/notebooklm_chrome_profile/PKIMetadata/1585/ct_config.pb @@ -0,0 +1,377 @@ +T۽ *) +Googlegoogle-ct-logs@googlegroups.com*$ + +Cloudflarect-logs@cloudflare.com* +DigiCertctops@digicert.com* +Sectigoctops@sectigo.com*$ + Let's Encryptsre@letsencrypt.org*, + TrustAsiatrustasia-ct-logs@trustasia.com* +Geomys ct@geomys.org* + IPng Networksct-ops@ipng.ch2 +Google 'Argon2026h1' log|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEB/we6GOO/xwxivy4HhkrYFAAPo6e2nc346Wo2o2U+GvoPWSPJz91s/xrEvA3Bk9kWHUUXVZS5morFEzsgdHqPg==,DleUvPOuqT4zGyyZB7P3kN+bwj1xMiXdIaklrGHFTiE= */https://ct.googleapis.com/logs/us1/argon2026h1/2 +B +J +GoogleųRgoogle_argon2026h1https://crbug.com/414170832 +Google 'Argon2026h2' log|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEKjpni/66DIYrSlGK6Rf+e6F2c/28ZUvDJ79N81+gyimAESAyeNZ++TRgjHWg9TVQnKHTSU0T1TtqDupFnSQTIg==,1219ENGn9XfCx+lf1wC/+YLJM1pl4dCzAXMXwMjFaXc= */https://ct.googleapis.com/logs/us1/argon2026h2/2 +B +J +GoogleųRgoogle_argon2026h2https://crbug.com/414170832 +Google 'Argon2027h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEKHRm0H/zUaFA6Idz5cGvGO3tCPQyfGMgJmVBOPyKAP6mGM1IiNXi4CLomOUyYj0YN74p+eGVApFMsM4h/jzCsA==,1tWNqdAXU/NqSqDHV0kCr+vH3CzTjNn3ZMgMiRkenwI= */https://ct.googleapis.com/logs/us1/argon2027h1/2 +B +J +GoogleRgoogle_argon2027h1https://crbug.com/414170832 +Google 'Xenon2026h1' log|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEOh/Iu87VkEc0ysoBBCchHOIpPZK7kUXHWj6l1PIS5ujmQ7rze8I4r/wjigVW6wMKMMxjbNk8vvV7lLqU07+ITA==,lpdkv1VYl633Q4doNwhCd+nwOtX2pPM2bkakPw/KqcY= */https://ct.googleapis.com/logs/eu1/xenon2026h1/2 +B +J +GoogleųRgoogle_xenon2026h1https://crbug.com/413835352 +Google 'Xenon2026h2' log|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE5Xd4lXEos5XJpcx6TOgyA5Z7/C4duaTbQ6C9aXL5Rbqaw+mW1XDnDX7JlRUninIwZYZDU9wRRBhJmCVopzwFvw==,2AlVO5RPev/IFhlvlE+Fq7D4/F6HVSYPFdEucrtFSxQ= */https://ct.googleapis.com/logs/eu1/xenon2026h2/2 +B +J +GoogleųRgoogle_xenon2026h2https://crbug.com/413835352 +Google 'Xenon2027h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE/6WcA4VRSljIfTdY48+pFRLLtLrmTb88cGDdl8Gv3E2LduG4jgJ3AK5iNMFGhpbRRLi5B3rPlBaXVywuR5IFDg==,RMK9DOkUDmSlyUoBkwpaobs1lw4A7hEWiWgqHETXtWY= */https://ct.googleapis.com/logs/eu1/xenon2027h1/2 +B +J +GoogleRgoogle_xenon2027h1https://crbug.com/4357699812 +Cloudflare 'Nimbus2026'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE2FxhT6xq0iCATopC9gStS9SxHHmOKTLeaVNZ661488Aq8tARXQV+6+jB0983v5FkRm4OJxPqu29GJ1iG70Ahow==,yzj3FYl8hKFEX1vB3fvJbvKaWc1HCmkFhbDLFMMUWOc= **https://ct.cloudflare.com/logs/nimbus2026/2 +B +J + +CloudflareRcloudflare_nimbus2026https://crbug.com/3554609772 +Cloudflare 'Nimbus2027'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEYjd/jE0EoAhNBbfcNhrTb7F0x10KZK8r2SDjx1GdjJ75hJrHx2OCQ+BXRjXi+czoREN1u0j9cWl8d6OoPMPogQ==,TGPcmOWcHauI9h6KPd6uj6tEozd7X5uUw/uhnPzBviY= **https://ct.cloudflare.com/logs/nimbus2027/2 +B +J + +Cloudflare؝Rcloudflare_nimbus2027https://crbug.com/4348956982 +DigiCert 'Wyvern2026h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE7Lw0OeKajbeZepHxBXJS2pOJXToHi5ntgKUW2nMhIOuGlofFxtkXum65TBNY1dGD+HrfHge8Fc3ASs0qMXEHVQ==,ZBHEbKQS7KeJHKICLgC8q08oB9QeNSer6v7VA8l9zfA= *&https://wyvern.ct.digicert.com/2026h1/2 +B +J +DigiCertRdigicert_wyvern2026h1https://crbug.com/3539240092 +DigiCert 'Wyvern2026h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEenPbSvLeT+zhFBu+pqk8IbhFEs16iCaRIFb1STLDdWzL6XwTdTWcbOzxMTzB3puME5K3rT0PoZyPSM50JxgjmQ==,wjF+V0UZo0XufzjespBB68fCIVoiv3/Vta12mtkOUs0= *&https://wyvern.ct.digicert.com/2026h2/2 +B +J +DigiCertRdigicert_wyvern2026h2https://crbug.com/3539240092 +DigiCert 'Wyvern2027h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEastxYj1mntGuyv74k4f+yaIx+ZEzlSJ+iVTYWlw8SpSKJ4TfxYWuBhnETlhpyG/5seJn0mOSnVgXsZ1JRflI7g==,ABpdGhwtk3W2SFV4+C9xoa5u7zl9KXyK4xV7yt7hoB4= *&https://wyvern.ct.digicert.com/2027h1/2 +B +țJ +DigiCertRdigicert_wyvern2027h1https://crbug.com/4428606002 +DigiCert 'Wyvern2027h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEuOg8hcgaYT/MShxpag2Hige0zsLzz8vOLZXp6faCdzM+Mn/njyU9ROAuwDxuu88/Grxn46kmehdOKVDFexbdSg==,N6oHzCFvLm2RnHCdJNj3MbAPKxR8YhzAkaX6GoTYFt0= *&https://wyvern.ct.digicert.com/2027h2/2 +B +țJ +DigiCertRdigicert_wyvern2027h2https://crbug.com/4428606002 +DigiCert 'Sphinx2026h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEq4S++DyHokIlmmacritS51r5IRsZA6UH4kYLH4pefGyu/xl3huh7/O5rNk/yvMOeBQKaCAG1SSM1xNNQK1Hp9A==,SZybad4dfOz8Nt7Nh2SmuFuvCoeAGdFVUvvp6ynd+MM= *&https://sphinx.ct.digicert.com/2026h1/2 +B +J +DigiCertRdigicert_sphinx2026h1https://crbug.com/3540253692 +DigiCert 'Sphinx2026h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEquD0JkRQT/2inuaA4HC1sc6UpfiXgURVQmQcInmnZFnTiZMhZvsJgWAfYlU0OIykOC6slQzr7U9kvEVC9wZ6zQ==,lE5Dh/rswe+B8xkkJqgYZQHH0184AgE/cmd9VTcuGdg= *&https://sphinx.ct.digicert.com/2026h2/2 +B +J +DigiCertRdigicert_sphinx2026h2https://crbug.com/3540253692 +DigiCert 'sphinx2027h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEvirIq1XPwgwG7BnbMh2zoUbEt+T8z8XAtg9lo8jma+aaTQl8iVCypUFXtLpt4/SHaoUzbvcjDX/6B1IbL3OoIQ==,RqI5Z8YNtkaHxm89+ZmUdpOmphEghFfVVefj0KHZtkY= *&https://sphinx.ct.digicert.com/2027h1/2 +B +țJ +DigiCertRdigicert_sphinx2027h1https://crbug.com/4428795282 +DigiCert 'sphinx2027h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEUCe23M889mAsUVeTTBcNsAmP374ZWQboLdR8RdGwM3VZ6P/sDwhrL7wK4zrXPh3HwLDDLxDjvRBeivUSbpZSwA==,H7D4qS2K3aEhd2wF4qouFbrLxitlOTaVV2qqtS4R0R0= *&https://sphinx.ct.digicert.com/2027h2/2 +B +țJ +DigiCertRdigicert_sphinx2027h2https://crbug.com/4428795282 +Sectigo 'Mammoth2026h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEnssMilHMiuILzoXmr00x2xtqTP2weWuZl8Bd+25FUB1iqsafm2sFPaKrK12Im1Ao4p5YpaX6+eP6FSXjFBMyxA==,JS+Uwisp6W6fQRpyBytpXFtS/5epDSVAu/zcUexN7gs= *%https://mammoth2026h1.ct.sectigo.com/2 +B +J +SectigoRsectigo_mammoth2026h13,N7bqzTXnPktVFG8/h3gi5pcuxCo+mfWyv+XlIIS4cEU=https://crbug.com/413086032 +Sectigo 'Mammoth2026h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE7INh8te0u+TkO+vIY3WYz2GQYxQ9XyLfdLpQp1ibaX3mY4lt2ddRhD/4AtjI/8KXceV+J/VysY8kJ1cKDXTAtg==,lLHBirDQV8R74KwEDh8svI3DdXJ7yVHyClJhJoY7pzw= *%https://mammoth2026h2.ct.sectigo.com/2 +B +J +SectigoRsectigo_mammoth2026h23ڽ,vJHecZC18lG3qp9lV2jZoi+7nkPHQx2SmM4VWglNsIk=https://crbug.com/413086032 +Sectigo 'Sabre2026h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEhCa8Nr3YjTyHnuAQr82U2de5UYA0fvdYXHPq6wmTuBB7kJx9x82WQ+1TbpUhRmdR8N62yZ6q4oBtziWBNNdqYA==,VmzVo3a+g9/jQrZ1xJwjJJinabrDgsurSaOHfZqzLQE= *#https://sabre2026h1.ct.sectigo.com/2 +B +J +SectigoRsectigo_sabre2026h13¨*,ONxslVVBTXcSuBVlFOVDuNQoTCdDNLCRVHoHfNLMZfo=https://crbug.com/413086062 +Sectigo 'Sabre2026h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEzjXK7DkHgtp3J4bk8n7F3Djym6mrjKfA7YMePmobwPCVVroyM0x1fAkH6eE+ZTVj8Em+ctGqna99CMS0jVk9cw==,H1bRq5RwSkHdP+r99GmTVTAsFDG/5hNGCJ//rnldzC8= *#https://sabre2026h2.ct.sectigo.com/2 +B +J +SectigoRsectigo_sabre2026h23 ,HWG3vP/FX6JRs5yyXDfrNoUA7D6TZAib9ZE2Llno0II=https://crbug.com/413086062 +Sectigo 'Elephant2026h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEU0lqnPHoXuU9Fc9dJv1HQZCvssJfvxLsirwVQ/fkFyUqeu4inwPKikeT4DGyyWWH4NR/DCJa2bAumHrXJdAcaQ==,0W6ppWgHfmY1oD83pd28A6U8QRIU1IgY9ekxsyPLlQQ= *&https://elephant2026h1.ct.sectigo.com/2 +B +J +SectigoRsectigo_elephant2026h1https://crbug.com/3991343702 +Sectigo 'Elephant2026h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEO/t4Uwkoou78zkCchh9tfAKbIUJmbOoUAb8szD8StnnHFKAVY5kq1Ljs8YD7CfzdD7xcVjmQYpbtNUhxRMRtmA==,r2eIO1ewTt2Pptl+9i6o64EKx3Fg8CReVdYML+eFhzo= *&https://elephant2026h2.ct.sectigo.com/2 +B +J +SectigoRsectigo_elephant2026h2https://crbug.com/3991343702 +Sectigo 'Elephant2027h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE4fu36JygUwaaVO+ddWJ97FJZlA5SjPLmT+RHwg0pavkIrbT1b5LNQrsaEw0CoGraf7BkzKZf7PC8gYAScw2woA==,YEyar3p/d18B1Ab8kg3ImesLHH34yVIb+voXdzuXi8k= *&https://elephant2027h1.ct.sectigo.com/2 +B +J +SectigoRsectigo_elephant2027h1https://crbug.com/3991343702 +Sectigo 'Elephant2027h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAECTPhpJnRFroRRpP/1DdAns+PrnmUywtqIV+EeL4Jg8zKouoW7kuAkYo+kZeoHtyK7CBhflIlMk7T2Qrn4w/t8g==,okkM3NuOM6QAMhdg1tTVGiA2GR6nfZaL4mqKAPb///c= *&https://elephant2027h2.ct.sectigo.com/2 +B +J +SectigoRsectigo_elephant2027h2https://crbug.com/3991343702 +Sectigo 'Tiger2026h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE73eDJyszDbzsWcgI0nbtU0+y11gQWjNjS/RSO5P4hOSFE+pPrDCtfNPHe6dq7/XQYwOFt9Feb8TwQW+mqXN5xg==,FoMtq/CpJQ8P8DqlRf/Iv8gj0IdL9gQpJ/jnHzMT9fo= *#https://tiger2026h1.ct.sectigo.com/2 +B +J +SectigoRsectigo_tiger2026h1https://crbug.com/3991246092 +Sectigo 'Tiger2026h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfJFUD/FRkonvZIA9ZT1J3yvA4EpSp3innbIVpMTDR1oCe5vguapheQ7wYiWaCES1EL1B+2BEC+P5bUfwF44lnA==,yKPEf8ezrbk1awE/anoSbeM6TkOlxkb5l605dZkdz5o= *#https://tiger2026h2.ct.sectigo.com/2 +B +J +SectigoRsectigo_tiger2026h2https://crbug.com/3991246092 +Sectigo 'Tiger2027h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEmMQofpsDjCVYzF4jXdFWM/ioYBJIPcsQQrNAHE6v4lOsADoI+/jN1lph8x4K3NgnXDXwmyJcFwRYgVOBMhaYhA==,HJ9oLOn68EVpUPgbloqH3dsyENhM5siy44JSSsTPWZ8= *#https://tiger2027h1.ct.sectigo.com/2 +B +J +SectigoRsectigo_tiger2027h1https://crbug.com/3991246092 +Sectigo 'Tiger2027h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEb0AgkemhsPmYe1goCSy5ncf2lG9vtK6f+SzODKJMYEgPOT+z93cUEKM1EaTuo09rozfdqhjeihIl25y9A3JhyQ==,A4AqwmL24F4D+Lxve5hRMk/Xaj31t1lRdeIi+46b1fY= *#https://tiger2027h2.ct.sectigo.com/2 +B +J +SectigoRsectigo_tiger2027h2https://crbug.com/3991246092 +Let's Encrypt 'Oak2026h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEmdRhcCL6d5MNs8eAliJRvyV5sQFC6UF7iwzHsmVaifT64gJG1IrHzBAHESdFSJAjQN56TYky+9cK616MovH2SQ==,GYbUxyiqb/66A294Kk0BkarOLXIxD67OXXBBLSVMx9Q= *&https://oak.ct.letsencrypt.org/2026h1/2 +ΗB +J + Let's EncryptRletsencrypt_oak2026h14Ÿ,deSRNfTNPgd9wfzoXIznvi+QUTxuK0R+daC6JGKGK3Q=https://crbug.com/414591432 +Let's Encrypt 'Oak2026h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEanCds5bj7IU2lcNPnIvZfMnVkSmu69aH3AS8O/Y0D/bbCPdSqYjvuz9Z1tT29PxcqYxf+w1g5CwPFuwqsm3rFQ==,rKswcGzr7IQx9BPS9JFfER5CJEOx8qaMTzwrO6ceAsM= *&https://oak.ct.letsencrypt.org/2026h2/2 +B +J + Let's EncryptRletsencrypt_oak2026h23̭>,uTgg1k3DUbSFFdXewyyxbsQuCc9RupplMphTwtXqvf4=https://crbug.com/414591432 +TrustAsia 'log2026a'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEp056yaYH+f907JjLSeEAJLNZLoP9wHA1M0xjynSDwDxbU0B8MR81pF8P5O5PiRfoWy7FrAAFyXY3RZcDFf9gWQ==,dNudWPfUfp39eHoWKpkcGM9pjafHKZGMmhiwRQ26RLw= *(https://ct2026-a.trustasia.com/log2026a/2 +ڬ΀B +J + TrustAsiaٲRtrustasia_log2026acrbug.com/409178532 +TrustAsia 'log2026b'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEDxKMqebj7GLu31jIUOYmcHYQtwQ5s6f4THM7wzhaEgBM4NoOFopFMgoxqiLHnX0FU8eelOqbV0a/T6R++9/6hQ==,Jbfv3qETAZPtkweXcKoyKiZiDeNayKp8dRl94LGp4GU= *(https://ct2026-b.trustasia.com/log2026b/2 +ڬ΀B +J + TrustAsiaٲRtrustasia_log2026bcrbug.com/409178532 +TrustAsia 'HETU2027'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE14jG8D9suqIVWPtTNOL33uXKZ4mUnnOMrIwOWeZU7GtoDRCWIXfy/9/SC8lTAbtP2NOP4wjIufAk6f64sY4DWg==,7drrgVxjITRJtHvlB3kFq9DZMUfCesUUazvFjkPptsc= *(https://hetu2027.trustasia.com/hetu2027/2 +B +J + TrustAsiaRtrustasia_hetu2027https://crbug.com/409178532 +Let's Encrypt 'Sycamore2026h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfEEe0JZknA91/c6eNl1aexgeKzuGQUMvRCXPXg9L227O5I4Pi++Abcpq6qxlVUKPYafAJelAnMfGzv3lHCc8gA==,pcl4kl1XRheChw3YiWYLXFVki30AQPLsB2hR0YhpGfc= <*/https://log.sycamore.ct.letsencrypt.org/2026h1/2 +B +J + Let's EncryptRletsencrypt_sycamore2026h1Z/https://mon.sycamore.ct.letsencrypt.org/2026h1/https://crbug.com/414591432 +Let's Encrypt 'Sycamore2026h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwR1FtiiMbpvxR+sIeiZ5JSCIDIdTAPh7OrpdchcrCcyNVDvNUq358pqJx2qdyrOI+EjGxZ7UiPcN3bL3Q99FqA==,bP5QGUOoXqkWvFLRM+TcyR7xQRx9JYQg0XOAnhgY6zo= <*/https://log.sycamore.ct.letsencrypt.org/2026h2/2 +̌B +J + Let's EncryptRletsencrypt_sycamore2026h2Z/https://mon.sycamore.ct.letsencrypt.org/2026h2/https://crbug.com/414591432 +Let's Encrypt 'Sycamore2027h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWrGdYyZYB7teCS4K/oKIsbV0yVBSgjlOwO22OOCoA6Y252QhFzC8Wg7oVXVKqfkWaSaM/n+3pfCBf4BAkpdx8g==,jspHC6zeavOiBrCkeoS3Rv4fxr+VPiXmm07kAkjzxug= <*/https://log.sycamore.ct.letsencrypt.org/2027h1/2 +̌B +J + Let's EncryptRletsencrypt_sycamore2027h1Z/https://mon.sycamore.ct.letsencrypt.org/2027h1/https://crbug.com/414591432 +Let's Encrypt 'Sycamore2027h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEK+2zy2UWRMIyC2jU46+rj8UsyMjLsQIr1Y/6ClbdpWGthUb8y3Maf4zfAZTWW+AH9wAWPLRL5vmtz7Zkh2f2nA==,5eNiR9ku9K2jhYO1NZHbcp/C8ArktnRRdNPd/GqiU4g= <*/https://log.sycamore.ct.letsencrypt.org/2027h2/2 +B +J + Let's EncryptRletsencrypt_sycamore2027h2Z/https://mon.sycamore.ct.letsencrypt.org/2027h2/https://crbug.com/414591432 +Let's Encrypt 'Willow2026h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEtpFyulwgy1+u+wYQ37lbV+HsPFNYoi4sy6dZP662N/Z/usdNi4+Q3RLES1RY2PNk7zL/7VPSn3JERMPu/s4e4A==,4yON8o2iiOCq4Kzw+pDJhfC2v/XSpSewAfwcRFjEtug= <*-https://log.willow.ct.letsencrypt.org/2026h1/2 +B +J + Let's EncryptRletsencrypt_willow2026h1Z-https://mon.willow.ct.letsencrypt.org/2026h1/https://crbug.com/414591432 +Let's Encrypt 'Willow2026h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEp8wH8R6zfM+UhsQq5un+lPdNTDkzcgkWLi1DwyqU6T00mtP5/CuGjvpw4mIz89I6KV5ZvhRHt5ZTF6qe24pqiA==,qCbL4wrGNRJGUz/gZfFPGdluGQgTxB3ZbXkAsxI8VSc= <*-https://log.willow.ct.letsencrypt.org/2026h2/2 +B +J + Let's EncryptRletsencrypt_willow2026h2Z-https://mon.willow.ct.letsencrypt.org/2026h2/https://crbug.com/414591432 +Let's Encrypt 'Willow2027h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEzsMKtojO0BVB4t59lVyAhxtqObVA+wId5BpJGA8pZrw5GTjzuhpvLu/heQGi0hHCeislkDe34N/2D0SwEUBE0w==,ooEAGHNOF24dR+CVQPOBulRml81jqENQcW64CU7a8Q0= <*-https://log.willow.ct.letsencrypt.org/2027h1/2 +B +J + Let's EncryptRletsencrypt_willow2027h1Z-https://mon.willow.ct.letsencrypt.org/2027h1/https://crbug.com/414591432 +Let's Encrypt 'Willow2027h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEYbMDg0qQEEYjsTttdDlouTKhg3fRiMJYNE+Epr/2bXyeQdQOHKQNKv5sbIKxjtE/5Vqo9YjQbnaOeH4Wm4PhdQ==,ppWirZJtb5lujvxJAUJX2LvwRqfWJYm4jcLXh2x45S8= <*-https://log.willow.ct.letsencrypt.org/2027h2/2 +B +J + Let's EncryptRletsencrypt_willow2027h2Z-https://mon.willow.ct.letsencrypt.org/2027h2/https://crbug.com/414591432 +Geomys 'Tuscolo2026h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEflxzMg2Ajjg7h1+ZIvQ9LV6yFvdj6uRi9YbvtRnSCgS2SamkH56WcPRaBTRYARPDIr5JwLqgJAVA/NvDxdJXOw==,cX6V88I4im2x44RJPTHhWqliCHYtQgDgBQzQZ7WmYeI= <**https://tuscolo2026h1.sunlight.geomys.org/2 +B +J +GeomysRgeomys_tuscolo2026h1Z*https://tuscolo2026h1.skylight.geomys.org/https://crbug.com/4166913302 +Geomys 'Tuscolo2026h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEaA6P0i7JTsd9XfzF1/76avRWA3XXI4NStsFO/aFtBp6SY7olDEMiPSFSxGzFQjKA1r9vgG/oFQwurlWMy9FQNw==,Rq+GPTs+5Z+ld96oJF02sNntIqIj9GF3QSKUUu6VUF8= <**https://tuscolo2026h2.sunlight.geomys.org/2 +B +J +GeomysRgeomys_tuscolo2026h2Z*https://tuscolo2026h2.skylight.geomys.org/https://crbug.com/4166913302 +Geomys 'Tuscolo2027h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEOYwwGoaNpZ/SQW0VNGICP7wGRQsSeEowTRl4DPSdPjSkO/+ouvFH78I8sQTR3FWPZDScALbclBqnqL0ptY8beA==,WW5sM4aUsllyolbIoOjdkEp26Ag92oc7AQg4KBQ87lk= <**https://tuscolo2027h1.sunlight.geomys.org/2 +B +СJ +GeomysRgeomys_tuscolo2027h1Z*https://tuscolo2027h1.skylight.geomys.org/https://crbug.com/4166913302 +Geomys 'Tuscolo2027h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIAz2gOD7wIptaiLTnmR4k7AQwp5kFmqmGHY/8JmMJxaSHyAipoFA/YSBCTX7ZowxIkSKpZYGlqLtdLVcLWDS5w==,1d5V7roItgyf/BjFE75qYLoARga8WVuWu0T2LMV9Ofo= <**https://tuscolo2027h2.sunlight.geomys.org/2 +B +СJ +GeomysRgeomys_tuscolo2027h2Z*https://tuscolo2027h2.skylight.geomys.org/https://crbug.com/4166913302 +9Bogus placeholder log to unbreak misbehaving CT libraries|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEj4lCAxWCY6SzIthkqZhwiUVzcK62i6Fc+/YS0WHaN6jjO1ITUFuu8beOiU9PdeNmdalZcC3iWovAfApvXS33Nw==,LtakTeuPDIZGZ3acTt0EH4QjZ1X6OqymNNCTXfzVmnA= *https://ct.example.com/bogus/2 +ƶB +J +GeomysRgeomys_bogus6962https://crbug.com/4266247772 +IPng Networks 'Halloumi2026h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEzdcnGwRjm2ZoA68JFZKfoM4cOPPG2fr0iR72p3XanznOlw57HJ9RlYRNt75gIMIKgB1r0dxY5Jojq1m8uobYjg==,fz035/iSPY5xZb6w0+q+5yoivkbAy4TEFtTkuYJky8I= <*&https://halloumi2026h1.log.ct.ipng.ch/2 +B +J + IPng NetworksRipng_halloumi2026h1Z&https://halloumi2026h1.mon.ct.ipng.ch/https://crbug.com/4370033442 +IPng Networks 'Halloumi2026h2a'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEiGh4zMsdukTgrdk9iPIwz9OfU9TQVi4Mxufpmnlrzv3ivJcxVhrST4XQSeQoF5LlFVIU6PL4IzrYl12BUWn9rQ==,JuNkblhpISO8ND9HJDWbN5LNJFqI2BXTkzP9mRirRyM= <*'https://halloumi2026h2a.log.ct.ipng.ch/2 +B +J + IPng NetworksRipng_halloumi2026h2aZ'https://halloumi2026h2a.mon.ct.ipng.ch/https://crbug.com/4370033442 +IPng Networks 'Halloumi2027h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEw5SUl2yfd5TFSqUGv7A+I5+TpLe+zEccmtWVQakQQtOHYKqH8TbycalFx5xaqE5PU4NEwwnAJ9FWeT/6QaovZw==,ROgi/CurDpLu0On61pZkYCd20Bdg4IkFCckjobA/w38= <*&https://halloumi2027h1.log.ct.ipng.ch/2 +B +J + IPng NetworksRipng_halloumi2027h1Z&https://halloumi2027h1.mon.ct.ipng.ch/https://crbug.com/4370033442 +IPng Networks 'Halloumi2027h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAErmKbFkPG7QfQUARhbIik8vVbIkXhK+YMB6TvLZkyhnzv7wedn+l7VChqovZHKOQXmZEd4B+3ljovIpQz2HmyHA==,CRV/Yy1Gx/dtlSZUk7wPALOVrF2zorJr+wQ9ukrGOJM= <*&https://halloumi2027h2.log.ct.ipng.ch/2 +B +J + IPng NetworksRipng_halloumi2027h2Z&https://halloumi2027h2.mon.ct.ipng.ch/https://crbug.com/4370033442 +IPng Networks 'Gouda2026h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAER6wvqVwhf5isuCtwSfNjTOrqwZg0vZuIMP7xk8fPmJfaFZCte1ptQiqNhRMCtqIgJvDcJyjkGVI8i44vxL877A==,GoudaUpXmMiZoMqIvfSPwLRWYMzDYA0fcfRp/8fRrKM= <*#https://gouda2026h1.log.ct.ipng.ch/2 +B +J + IPng NetworksRipng_gouda2026h1Z#https://gouda2026h1.mon.ct.ipng.ch/https://crbug.com/4370033442 +IPng Networks 'Gouda2026h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEjayczmhUMNftWy6VjvYXcTUEpvL8LIAKcYcxrxx5xxQGZEVvhnZeCnXVlsMWhq1h9J55eZfQWM/dqIr6GmoN9Q==,Goudaw/+v4G0eTnG0jEKhtbRAtTwRuIYLJ3jX14mJe8= <*#https://gouda2026h2.log.ct.ipng.ch/2 +B +J + IPng NetworksRipng_gouda2026h2Z#https://gouda2026h2.mon.ct.ipng.ch/https://crbug.com/4370033442 +IPng Networks 'Gouda2027h1'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEOh11B2aRT9BiTqo+6kvQ7cSGf819Ait+jGc6AuHlGUXxWCX1YCQ9OFNnr6MUKStyw4sVin5FCvtbke1mctl3gQ==,Gouda43XkdHNBUnttgNV1ga2T60w23H+eI8Px8j7xLE= <*#https://gouda2027h1.log.ct.ipng.ch/2 +B +J + IPng NetworksRipng_gouda2027h1Z#https://gouda2027h1.mon.ct.ipng.ch/https://crbug.com/4370033442 +IPng Networks 'Gouda2027h2'|MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEPuxPH20sSqUzHGllZceceFvyoSffwBWgX4LKd8wk3A3ayZuwwh2pDuEOsimMxLXFh0IUYz73a9I7kxkUqM+N8w==,GoudaVNi2GSSp7niI2BuNOzp4xC6NPuTBXhdKc5XV+s= <*#https://gouda2027h2.log.ct.ipng.ch/2 +B +J + IPng NetworksRipng_gouda2027h2Z#https://gouda2027h2.mon.ct.ipng.ch/https://crbug.com/4370033442 + OڗR +4 7`F}eAWd( !:"z@G[`O˫ ^'KqQT} Gn+^N"\Qd,<3v g  e +G%!)T)XŴ 6C6#6O41|4 TԙؾF(S:Nѷ1S<74  Ch` G1cpv#[ .vW$zxa&)eS1/kÏ /I ~e-cf5dʚ`~.{0P I'"J|vԑm Xl^a [&>C.p^wJS  ~uyR^.5`O6i- +ėS~VHXETME*a H XjeGJG-) E!G0VfjZJZhd [܆F{H?#U\FN "P Hsm0Ey!Zrm%#[o YI.žW: И~.<'(0s> &: lX5 O+{8KCQFjg  16  +2=+_ Zn@K@  %owQO0V, f xqe~ץ/ ңuLS33_ e𒃏Cũw #e(P. Aqks"` C&e6B*y/B k>XUOE& y|,YK-Aesx;:Aa T1q|7ۊ>&l#c,{ c~d$(/{i߀pX~_^ͥ$t'  > &nwalnzؿam qޘ'4)Cq +,y Mji#"7 3 J 6B mw&TeuEZU/@ss x"Q ^Hh2!-<ۨE >e6 +t;tNX9'M  `jA?=T06 )M]%_liP9*ߨ 4b+>t3 Ϋh=]U"HI >~87u7nښ7W-zE QgxJCUm4 Us ' ڿugdp=7:j1I) UCkz~pg$)8ѮWs~o;- <3}5wt6"ժxX6~ y QDDy9@ ޮ.?yЛVg; qm8H^܊eBf"̬ /Ci slNidPmqB`o2v Ѧr)] *.FΤeO ׿l> 1߾OBf;cQXI3hvV* o?KJPGxkfnKBǻA7I qKĝM왜 $G[ ReɨՅ &nC1z: FR> y rK=J̭gh?$]".!x\b !2.[P^PC쯫L﷐]G@ !LJ1\)ZTbԬ46\fI !~(/c~q_[ҫ6>{ <- !8&Uh27ɝ7j@ ![e@_G~ňe "rp\IBEb_>=ȖI6r:"u "+vZ Bjs{D4`b.S "AeBr];[n橳Sͳ\ "MΏ^$Fp䇖OfON=љxM "PO~}E ŒGqk ^= "ju T w7/zpK "p'^r懚jp#L6b "x`ǐC`A\D)ט`FC "NrC,R=En: lTY "qtwKF #Ѩ?zv'w ҡfKD! $\ֻ[k+]oDD $򖗒!2|}/9aJ %$d\(I7q,ƧmC-(Nf׍ %|K`% +|X9}.jՀXP6 %Vyx5ɲUZ*1CV %q3+80] Lhx)x#4 &=RH)WlDŽvPh@B '~ůXF$v'R˟wq- ' 2\}H?0IS>Y '}ʕeR0Z#웽u)V-  'C+j)00~YS[,e (sA>\^e(Dܹ}JHu (J\7HO+TS (RTSwjnSwUnqS (sWoarqv.y:j/^v( eb (ҭJ}AL|";/Z:ѾQx"5 (.s`]Xv@;h4 )*7(XF: *C/ )Q=eJ ͞6Sc~T^Vbh )V̩N]Gw/_?h瘗x )`g3lMG!9'*_ + *M>a"å +H`b ^lAb ) *bS|V<ύte~XkP.EE *o>qɤUri*BoOi\O KrՈF *H? / %kӀ]cE +,Ó:n"=UQB}z ՜ +[}>QǪ Pͼ`XeY +5|>FMe=%,Z@`HD^ +$c>eeQJ. hY( +2bS0'72QL5Pk ,Om~cJ?]!y9c ,9ӉZʦ's f%霂`Q$rz ,S)F#[[<9+P-ܮ4櫸 ,iI{qn"tAe1n2 -2|Tv"(۪x-F{@,Ə -U:Se*֭޼90^S R!|by6 -ĻX {3=L(gUi +&# -ð!;a/P5\ o4K}{ .MxO* :g"2;Y .`E\C  R&N# .pWjhaLcF#">Nz/v .fF4<)1OmŘ /w~+.Df-6Z7% /. =N +Y+MaOj{} H$ /؋qZ͍4Lǩ +V,J@ /ZiZ:|gr(0oC 0z{vl4D +f*^h=  1sㆫXv[~jӺQTf+3̬h 2WVP 5gAԖ|(Uܲ 2k82/$f/_χGHP+  2B\bBY1ص p̊Oa 3 +TgÙ^9 8#TTUFFTR|mpf~lw} 8^ $+۵ߠh,5j9pb˸x 8%>[PgřUC/+!0ªPb? ;FoSm7قW-]U~RC;L ;7\,0GoHO2- ;DךVH,ǗvK3: (/ר ;PPaז6-b(x/RJd'Sup ;?97GV9Ҋe닟˴+ ; +Lĩc㾛 8 v{ <d`=]ȉN5P`d6"\0 #oԓ%Bv{ 6˽qd/ >WO?.oi>.0=POHT >a9Et5#tsr \g#b  >[,[_m,?8k+ +/+# >FH %R~us-XK. [bV ?@l{}>dzR`% ?V_IuqGՎѾzÕ0]B~ ?t_ #Ӯ4t'X{Ҷ ?~1$8.N$A!oW&ZSn ?_':gSC|J T.7)j @.o2;N;uO;zx'z7}@ @$N^Θa0E\Ze9 @9sŅGY70]̭(P_lrk @SMy|Zqj/XB7SD @R+@R8)wIH4 *eϼ^ @quJzMc* CͰbd9y駵ȣ AYhԠ359k.ӝ NDe5[#Ϫ4W A]}fvؙdvwv+uXBf A_J[{1q*5 ˎq) A_a&bR0whkJ҇Z;z{ At*Y7j*sȏWi{D߶  AiNȾ~Œ~(!`> ڟ + A0LX@t{>y:cos} A'ϯ6N =JgN{#%A Abs}Q:~I8@2,mM CZT}BN#PoKHt CFk"I,dUII{( +J?? CY P}УqvP>|m6- CYƈ6)wqo%R/UX.V[K6Ӑy/ F?Nxh7+̨Փͪ2u G5DB&k5S?Hl礍|| G;noN~皛q݀ $-T G[uVp*'΄"b?v Gn/=Tb"au0~YD˨Ԛ GkO3TՖ/g)Eֶ GP)D4j7=]jj Hbb HJqwCH:֑|* :0Aq(J HZT1\5c +@3/A;k-DX  IA GvfhQWog b I!SиnՏo4"!U% I=jȪ7/{c{]:Cs:X Iz=m!^,[R== ItFC< Wlɺ IF2)rsS " rL;(+5 JDKA5KZ'ȡ J6vkVn穞38>ޠC J?6hW.Y +u=͖ J`oVm=2W K+< -cquzg='?"yp4 KjKu^锊*_g KĀUiIYY;x2pbi'仭6 KF2˂b) o]aDc KʱxI +?h@Y3' 68 L#9#x֧(K">%(4 LjdD`O"$O!ƻZ[;}1k|7؞ MH\?vK:F%CR N~CT}7>"-UQWc ^_  Np&n @|^};ʾC  O Z䱟)1jp%x#Q OEtk"dB[i8}eL?G OAO? c|~+BMaPo O$ee<\f Hԓ.dRܗ OTͷ#:舓EBȐ3)4 OcI4<_'h{uV+WCs ; Omd2bf&WHr? _D OtMO;KxB00\ O"wM% %ŘStETă̹sY6v OՈS *fLIDz<,gh_ OVŒ%5#Y ]hv OQȬKSpۿvܼ O!"e:_ _h,|,2 OG0)Ί45KA R,gu2geEu,p* RZ +,~\f/}2X#V:> RIXm97! 'QJ_ RAXkCiéK 5C%c R , /5u:7hvRN) R[&xe窝u#"y0^ Sjs'5JTʑߘB SSGjj16a z+K%B_ S`/r~EX +59u S-_i"f0TiXd8 SéaD:+E{$,o4ٻk/ Sg\U 8r:Pq3 SP@a<~)f#E˒6 T?p ?181 ˓FF3/Wo TL?mz\óF +U7"cwyl TtZ4fضQ৔3;dĮy T+O_ ;PrԘjZq9[ TJ?ѷ"4JNETӡw&ɨeؼq U 7p _gÜB?fIn + Ud\ג! m.BKj'Bo U3ʸ_IʠxʼI U$2J`r?h)?c .@#ȼ V7h@PdSӆ=lx yX V>ٲ`e1 Kݮ_1F&x{ W cb8˖B@MQMw W,,2GRy2Mb W˦}2$2%i74]”]f Yێ+G,)]d Y!my7KFp  ZhvaRǂ&0O@u ZN)Ij{OAẖ|Hϳ|/ [AGyj.$2~; [͠OH?x#Kmi / \&ޏk!I([A + uY \!ķvԞɢ-LCc w \GH2z&}ݤtQ9 \.^TS\1- +JNo ]F:~~ +@ƔcHde-%X ]~%wgFƦCM] )`V ]6V*jc-#߮,:OױUȘƏ ^xPl}47?T 'yX `25>z!9L+SF_~Ĵ( `O'Bۖ;=* `,W( `X﬉hOv@d.vaHӽ-I֎ `S]K +g_hQm|7_ a"3nIE;uɇ1d< a4z2-7dv aJ 'xPtݯ t^1 b8W NUCnQ#'dsn} bw]- 3#8P~殔A b\Ny#kn)4\ cjG=xON&wiWɻщF3%!͑' c{uNkV}^H|e-xbIZL_ e8[kaHiM2O}¼;֬>EEBp eF3NLղ" +9ziU+ eF +Ղ +@0K eRMօ?c@u&"6* e3ON@t +FYd/ j, fyG,ete|΢u(A f\LΌTflr]hq&ks fuc2M4uXq22|{p/Ju fԠ~_>^s'GK[YH  f +g3 s0z +޼~C;8GOy gHr.997pCe! gsO.8Х7~HYC\pݳF&iH9 hm'Fy+Xg}a?+z֥ h- Ѭ_.AX' h4S|tChP9@$i`Ep  hݧK- 2Yl3M9ٚjB i Oo߃za;Pu3 j?ȱK>(Q%j }e5]c jA +d/2FMM6"yI^H^Mpv jRۻMˮfQ5c9DN- jYXЫFWx7@VȮ&@u jd7M/ 4(=e=e)! kv 6rtv^jtJ-Y\ kBw Ӌgo v&87lrΏ l[@Lx?oMQ {Y`/X lpv^q^$kr"y۫ luu\f~72zui71tPjL l!ܞ`b8sO [z|S lP9EtoT@Q0'pX +{ l8aVDdM%)/, m8b=NmB7>yVlQWW! mZAFLZI ߻˃7:m~am mv|xz&Ʊݼ1vNba m38(`X`$AOrd m7_ #1Nc@ԗbQ nJr.Sb-7zTeM?< n0\E&fO%jiź[WקE orWBnD)z1Z-59*$ o| c b ΐ0jg&Lj&߫|4 o涙SUޚJn{VASc oʝ@>m-B_c q϶!oY-Ut.IV$/ ҕj qpfƚ] HaЄOwdU qv 0δ5;φ 9 $x9^v q{"z<[ )t8FgIEh* qescD!$%? rKˊ"⤇O/u<i r ftlӮ5**@$ hd5G r݃Y(vR`veUHJ0ûy +[X saY52"y/~Zm[in˫d"m s{)F<d?BnSmݎs4+ szzd>q79[l+U sJ<_E*1{J̔Hrrmjρ s'z`dNS[dU Ye}9 t ^BxǚJhuJP7[ t +FS + 4<9qÄ +Bm tBe( M4y ` q7) tx9"(K ˽Ma/^!%T1O t6k# +_:l┊h(#)q th\_IKiY#d!-PZK +qU um؏-B6BBB+Q{Dx; v0@>d<g\\ ;>[˯@qG vWIj&UO%mAFL |'F vc7̓*B)mJYi0[qC v~Zk6bozTn{ǧM$ wh!9X jq aj#@ wBv:fɤm)QdQK~U w' `G,w!Y -jU}7Q xGڍm n"E9 RWAzPo x m/D6hs,t(LD#⋨ x}-RY; M"^= yf89"{V +YO_š.xZo~~ y3)oש;Y ^82Ζ_8zZ z(0]@r٧VTAMȹ%% z0Ӌ>$'`G58"8 zN;o;Y[t#O~yyC# {[T|?؝8ڣ {mgHEAAsFنmf {қ_yXM5XH |)YrB@p %/(trȃC' |;|أy0ݘÛ l1Kz7xf |l!,b:2g0/ |InVLhOם; ~T)g8`7 }D7p;`m~3rs{V }6M~IO ޣh}KX7wġ ~N\m+m軦X*Mwd ~H]:$pƥ=d{ \ ~Jk~'ŋ<0v hٌ .ʍ ~SNNZHГA1fq 6x+ +|> ~]D!7VױWv4ǡj[*G  ~ofHGDF.U2 ~f@-qG ",m0.^V ~7x<S*Ŧ}9^ l.?g!%.|0 W[x y|[pVl饆 պ aàg(q"ZHMki +D q` Bv3 ,.aU -d xnNn!♬0ɮI]IIH5 [UAtԼfsrt׋ϗ_ *j)4 -dY+9V͹ 7 +3 J/B<ë쒝{A3"^ 7X6y՗R{[>aĺ+ w$.CzWXJ71"lٕMI 0֜# x |4Vأ>ICJs OE"%< բ3-zHc|Td8?YbQ GRPةr{<6`NnRm H:\[çlD`p0v  `aN0xR"1zӝy9( Iƨ4r^0g3 >-[L %mYrS-aP`Պ9l$J m(]P/WAeVfx.sG9P yo\D^jZ +),TDѓ:9n[^w$ 'LJG!I܅IҐUw,E 34 HmuD^s fzJ|׫ܗ#re@z `yc9ʶ*c&d QCRPF>u Lt 6e5e :-F'v"pvlmͣO>A KAG,Ź|$Ʌ 6c5^`Et|  e`p?DeBԃ Ym} =ڕjU[~qsp4$TcKz\q)|XLłg ͛ƪDhBQtck6 3sJg '+C-!di J7  KVLuFV; + r̀6X0ý?hL :\`ж,Ii|} ϫ3Abfmq^*L_D ڄ9u"rͽ]%?ThuƢDK LE紫b2,e"S. >I K]F-skQ{HS֪$ `\yŋ[17Xqxni8*8 '޹P@Cx *15c&l i-g~F<8ՙcr  p,7ЋˀVwc+&!,s $I8/9q}@{W i*r +AE?i5rzM7k%~ mv* ;3ZD"w}{nL ??,}F$I,LΕ%A s vWWCC +TʨXbLj5  |'1'FΛ/IX:"F3~7M MXMb 焂u=uqC8Р XݓMyK.j|ѳ*V" yքJNGX%$_t iyM@7-=F DSoJ c;K˃#(Z3e4mmI(: b: +l4a/2$ ;A0I Əţ2u^3Ѹ̒\1p8{\ &ɟN/,̻UN05LjofJ #Xm*}{ g|`ז:ۼ &p$>^2pO&Aug J`U?t! +Bl䳭14 aT8tSww! vlNL`ǰ\ +ׅWZN{ CVMH 8qz@ݐA"B aSϐ 9zȮJDL4BdX Lx; 3󨚞ܦ0vУM Pl_ w۶ v\1Jyf$:S ]  {-IDzѿ%Gc&H + ~GIM+$܈|I MYMZ~BbǼn0X߸\o_EX @K74pGӓP5Hw]~ǣ} 9}S "HdFJE;RG t+6ː Jm%AӰv CrbF6 -1;b 6̙_4jڢ&7CЂMը%  +">sّ{E]^9J)rY ժiO 0t}\盝]OE-I C\`Sl|uP h4kڱn0" UD@ɛc7{o707KD%P*q ]^)RhAGj͌pqWtD,~n %Ƽ: {?ID<;ȳ &]Jy=2PKQk2Z[Cfɮ PM/`ц] ]@ 2C[4v +>jDږ1<uh%Š +V?[]kY]XB M4&iURsp'*aۆ# ۘqe\qBF%Se\ P:?4Ũ"V*,@^~![l&N@ yOףJS eDDؕzc9%DB2 o؊Et%P4/["6, :npIX@J}5L;%Ġ TIH@m/1Djp7||>s), q +_gj߻h.5^͒bB fʵߒ` m׃:}us uPK8S|-EbQԠ2Wve ~ke+/|j%yW t/ 'U1[~A%ơd Tň 2|ó!U;C#3{̎# [ Z&d^@8X~bTl ㄙK?"+?K郞BF+)9kv z}$#A5x8 ؗ4 *!3 $g2lQ5b/қ|tA Q_ MXk 8i1YO36'  3s9~J.o T@ +z7^f>c 7H)2( Y^Q-Spu)ܷB9AU=s ` ENކ @t풹K6S y1.<;+Hiw-}Qq MYVS/`'.][ 7& %Uv CZTF * ʉT8H_PLfHXM *WU`YWD3ۭgzWOn `hq.>oX*UyP[o#1 L9\Y\t尛N4U[Us foB^~Gf%t~B wK *EGI-T%0!<݌tK yZ) ep9QS~_Y ?Nm0Ha7d+Sl 4 2.rS̢e}<CՅ5 -i^`b$JjWPje#>%)ʻ M$2e[5^rRnHw>FxZ' Nk[GҞܝ3Epu OW"0K~-iwd=_% +( `B;%:-Wtx!UrME d`$=Tl{ 1 lfc0rX Fzbrd^-pb OnA!'>#|yTdq qajIX&zV#ܝNFO/$` ]r|BZ +:uyK E]< E.[`nGc:4`9ȈAEa Yq 0xsO!Sm2p*84|u??W r>8 +rmJ $[ROy zaV*y + *h "̉q7p +@շ~x>r h*/X($ڭvG[PV>G vͷ'c-vȴcO 4(b]8oIXKooxyH$ә /o +K&]FDVkJ/S z_GgŃz>cضA8vT}> |%sv&PPP*`8¶٫ ќ&ߛ[iھ\1U"OT9 (Kv0fɡX̎_4":X aoTL'7^WX@/ +Lr^7F@ 1s1 RCPCKg uU-Kcn˭1n@ k* !;@XTD#;ǜl8)m+w 4Y"E*hY~dF)M` ]):ɨD7_ bΒb@^x 0 qO Ti١\Dz(e-Aϛ$8Z L(mrof@ P޺E/#-W 7<5@<~MaD4ވRs 9+@x-=dmK09 k (V[tE4o~Ўx^5=P $q 4+`BD: 7*A2 }-h4FPhoK2G1,(|Rљ +&kMU%]0n%)/- -}VCZN[fuF "S([ 䰁` =^A ol$϶5 Al0=ؼ4̹_QS>>'F !PFkU5^q"uAm~0 0S["UU2T:?7o9[ W8oFЙTg Bxi ) +Nh!EI<#<(^檾 "墜- +`J>.> x]H(:AWʖmRzA ™:-}L2Z)娱k5gv$g dzK8@r格~>jd )x"U8$FE~)oK|̽ ?c'0o&-]D\H OOVRY 9kO [A=Ժ p1”<<{r?8A2i/PT4 ?P5 +g`%To:jNh ^Ȭk+ơ"nfR Kpr3,X4]X MB(#ҌpJ v5+ q~3n ȁJ.+~NV;w%ߴ Wh 4FSR_ĭ9^_kiR `\ýK"2>  2`&RBsvg6yʂ2-b ¾,Fiz(TM|,vicH &dwI!a\hsOMӔ&GԶ .sSp*h}ai}op~q $ ß'p##pݹ <9~R;Gx- K5`D&0%Y ă;Q9?4"Fi>P ĴZa5"hc]18^z, r#;*ҔSXJQ j}xg 'S?k X7>HNaM 6=mdm tO2 +hUC3 y5Mo* ˚lzޔ]2x}7&M+JbI -<ʁE ʔ#g[qUJ ;HʌLLں"`NmG \ 6̬%,EDP[cզ ƵЎOh}Vpկ¾Y U;M|}wYԡ2kBPgÀ ď0p,AJ| +sڸ5 rH:A҈.eqGUVv }/sdN : h-V Ǧ#7=]=CyE06"qjkl. DZIEEqoHdyGG  &ڶYh Y5x +nO  vI0/J̌7 $[JUDKAJͶ~O(Q)PA? ẔO(H*RMYu>m(ty mM7ԓ;}db庋A^  p;$TC)[A>,|Wٺ șX`n N\`a } MA ț(#n{bo?_f ͋ A4@%:ijI0WşO'\zubMicS* jQb Yd~V^'[RZ sJ֏ou ɇ蓲<2J!oեALN޽ `fdG QiDr?(/Bo hnyJLwY ie@sCGK ʽNK AE1= G;~? :3a)+> {[&nUK**h{# :O4@ >7(ֽٍO\$`)=K ͜uܷSCb"3Ĥ* ,{Ph8?d6뛧%+q`i :n?k׳ƴ!F"/F> ΍vo(5=.N^Nb Ke2.1&f(}8U)Y7 9~+L3VtoX#/|U{- REl +V6Y|ʓ1aY7"".g ϻ]9&ThM$`fL7GS 9&d%\״1ܪ# JOW#gAo)w ."a3cʏ&\ ШErMd|QxUx*܊3I +ħ' л~= [ޢT` L]`1~Ht WeO,: z & =I ABqqin|WR ^5B qT;(>>( W7Cyo#E ѡT È8a9x; pĤIPh +!Xki1o zM-R0t=zțX\*  ُ})p=Zt[n +2A)5W ߁B)wR ƤcW4k<’p ,AORN za(xp KhqCZHL1)Y қj%ItFYЪ&tfRqX%Dk ߢb7 Jય4Z1U _X zn4wb܊t# pu S8m sX78K |Ӫky<-Hŷ*ܠ~ ԿzIaILJo^dS? 7k7wYpoZKW ŭ F#uzH^Q k!q~7vU"k jV8 ՜ [{^TTӝ$J,d6 0j?{יjΘYRZ@G Ԫ{őO9T I*^ 첩 +1sc$Ȭ +[W- ^ &V%ĭMğGv 6.fPOaS=:]Pch gw`E QYwPD%oSuM`YfE3o?.=i2 RL Bq>{m%yx @Y/JaE 1] ]gDie\0 iD]Q;b쭘!Kc&xI &g"BB=. 6Ӟ B 8IBc@ȝyTIx1"3-b2 RlDw" cX}>#ɴI. + ^T glnڌ*KҺ}_Ldx sO0=P_%C-Pnj ۉ ;q5,MSiI{Ư0ܶ $>  e#8ve%OrN 0/-ozAhu m&CN* LQ2kz5s1%x& گc^CyDUwxiEIV Υ%պbn8_ + 6c6 䱞n}4LWϟ [Dv?"\VrF}Ĺ^ 2ܝ< 3d3\ONfp/Ji7 ߴJd!to., kzS`! 4wzr) +e)Z\. ?!*RBLPAX5`ڳt== ᶃ[64JԎ/ B ҁ].D%]E=/_]K { L*1y&-Z 21̠ ?ۯ:5"6o |W0O)>׵$EXBū߈1# {Cqےv*[!vnE0\ (/t(B21gpy##lwaKkbh bj/qG+dͪUA٨Jm'o ˓ AS"RX˱h̲%K `!CH<`޷$&$bIL "Q/טp*zt A +%06_SeL=.A E\iY)_ŷ$ie(o BѳF UzTbmAk"3q f Oj19zcs<=?N xUh 2Nო8 +@3= hm+@}"H#:lO&I (ɩ҉y"S@MP ]~X 1KTAF-b݋fA9{V I H<'GP2|ATu 矣bIH3JV 1: oץ$2p+uNІIQñ +gð|~(2 P ,!9Y$'յҵD ~eu +ǢI=Iřn~L T8d,Ws^:+ˈZ%eR6v 鬇(=|I|hX58Vt j\b^&pf80IZk,:E oGn:5lyU<ޠR4X%c +*A`ow'#X]Nv` qG_R87/SNv3ފF %۩R HM̅VݍF L# 泎X.MD +'%btR% hy&f%iXapv>UN Ƭ|Dm۫ 65"CZnY qſW)? ^^wt+ꎏj$ =5-TxyG)ٍ Q;Q2w1E`E3ΚT\W B ,H`pLC}", E*n{O2ObJK{ާ{=vW ?,O> w ?Ϫ1'<ůJEY ;dgWs d``'A$  I3|7pz&@n֌pL  lݛKoyr˼䂖 + ,tz 4;ͮ8#zXڪZ `SȔ*oz `c2%aѲ)е0N zWVw' {`(& ;)uz ޫ4r <4yG ɜ(b7 x\DpҚK\T V춧-!1WT~ij  zӕY ؆ sBM<ܷ f_kv|,+-Щ*V9 v ~qP&QjmljN>W WW- elSw͙ڏPF[c5-D |{fУsR/Qؗ J!Zuobb Nx~`SXwNm׺]Jg ݗ'\XJWp 09p?$-P QEvMhx\ ɔ9!k<+nnk 皈iLJULE &*!F%͸㯋Cbk(. jW W&`s6f\iaC@q Uvll䲓dMfw' Aoy;~8^w|D7f=ga>ӍR i5_\ +H7: +!Sʕ lNbh}>q_FU"O 5=K3}@,#vAYˎ(yR t":f s(aҎ6-/M? Ou:b 4{ꅺмw< %([ ,?G/xlt;ppR͌] dLyk_OIc7$ RDŕO-t'jåk)2uO ,TIпQ5'za=_jWdR+ [9xCxmnC&>&$,9N6 e ~qȣR6 +9SFG{r okʑ5Yt8[؈=8S$ },c`diⳚc=%nm Ӯ E6G2:6Tj9 \ No newline at end of file diff --git a/notebooklm_chrome_profile/PKIMetadata/1585/kp_pinslist.pb b/notebooklm_chrome_profile/PKIMetadata/1585/kp_pinslist.pb new file mode 100644 index 000000000..446b27807 Binary files /dev/null and b/notebooklm_chrome_profile/PKIMetadata/1585/kp_pinslist.pb differ diff --git a/notebooklm_chrome_profile/PKIMetadata/1585/manifest.json b/notebooklm_chrome_profile/PKIMetadata/1585/manifest.json new file mode 100644 index 000000000..edc4eea00 --- /dev/null +++ b/notebooklm_chrome_profile/PKIMetadata/1585/manifest.json @@ -0,0 +1,5 @@ +{ + "manifest_version": 2, + "name": "pkiMetadata", + "version": "1585" +} \ No newline at end of file diff --git a/notebooklm_chrome_profile/Safe Browsing/ChromeExtMalware.store b/notebooklm_chrome_profile/Safe Browsing/ChromeExtMalware.store index c5c04750c..4b2053a8a 100644 --- a/notebooklm_chrome_profile/Safe Browsing/ChromeExtMalware.store +++ b/notebooklm_chrome_profile/Safe Browsing/ChromeExtMalware.store @@ -1,3 +1,3 @@ 㵀 B : - "0010? _ B" - (uaT")A^A" 32_13415694198294806 t \ No newline at end of file + "0010? EB" + ˷7DS=18.0.0" } }, + "node_modules/@google/genai": { + "version": "1.43.0", + "resolved": "https://registry.npmjs.org/@google/genai/-/genai-1.43.0.tgz", + "integrity": "sha512-hklCsJNdMlDM1IwcCVcGQFBg2izY0+t5BIGbRsxi2UnKi6AGKL7pqJqmBDNRbw0bYCs4y3NA7TB+fkKfP/Nrdw==", + "license": "Apache-2.0", + "dependencies": { + "google-auth-library": "^10.3.0", + "p-retry": "^4.6.2", + "protobufjs": "^7.5.4", + "ws": "^8.18.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "@modelcontextprotocol/sdk": "^1.25.2" + }, + "peerDependenciesMeta": { + "@modelcontextprotocol/sdk": { + "optional": true + } + } + }, + "node_modules/@google/genai/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@google/genai/node_modules/gaxios": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/gaxios/-/gaxios-7.1.3.tgz", + "integrity": "sha512-YGGyuEdVIjqxkxVH1pUTMY/XtmmsApXrCVv5EU25iX6inEPbV+VakJfLealkBtJN69AQmh1eGOdCl9Sm1UP6XQ==", + "license": "Apache-2.0", + "dependencies": { + "extend": "^3.0.2", + "https-proxy-agent": "^7.0.1", + "node-fetch": "^3.3.2", + "rimraf": "^5.0.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@google/genai/node_modules/gcp-metadata": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-8.1.2.tgz", + "integrity": "sha512-zV/5HKTfCeKWnxG0Dmrw51hEWFGfcF2xiXqcA3+J90WDuP0SvoiSO5ORvcBsifmx/FoIjgQN3oNOGaQ5PhLFkg==", + "license": "Apache-2.0", + "dependencies": { + "gaxios": "^7.0.0", + "google-logging-utils": "^1.0.0", + "json-bigint": "^1.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@google/genai/node_modules/glob": { + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz", + "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==", + "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@google/genai/node_modules/google-auth-library": { + "version": "10.6.1", + "resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-10.6.1.tgz", + "integrity": "sha512-5awwuLrzNol+pFDmKJd0dKtZ0fPLAtoA5p7YO4ODsDu6ONJUVqbYwvv8y2ZBO5MBNp9TJXigB19710kYpBPdtA==", + "license": "Apache-2.0", + "dependencies": { + "base64-js": "^1.3.0", + "ecdsa-sig-formatter": "^1.0.11", + "gaxios": "7.1.3", + "gcp-metadata": "8.1.2", + "google-logging-utils": "1.1.3", + "jws": "^4.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@google/genai/node_modules/google-logging-utils": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/google-logging-utils/-/google-logging-utils-1.1.3.tgz", + "integrity": "sha512-eAmLkjDjAFCVXg7A1unxHsLf961m6y17QFqXqAXGj/gVkKFrEICfStRfwUlGNfeCEjNRa32JEWOUTlYXPyyKvA==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@google/genai/node_modules/minimatch": { + "version": "9.0.9", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz", + "integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.2" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@google/genai/node_modules/node-fetch": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", + "license": "MIT", + "dependencies": { + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/node-fetch" + } + }, + "node_modules/@google/genai/node_modules/rimraf": { + "version": "5.0.10", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz", + "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==", + "license": "ISC", + "dependencies": { + "glob": "^10.3.7" + }, + "bin": { + "rimraf": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/@google/generative-ai": { "version": "0.24.1", "resolved": "https://registry.npmjs.org/@google/generative-ai/-/generative-ai-0.24.1.tgz", @@ -1455,7 +1612,7 @@ "version": "1.19.9", "resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.9.tgz", "integrity": "sha512-vHL6w3ecZsky+8P5MD+eFfaGTyCeOHUIFYMGpQGbrBTSmNNoxv0if69rEZ5giu36weC5saFuznL411gRX7bJDw==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">=18.14.1" @@ -1974,6 +2131,96 @@ "integrity": "sha512-eUgLqrMf8nJkZxT24JvVRrQya1vZkQh8BBeYNwGDqa5I0VUi8ACx7uFvAaLxintokpTenkK6DASvo/bvNbBGow==", "license": "MIT" }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz", + "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.2.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -2464,7 +2711,7 @@ "version": "1.26.0", "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.26.0.tgz", "integrity": "sha512-Y5RmPncpiDtTXDbLKswIJzTqu2hyBKxTNsgKqKclDbhIgg1wgtf1fRuvxgTnRfcnxtvvgbIEcqUOzZrJ6iSReg==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "@hono/node-server": "^1.19.9", @@ -3601,6 +3848,16 @@ "node": ">=14.0.0" } }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@prisma/client": { "version": "5.22.0", "resolved": "https://registry.npmjs.org/@prisma/client/-/client-5.22.0.tgz", @@ -5252,7 +5509,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz", "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "mime-types": "^3.0.0", @@ -5350,7 +5607,7 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz", "integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "ajv": "^8.0.0" @@ -5913,7 +6170,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true, "license": "MIT" }, "node_modules/base64-js": { @@ -5977,7 +6233,7 @@ "version": "2.2.2", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz", "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "bytes": "^3.1.2", @@ -6127,7 +6383,7 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -6511,7 +6767,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.1.tgz", "integrity": "sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">=18" @@ -6525,7 +6781,7 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -6551,7 +6807,7 @@ "version": "1.2.2", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz", "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">=6.6.0" @@ -6561,7 +6817,7 @@ "version": "2.8.6", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz", "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "object-assign": "^4", @@ -6610,7 +6866,6 @@ "version": "7.0.6", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", - "dev": true, "license": "MIT", "dependencies": { "path-key": "^3.1.0", @@ -6648,6 +6903,15 @@ "dev": true, "license": "BSD-2-Clause" }, + "node_modules/data-uri-to-buffer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", + "license": "MIT", + "engines": { + "node": ">= 12" + } + }, "node_modules/data-view-buffer": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", @@ -6818,7 +7082,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -6901,6 +7165,12 @@ "node": ">= 0.4" } }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, "node_modules/ecdsa-sig-formatter": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", @@ -6914,7 +7184,7 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true, + "devOptional": true, "license": "MIT" }, "node_modules/electron-to-chromium": { @@ -6941,14 +7211,13 @@ "version": "9.2.2", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true, "license": "MIT" }, "node_modules/encodeurl": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -7229,7 +7498,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "dev": true, + "devOptional": true, "license": "MIT" }, "node_modules/escape-string-regexp": { @@ -7777,7 +8046,7 @@ "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -7811,7 +8080,7 @@ "version": "3.0.7", "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-3.0.7.tgz", "integrity": "sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "eventsource-parser": "^3.0.1" @@ -7906,7 +8175,7 @@ "version": "5.2.1", "resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz", "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "accepts": "^2.0.0", @@ -7950,7 +8219,7 @@ "version": "8.2.1", "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.2.1.tgz", "integrity": "sha512-PCZEIEIxqwhzw4KF0n7QF4QqruVTcF73O5kFKUnGOyjbCCgizBBiFaYpd/fnBLUMPw/BWw9OsiN7GgrNYr7j6g==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "ip-address": "10.0.1" @@ -8096,6 +8365,29 @@ } } }, + "node_modules/fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "paypal", + "url": "https://paypal.me/jimmywarting" + } + ], + "license": "MIT", + "dependencies": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + }, + "engines": { + "node": "^12.20 || >= 14.13" + } + }, "node_modules/file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", @@ -8126,7 +8418,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz", "integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "debug": "^4.4.0", @@ -8231,6 +8523,34 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/form-data": { "version": "2.5.5", "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.5.5.tgz", @@ -8269,11 +8589,23 @@ "node": ">= 0.6" } }, + "node_modules/formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "license": "MIT", + "dependencies": { + "fetch-blob": "^3.1.2" + }, + "engines": { + "node": ">=12.20.0" + } + }, "node_modules/forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -8297,7 +8629,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz", "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -8314,6 +8646,7 @@ "version": "2.3.3", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, "hasInstallScript": true, "license": "MIT", "optional": true, @@ -8790,7 +9123,7 @@ "version": "4.12.2", "resolved": "https://registry.npmjs.org/hono/-/hono-4.12.2.tgz", "integrity": "sha512-gJnaDHXKDayjt8ue0n8Gs0A007yKXj4Xzb8+cNjZeYsSzzwKc0Lr+OZgYwVfB0pHfUs17EPoLvrOsEaJ9mj+Tg==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">=16.9.0" @@ -8807,7 +9140,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "depd": "~2.0.0", @@ -8860,7 +9193,7 @@ "version": "0.7.2", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz", "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" @@ -8978,7 +9311,7 @@ "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true, + "devOptional": true, "license": "ISC" }, "node_modules/internal-slot": { @@ -9024,7 +9357,7 @@ "version": "10.0.1", "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.0.1.tgz", "integrity": "sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">= 12" @@ -9034,7 +9367,7 @@ "version": "1.9.1", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">= 0.10" @@ -9355,7 +9688,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz", "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==", - "dev": true, + "devOptional": true, "license": "MIT" }, "node_modules/is-regex": { @@ -9523,7 +9856,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true, "license": "ISC" }, "node_modules/istanbul-lib-coverage": { @@ -9615,6 +9947,21 @@ "node": ">= 0.4" } }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, "node_modules/jest": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", @@ -10199,7 +10546,7 @@ "version": "6.1.3", "resolved": "https://registry.npmjs.org/jose/-/jose-6.1.3.tgz", "integrity": "sha512-0TpaTfihd4QMNwrz/ob2Bp7X04yuxJkjRGi4aKmOqwhov54i6u79oCv7T+C7lo70MKH6BesI3vscD1yb/yzKXQ==", - "dev": true, + "devOptional": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/panva" @@ -10285,7 +10632,7 @@ "version": "8.0.2", "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-8.0.2.tgz", "integrity": "sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==", - "dev": true, + "devOptional": true, "license": "BSD-2-Clause" }, "node_modules/json-stable-stringify-without-jsonify": { @@ -10556,7 +10903,7 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz", "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -10566,7 +10913,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz", "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">=18" @@ -10610,7 +10957,7 @@ "version": "1.54.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -10620,7 +10967,7 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz", "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "mime-db": "^1.54.0" @@ -10665,6 +11012,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/minipass": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz", + "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==", + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, "node_modules/mlly": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.8.0.tgz", @@ -10747,7 +11103,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz", "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -10865,6 +11221,26 @@ "tslib": "^2.8.0" } }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "deprecated": "Use your platform's native DOMException instead", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "license": "MIT", + "engines": { + "node": ">=10.5.0" + } + }, "node_modules/node-fetch": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", @@ -10932,7 +11308,7 @@ "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -11093,7 +11469,7 @@ "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "ee-first": "1.1.1" @@ -11327,6 +11703,12 @@ "node": ">=6" } }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, "node_modules/parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", @@ -11363,7 +11745,7 @@ "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -11393,7 +11775,6 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -11405,11 +11786,33 @@ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "license": "MIT" }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, "node_modules/path-to-regexp": { "version": "8.3.0", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.3.0.tgz", "integrity": "sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==", - "dev": true, + "devOptional": true, "license": "MIT", "funding": { "type": "opencollective", @@ -11650,7 +12053,7 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/pkce-challenge/-/pkce-challenge-5.0.1.tgz", "integrity": "sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">=16.20.0" @@ -12097,7 +12500,7 @@ "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "forwarded": "0.2.0", @@ -12196,7 +12599,7 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">= 0.6" @@ -12206,7 +12609,7 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz", "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "bytes": "~3.1.2", @@ -12538,7 +12941,7 @@ "version": "2.2.0", "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz", "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "debug": "^4.4.0", @@ -12696,7 +13099,7 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz", "integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "debug": "^4.4.3", @@ -12723,7 +13126,7 @@ "version": "2.2.1", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz", "integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "encodeurl": "^2.0.0", @@ -12792,7 +13195,7 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true, + "devOptional": true, "license": "ISC" }, "node_modules/sharp": { @@ -12844,7 +13247,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" @@ -12857,7 +13259,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -13074,7 +13475,7 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -13138,6 +13539,27 @@ "node": ">=8" } }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, "node_modules/string-width/node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", @@ -13269,6 +13691,19 @@ "node": ">=8" } }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-bom": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", @@ -13585,7 +14020,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">=0.6" @@ -13934,7 +14369,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz", "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==", - "dev": true, + "devOptional": true, "license": "MIT", "dependencies": { "content-type": "^1.0.5", @@ -14109,7 +14544,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -14226,7 +14661,7 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "dev": true, + "devOptional": true, "license": "MIT", "engines": { "node": ">= 0.8" @@ -14431,6 +14866,15 @@ "makeerror": "1.0.12" } }, + "node_modules/web-streams-polyfill": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz", + "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, "node_modules/webidl-conversions": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", @@ -14451,7 +14895,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, "license": "ISC", "dependencies": { "isexe": "^2.0.0" @@ -14596,6 +15039,39 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, "node_modules/wrap-ansi/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -14730,7 +15206,7 @@ "version": "3.25.1", "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.1.tgz", "integrity": "sha512-pM/SU9d3YAggzi6MtR4h7ruuQlqKtad8e9S0fmxcMi+ueAK5Korys/aWcV9LIIHTVbj01NdzxcnXSN+O74ZIVA==", - "dev": true, + "devOptional": true, "license": "ISC", "peerDependencies": { "zod": "^3.25 || ^4" diff --git a/src/youtube_extension/videopack/__init__.py b/src/youtube_extension/videopack/__init__.py index 41210e9e3..d0a959d08 100644 --- a/src/youtube_extension/videopack/__init__.py +++ b/src/youtube_extension/videopack/__init__.py @@ -1,3 +1,9 @@ from .io import read_pack, write_pack -from .schema import VideoPackV0, VPVersion +from .schema import ( + VideoPackV0, VPVersion, + Chapter, CodeCue, Task, + TranscriptSegment, Transcript, Keyframe, + Requirement, CodeSnippet, ArtifactRef, + Metrics, Provenance, +) from .validate import validate_pack diff --git a/src/youtube_extension/videopack/schema.py b/src/youtube_extension/videopack/schema.py index 945ba6fb1..9411b2ca9 100644 --- a/src/youtube_extension/videopack/schema.py +++ b/src/youtube_extension/videopack/schema.py @@ -45,6 +45,31 @@ class CodeSnippet(BaseModel): content: str +class Chapter(BaseModel): + title: str + start_s: float = Field(ge=0) + end_s: float | None = None + summary: str | None = None + + +class CodeCue(BaseModel): + t_s: float = Field(ge=0, description="Timestamp in video where code is shown/discussed") + language: str | None = None + snippet: str | None = None + description: str | None = None + framework: str | None = None + + +class Task(BaseModel): + id: str = Field(default_factory=lambda: str(_uuid.uuid4())) + title: str + description: str | None = None + category: str | None = Field(default="learn") # setup|build|deploy|learn|research|configure + estimated_minutes: int | None = None + priority: str | None = Field(default="normal") # low|normal|high + dependencies: list[str] = Field(default_factory=list) + + class ArtifactRef(BaseModel): kind: str # e.g., "repo", "file", "url" path: str | None = None # repo/file path @@ -75,10 +100,13 @@ class VideoPackV0(BaseModel): source_url: HttpUrl | None = None transcript: Transcript + chapters: list[Chapter] = Field(default_factory=list) keyframes: list[Keyframe] = Field(default_factory=list) concepts: list[str] = Field(default_factory=list) requirements: list[Requirement] = Field(default_factory=list) code_snippets: list[CodeSnippet] = Field(default_factory=list) + code_cues: list[CodeCue] = Field(default_factory=list) + tasks: list[Task] = Field(default_factory=list) artifacts: list[ArtifactRef] = Field(default_factory=list) metrics: Metrics = Field(default_factory=Metrics) diff --git a/src/youtube_extension/videopack/versioning.py b/src/youtube_extension/videopack/versioning.py index e8ee286bf..fd69ad024 100644 --- a/src/youtube_extension/videopack/versioning.py +++ b/src/youtube_extension/videopack/versioning.py @@ -6,13 +6,15 @@ class UpgradePolicy(str, Enum): best_effort = "best_effort" def upgrade_to_v0(data: dict) -> dict: - # shim older shapes in storage/video_packs/*/pack.json \uc0\u8594 v0 fields - # (add minimal keys if missing; do not change semantics) + # shim older shapes in storage/video_packs/*/pack.json → v0 fields data.setdefault("version", "v0") data.setdefault("metrics", {}) data.setdefault("concepts", []) + data.setdefault("chapters", []) data.setdefault("keyframes", []) data.setdefault("requirements", []) data.setdefault("code_snippets", []) + data.setdefault("code_cues", []) + data.setdefault("tasks", []) data.setdefault("artifacts", []) return data