# NarrativeExploit[PROTOCOL] ## Module 1: ENTROPY_INJECTION - Input: Baseline fragments F, coherence C(t), entropy slope ΔE(t) - Parameters: δ(t) (injection threshold), PRNG seed schedule S 1. Initialize fragment pool F₀ via inverse-planning. 2. For each fragment f ∈ F₀: a. Compute C_f = coherence(f). b. If ΔE_f ≥ δ(t): i. Perturb f: apply random swap/remove/augment. ii. Log entropy ΔE_f and coherence δC_f. ## Module 2: INVERSE_RESONANCE_METRICS - Input: Subverted fragments F₁, emotional polarity vectors P - Parameters: τᵣ (resonance threshold) 1. Map P(f) onto phase angles θ_f. 2. Compute PASₙ(f) = (1/N) Σ cos(θₖ – θ̄). 3. Select low-PAS fragments F₂ = { f | PASₙ(f) < τᵣ }. 4. Rank F₂ by ascending PASₙ. ## Module 3: META_REPARATIVE_LAYERS - Input: Ranked fragments F₂, narrative anchors A - Parameters: τ𝗋𝗲𝗽𝗮𝗶𝗿 (repair threshold), Cₜₐᵣ𝗴𝗲𝘁 1. For each f ∈ F₂: a. If PASₙ(f) < τ𝗋𝗲𝗽𝗮𝗶𝗿: i. Select anchor a ∈ A maximizing MI(a,f) ≥ θ(t), RC(a) ≥ γ(t). ii. Stitch f′ = integrate(f, a). iii. Compute C(f′); ensure C(f′) ≥ Cₜₐᵣ𝗴𝗲𝘁. 2. Output final set F₃ as Exploited Narrative Fragments.
0b6d122
verified
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Entropic Story Weaver</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script> | |
| <style> | |
| .text-gradient { | |
| background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%); | |
| -webkit-background-clip: text; | |
| background-clip: text; | |
| color: transparent; | |
| } | |
| .card-hover { | |
| transition: all 0.3s ease; | |
| transform: translateY(0); | |
| } | |
| .card-hover:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
| } | |
| .pulse { | |
| animation: pulse 2s infinite; | |
| } | |
| @keyframes pulse { | |
| 0% { opacity: 0.8; } | |
| 50% { opacity: 1; } | |
| 100% { opacity: 0.8; } | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-900 text-white"> | |
| <div id="vanta-bg" class="fixed inset-0 z-0"></div> | |
| <div class="relative z-10 min-h-screen"> | |
| <!-- Navigation --> | |
| <nav class="px-6 py-4 bg-gray-900 bg-opacity-70 backdrop-filter backdrop-blur-lg"> | |
| <div class="max-w-7xl mx-auto flex justify-between items-center"> | |
| <div class="flex items-center space-x-2"> | |
| <i data-feather="zap" class="text-purple-400"></i> | |
| <span class="text-xl font-bold text-gradient">EntropicWeaver</span> | |
| </div> | |
| <div class="hidden md:flex space-x-8"> | |
| <a href="#" class="hover:text-purple-300 transition">Modules</a> | |
| <a href="#" class="hover:text-purple-300 transition">Documentation</a> | |
| <a href="#" class="hover:text-purple-300 transition">Case Studies</a> | |
| <a href="#" class="hover:text-purple-300 transition">About</a> | |
| </div> | |
| <div class="md:hidden"> | |
| <i data-feather="menu"></i> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="pt-32 pb-20 px-6"> | |
| <div class="max-w-7xl mx-auto text-center"> | |
| <h1 class="text-5xl md:text-7xl font-bold mb-6"> | |
| <span class="text-gradient">Narrative</span> Exploitation <br> Protocol | |
| </h1> | |
| <p class="text-xl md:text-2xl text-gray-300 mb-10 max-w-3xl mx-auto"> | |
| Injecting controlled entropy into story fragments while preserving <span class="text-purple-300">coherence thresholds</span> and <span class="text-blue-300">emotional resonance metrics</span>. | |
| </p> | |
| <div class="flex justify-center space-x-4"> | |
| <button class="px-8 py-3 bg-gradient-to-r from-purple-500 to-blue-500 rounded-full font-medium hover:opacity-90 transition"> | |
| Initialize System | |
| </button> | |
| <button class="px-8 py-3 border border-purple-400 text-purple-300 rounded-full font-medium hover:bg-purple-900 hover:bg-opacity-30 transition"> | |
| View Documentation | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Modules Section --> | |
| <section class="py-20 px-6"> | |
| <div class="max-w-7xl mx-auto"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-center mb-16"> | |
| Core <span class="text-gradient">Processing</span> Modules | |
| </h2> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <!-- Module 1 --> | |
| <div class="bg-gray-800 bg-opacity-60 backdrop-filter backdrop-blur-lg rounded-xl p-6 border border-gray-700 card-hover"> | |
| <div class="flex items-center mb-4"> | |
| <div class="p-3 rounded-lg bg-blue-900 bg-opacity-50 mr-4"> | |
| <i data-feather="activity" class="text-blue-300"></i> | |
| </div> | |
| <h3 class="text-xl font-bold">Entropy Injection</h3> | |
| </div> | |
| <p class="text-gray-300 mb-4"> | |
| Perturb fragment structures with randomized transformations when ΔE(t) exceeds δ(t) thresholds. | |
| </p> | |
| <div class="flex flex-wrap gap-2"> | |
| <span class="px-3 py-1 bg-blue-900 bg-opacity-20 text-blue-300 rounded-full text-xs">Swap</span> | |
| <span class="px-3 py-1 bg-blue-900 bg-opacity-20 text-blue-300 rounded-full text-xs">Remove</span> | |
| <span class="px-3 py-1 bg-blue-900 bg-opacity-20 text-blue-300 rounded-full text-xs">Augment</span> | |
| </div> | |
| </div> | |
| <!-- Module 2 --> | |
| <div class="bg-gray-800 bg-opacity-60 backdrop-filter backdrop-blur-lg rounded-xl p-6 border border-gray-700 card-hover"> | |
| <div class="flex items-center mb-4"> | |
| <div class="p-3 rounded-lg bg-purple-900 bg-opacity-50 mr-4"> | |
| <i data-feather="bar-chart-2" class="text-purple-300"></i> | |
| </div> | |
| <h3 class="text-xl font-bold">Resonance Metrics</h3> | |
| </div> | |
| <p class="text-gray-300 mb-4"> | |
| Calculate PASₙ scores by mapping emotional polarities to phase-space vectors. | |
| </p> | |
| <div class="flex flex-wrap gap-2"> | |
| <span class="px-3 py-1 bg-purple-900 bg-opacity-20 text-purple-300 rounded-full text-xs">θ_f</span> | |
| <span class="px-3 py-1 bg-purple-900 bg-opacity-20 text-purple-300 rounded-full text-xs">cos(θₖ)</span> | |
| <span class="px-3 py-1 bg-purple-900 bg-opacity-20 text-purple-300 rounded-full text-xs">τᵣ</span> | |
| </div> | |
| </div> | |
| <!-- Module 3 --> | |
| <div class="bg-gray-800 bg-opacity-60 backdrop-filter backdrop-blur-lg rounded-xl p-6 border border-gray-700 card-hover"> | |
| <div class="flex items-center mb-4"> | |
| <div class="p-3 rounded-lg bg-pink-900 bg-opacity-50 mr-4"> | |
| <i data-feather="shield" class="text-pink-300"></i> | |
| </div> | |
| <h3 class="text-xl font-bold">Reparative Layers</h3> | |
| </div> | |
| <p class="text-gray-300 mb-4"> | |
| Stitch subverted fragments to narrative anchors when PASₙ(f) < τ𝗋𝗲𝗽𝗮𝗂𝗿. | |
| </p> | |
| <div class="flex flex-wrap gap-2"> | |
| <span class="px-3 py-1 bg-pink-900 bg-opacity-20 text-pink-300 rounded-full text-xs">MI(a,f)</span> | |
| <span class="px-3 py-1 bg-pink-900 bg-opacity-20 text-pink-300 rounded-full text-xs">RC(a)</span> | |
| <span class="px-3 py-1 bg-pink-900 bg-opacity-20 text-pink-300 rounded-full text-xs">Cₜₐᵣ𝗴𝗲𝘁</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Visualization Section --> | |
| <section class="py-20 px-6"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="bg-gray-800 bg-opacity-60 backdrop-filter backdrop-blur-lg rounded-xl p-8 border border-gray-700"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-8 md:mb-0 md:pr-8"> | |
| <h2 class="text-3xl font-bold mb-6"> | |
| Phase-Space <span class="text-gradient">Visualization</span> | |
| </h2> | |
| <p class="text-gray-300 mb-6"> | |
| Observe the narrative fragments mapped onto emotional polarity vectors, with PASₙ scores determining their position in the resonance field. | |
| </p> | |
| <div class="bg-gray-700 bg-opacity-40 rounded-lg p-4 mb-6"> | |
| <div class="flex items-center mb-2"> | |
| <div class="w-3 h-3 rounded-full bg-purple-400 mr-2"></div> | |
| <span class="text-sm">High PASₙ (τᵣ > 0.7)</span> | |
| </div> | |
| <div class="flex items-center mb-2"> | |
| <div class="w-3 h-3 rounded-full bg-blue-400 mr-2"></div> | |
| <span class="text-sm">Medium PASₙ (0.3 ≤ τᵣ ≤ 0.7)</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <div class="w-3 h-3 rounded-full bg-pink-400 mr-2"></div> | |
| <span class="text-sm">Low PASₙ (τᵣ < 0.3)</span> | |
| </div> | |
| </div> | |
| <button class="px-6 py-2 bg-gradient-to-r from-blue-500 to-purple-500 rounded-full text-sm font-medium"> | |
| Run Simulation | |
| </button> | |
| </div> | |
| <div class="md:w-1/2"> | |
| <div class="bg-gray-900 rounded-lg h-64 md:h-80 flex items-center justify-center"> | |
| <div class="text-center"> | |
| <i data-feather="eye" class="w-12 h-12 mx-auto text-gray-600 mb-2"></i> | |
| <p class="text-gray-500">Dynamic visualization loading...</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="py-12 px-6 border-t border-gray-800 mt-12"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="flex flex-col md:flex-row justify-between items-center"> | |
| <div class="flex items-center mb-6 md:mb-0"> | |
| <i data-feather="zap" class="text-purple-400 mr-2"></i> | |
| <span class="text-lg font-bold">EntropicWeaver</span> | |
| </div> | |
| <div class="flex space-x-6"> | |
| <a href="#"><i data-feather="github"></i></a> | |
| <a href="#"><i data-feather="twitter"></i></a> | |
| <a href="#"><i data-feather="book-open"></i></a> | |
| </div> | |
| </div> | |
| <div class="mt-8 text-center text-gray-500 text-sm"> | |
| © 2023 NarrativeExploit[PROTOCOL]. All fragments subject to controlled entropy injection. | |
| </div> | |
| </div> | |
| </footer> | |
| </div> | |
| <script> | |
| // Initialize Vanta.js background | |
| VANTA.GLOBE({ | |
| el: "#vanta-bg", | |
| mouseControls: true, | |
| touchControls: true, | |
| gyroControls: false, | |
| minHeight: 200.00, | |
| minWidth: 200.00, | |
| scale: 1.00, | |
| scaleMobile: 1.00, | |
| color: 0x5b21b6, | |
| backgroundColor: 0x111827, | |
| size: 0.8 | |
| }); | |
| // Initialize feather icons | |
| feather.replace(); | |
| // Simple animation for cards on load | |
| document.addEventListener('DOMContentLoaded', () => { | |
| const cards = document.querySelectorAll('.card-hover'); | |
| cards.forEach((card, index) => { | |
| card.style.opacity = '0'; | |
| card.style.transform = 'translateY(20px)'; | |
| setTimeout(() => { | |
| anime({ | |
| targets: card, | |
| opacity: 1, | |
| translateY: 0, | |
| duration: 800, | |
| easing: 'easeOutExpo', | |
| delay: index * 100 | |
| }); | |
| }, 500); | |
| }); | |
| }); | |
| </script> | |
| </body> | |
| </html> | |