-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
1135 lines (1065 loc) · 65.7 KB
/
Copy pathindex.html
File metadata and controls
1135 lines (1065 loc) · 65.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title data-i18n="title">Crypto-Intelligence Investigation Project</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&family=Outfit:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-primary: #0f0f1a;
--bg-secondary: #1a1a2e;
--bg-card: #16213e;
--accent-cyan: #00d4ff;
--accent-magenta: #ff006e;
--accent-lime: #adff02;
--accent-orange: #ff9500;
--text-primary: #e8e8e8;
--text-secondary: #a0a0b0;
--border-glow: rgba(0, 212, 255, 0.3);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Outfit', sans-serif;
background: var(--bg-primary);
color: var(--text-primary);
min-height: 100vh;
line-height: 1.6;
}
/* Animated background */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
radial-gradient(ellipse at 80% 80%, rgba(255, 0, 110, 0.06) 0%, transparent 50%),
radial-gradient(ellipse at 50% 50%, rgba(173, 255, 2, 0.04) 0%, transparent 60%);
pointer-events: none;
z-index: -1;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
}
/* Language Switcher */
.lang-switcher {
position: fixed;
top: 20px;
right: 20px;
display: flex;
gap: 8px;
z-index: 1000;
background: rgba(22, 33, 62, 0.9);
padding: 8px 12px;
border-radius: 12px;
border: 1px solid rgba(0, 212, 255, 0.3);
backdrop-filter: blur(10px);
}
.lang-btn {
width: 36px;
height: 24px;
border: 2px solid transparent;
border-radius: 4px;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
background: transparent;
overflow: hidden;
padding: 0;
}
.lang-btn svg {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 2px;
}
.lang-btn:hover {
transform: scale(1.1);
border-color: var(--accent-cyan);
}
.lang-btn.active {
border-color: var(--accent-cyan);
box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
background: rgba(0, 212, 255, 0.1);
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.logo {
display: inline-flex;
align-items: center;
gap: 15px;
margin-bottom: 15px;
}
.logo-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}
h1 {
font-size: 2.8rem;
font-weight: 700;
background: linear-gradient(135deg, var(--accent-cyan), var(--accent-lime));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: -0.5px;
}
.subtitle {
color: var(--text-secondary);
font-size: 1.1rem;
margin-top: 10px;
font-weight: 300;
}
.badge {
display: inline-block;
padding: 6px 16px;
background: rgba(0, 212, 255, 0.15);
border: 1px solid var(--accent-cyan);
border-radius: 20px;
font-size: 0.85rem;
color: var(--accent-cyan);
margin-top: 20px;
font-family: 'JetBrains Mono', monospace;
}
/* Puzzle Grid */
.puzzles-grid {
display: grid;
gap: 30px;
}
.puzzle-card {
background: var(--bg-card);
border-radius: 20px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.05);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
animation: fadeInUp 0.6s ease-out backwards;
}
.puzzle-card:nth-child(1) { animation-delay: 0.1s; }
.puzzle-card:nth-child(2) { animation-delay: 0.2s; }
.puzzle-card:nth-child(3) { animation-delay: 0.3s; }
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.puzzle-card:hover {
transform: translateY(-5px);
border-color: var(--accent-cyan);
box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
}
.puzzle-header {
padding: 25px 30px;
background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 110, 0.05));
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}
.puzzle-title {
display: flex;
align-items: center;
gap: 15px;
}
.puzzle-number {
width: 45px;
height: 45px;
background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.2rem;
}
.puzzle-name {
font-size: 1.4rem;
font-weight: 600;
}
.puzzle-name a {
color: var(--text-primary);
text-decoration: none;
transition: color 0.3s;
}
.puzzle-name a:hover {
color: var(--accent-cyan);
}
.puzzle-status {
padding: 8px 18px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 500;
}
.status-partial {
background: rgba(255, 149, 0, 0.15);
color: var(--accent-orange);
border: 1px solid var(--accent-orange);
}
.status-investigating {
background: rgba(0, 212, 255, 0.15);
color: var(--accent-cyan);
border: 1px solid var(--accent-cyan);
}
.puzzle-body {
padding: 30px;
}
.puzzle-description {
color: var(--text-secondary);
margin-bottom: 25px;
font-size: 0.95rem;
}
.discoveries {
margin-bottom: 25px;
}
.discoveries h4 {
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--accent-lime);
margin-bottom: 15px;
display: flex;
align-items: center;
gap: 8px;
}
.discoveries h4::before {
content: '◆';
font-size: 0.7rem;
}
.discovery-list {
display: grid;
gap: 10px;
}
.discovery-item {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 12px 15px;
background: rgba(255, 255, 255, 0.03);
border-radius: 10px;
border-left: 3px solid var(--accent-cyan);
font-size: 0.9rem;
}
.discovery-item .icon {
font-size: 1rem;
margin-top: 2px;
}
.discovery-item .text {
color: var(--text-secondary);
}
.discovery-item .highlight {
color: var(--accent-cyan);
font-family: 'JetBrains Mono', monospace;
font-size: 0.85rem;
}
.stats-row {
display: flex;
gap: 20px;
flex-wrap: wrap;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.stat {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.85rem;
color: var(--text-secondary);
}
.stat-value {
color: var(--accent-lime);
font-family: 'JetBrains Mono', monospace;
font-weight: 600;
}
/* Footer */
footer {
text-align: center;
margin-top: 60px;
padding: 30px;
color: var(--text-secondary);
font-size: 0.9rem;
border-top: 1px solid rgba(255, 255, 255, 0.05);
}
footer a {
color: var(--accent-cyan);
text-decoration: none;
}
/* Responsive */
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
.puzzle-header {
flex-direction: column;
align-items: flex-start;
}
.stats-row {
flex-direction: column;
gap: 10px;
}
.lang-switcher {
top: 10px;
right: 10px;
padding: 6px 8px;
}
.lang-btn {
width: 32px;
height: 22px;
}
}
</style>
</head>
<body>
<!-- Language Switcher -->
<div class="lang-switcher">
<button class="lang-btn active" onclick="setLanguage('en')" title="English">
<svg viewBox="0 0 640 480" xmlns="http://www.w3.org/2000/svg">
<path fill="#012169" d="M0 0h640v480H0z"/>
<path fill="#FFF" d="M75 0l244 181L562 0h78v62L400 241l240 178v61h-80L320 301 81 480H0v-60l239-178L0 64V0h75z"/>
<path fill="#C8102E" d="M424 281l216 159v40L369 281h55zm-184 20l6 35L54 480H0l240-179zM640 0v3L391 191l2-44L590 0h50zM0 0l239 176h-60L0 42V0z"/>
<path fill="#FFF" d="M241 0v480h160V0H241zM0 160v160h640V160H0z"/>
<path fill="#C8102E" d="M0 193v96h640v-96H0zM273 0v480h96V0h-96z"/>
</svg>
</button>
<button class="lang-btn" onclick="setLanguage('de')" title="Deutsch">
<svg viewBox="0 0 640 480" xmlns="http://www.w3.org/2000/svg">
<path fill="#FFCE00" d="M0 320h640v160H0z"/>
<path d="M0 0h640v160H0z"/>
<path fill="#DD0000" d="M0 160h640v160H0z"/>
</svg>
</button>
<button class="lang-btn" onclick="setLanguage('fr')" title="Français">
<svg viewBox="0 0 640 480" xmlns="http://www.w3.org/2000/svg">
<path fill="#FFF" d="M0 0h640v480H0z"/>
<path fill="#002395" d="M0 0h213.3v480H0z"/>
<path fill="#ED2939" d="M426.7 0H640v480H426.7z"/>
</svg>
</button>
<button class="lang-btn" onclick="setLanguage('es')" title="Español">
<svg viewBox="0 0 640 480" xmlns="http://www.w3.org/2000/svg">
<path fill="#AA151B" d="M0 0h640v480H0z"/>
<path fill="#F1BF00" d="M0 120h640v240H0z"/>
</svg>
</button>
</div>
<div class="container">
<header>
<div class="logo">
<div class="logo-icon">🔐</div>
<h1 data-i18n="header.title">Crypto-Intelligence</h1>
</div>
<p class="subtitle" data-i18n="header.subtitle">Forensic investigation of complex cryptographic puzzles at intelligence agency level</p>
<span class="badge" data-i18n="header.badge">NSA/CIA LEVEL INVESTIGATION</span>
</header>
<div class="puzzles-grid">
<!-- Puzzle 01: haian.de -->
<article class="puzzle-card">
<div class="puzzle-header">
<div class="puzzle-title">
<div class="puzzle-number">01</div>
<h2 class="puzzle-name"><a href="raetsel_01_haian_de/README.md">haian.de</a></h2>
</div>
<span class="puzzle-status status-partial" data-i18n="puzzle1.status">⚠ FULLY SOLVED</span>
</div>
<div class="puzzle-body">
<p class="puzzle-description" data-i18n="puzzle1.description">
Seemingly legitimate memorial site for Fabian "Haian" Schüßler (*30.10.1986 †20.10.2011).
After forensic analysis, the website reveals itself as a multi-layered cryptographic puzzle with decoy structure.
</p>
<div class="discoveries">
<h4 data-i18n="puzzle1.discoveries.title">Forensic Discoveries (59 Findings)</h4>
<div class="discovery-list">
<div class="discovery-item">
<span class="icon">🔑</span>
<span class="text"><span class="highlight" data-i18n="puzzle1.discoveries.key.title">MASTER KEY 5:</span> <span data-i18n="puzzle1.discoveries.key.text">55-60→5, GCD=5, Age±5→Birth/Death dates — Thomas' code decoded!</span></span>
</div>
<div class="discovery-item">
<span class="icon">📊</span>
<span class="text"><span class="highlight" data-i18n="puzzle1.discoveries.math.title">Mathematical Perfection:</span> <span data-i18n="puzzle1.discoveries.math.text">Age = 25 (5²), 27 Messages (3³), Acrostic Value = 266 (2×7×19)</span></span>
</div>
<div class="discovery-item">
<span class="icon">🔢</span>
<span class="text"><span class="highlight" data-i18n="puzzle1.discoveries.xor.title">XOR Symmetry:</span> <span data-i18n="puzzle1.discoveries.xor.text">30^10=20, 20^10=30 — perfect symmetric encryption</span></span>
</div>
<div class="discovery-item">
<span class="icon">🔤</span>
<span class="text"><span class="highlight" data-i18n="puzzle1.discoveries.acrostic.title">Acrostic:</span> <span data-i18n="puzzle1.discoveries.acrostic.text">"IIHOINSMETDISHNLDMDADSNFAHE" (27 chars) — Caesar-5 = Key</span></span>
</div>
<div class="discovery-item">
<span class="icon">⏰</span>
<span class="text"><span class="highlight" data-i18n="puzzle1.discoveries.temporal.title">Temporal Anomaly:</span> <span data-i18n="puzzle1.discoveries.temporal.text">Chronology break (-56h), Timestamp Code: Q-R-I-T...</span></span>
</div>
<div class="discovery-item">
<span class="icon">🖼</span>
<span class="text"><span class="highlight" data-i18n="puzzle1.discoveries.image.title">Image Cryptography:</span> <span data-i18n="puzzle1.discoveries.image.text">700×1000 (7:10), 700000 Pixels, 78.87% dark, Diagonal = 1220.66</span></span>
</div>
<div class="discovery-item">
<span class="icon">♠️</span>
<span class="text"><span class="highlight" data-i18n="puzzle1.discoveries.subculture.title">Subculture Code:</span> <span data-i18n="puzzle1.discoveries.subculture.text">Poker (3×) + Skat (2×) — "24", "120", "reizen", Numbers=362</span></span>
</div>
<div class="discovery-item">
<span class="icon">💾</span>
<span class="text"><span class="highlight" data-i18n="puzzle1.discoveries.keymaterial.title">Key Material:</span> <span data-i18n="puzzle1.discoveries.keymaterial.text">Acrostic-5, LSB-5, combined Keys, Base58-compatible</span></span>
</div>
<div class="discovery-item">
<span class="icon">🌐</span>
<span class="text"><span class="highlight" data-i18n="puzzle1.discoveries.online.title">14+ Years Online:</span> <span data-i18n="puzzle1.discoveries.online.text">Hetzner + 1&1 IONOS, maintained since 2011</span></span>
</div>
</div>
</div>
<div class="stats-row">
<div class="stat">
<span>📁</span>
<span data-i18n="puzzle1.stats.findings.label">Findings:</span>
<span class="stat-value" data-i18n="puzzle1.stats.findings.value">59</span>
</div>
<div class="stat">
<span>💡</span>
<span data-i18n="puzzle1.stats.hypotheses.label">Hypotheses:</span>
<span class="stat-value" data-i18n="puzzle1.stats.hypotheses.value">44 checked</span>
</div>
<div class="stat">
<span>🔒</span>
<span data-i18n="puzzle1.stats.encoding.label">Encoding:</span>
<span class="stat-value" data-i18n="puzzle1.stats.encoding.value">10 layers</span>
</div>
<div class="stat">
<span>⏱</span>
<span data-i18n="puzzle1.stats.status.label">Status:</span>
<span class="stat-value" data-i18n="puzzle1.stats.status.value">FULLY SOLVED</span>
</div>
</div>
</div>
</article>
<!-- Rätsel 02: WirLiebenTanzen1Love1Family -->
<article class="puzzle-card">
<div class="puzzle-header">
<div class="puzzle-title">
<div class="puzzle-number">02</div>
<h2 class="puzzle-name"><a href="raetsel_02_WirLiebenTanzen1Love1Family/README.md">WirLiebenTanzen1Love1Family</a></h2>
</div>
<span class="puzzle-status status-solved" data-i18n="puzzle2.status">✅ FULLY SOLVED</span>
</div>
<div class="puzzle-body">
<p class="puzzle-description" data-i18n="puzzle2.description">
KI-Generierter Instagram-Account als forensische Beweissammlung gegen das NWO Cybermobbing Kartell.
225 Postings = 15² = 5³ — mathematische Perfektion als kryptischer Code!
</p>
<div class="discoveries">
<h4 data-i18n="puzzle2.discoveries.title">Forensic Discoveries (12 Findings)</h4>
<div class="discovery-list">
<div class="discovery-item">
<span class="icon">�</span>
<span class="text"><span class="highlight" data-i18n="puzzle2.discoveries.key.title">MASTER KEY 5:</span> <span data-i18n="puzzle2.discoveries.key.text">225=5³, 1798→25=5², HH4L=32=2⁵ — Verbindung zu Rätsel 01!</span></span>
</div>
<div class="discovery-item">
<span class="icon">�📊</span>
<span class="text"><span class="highlight" data-i18n="puzzle2.discoveries.postings.title">225 Postings:</span> <span data-i18n="puzzle2.discoveries.postings.text">225 = 15² = 5³ — perfekte Quadratzahl + Kubikzahl!</span></span>
</div>
<div class="discovery-item">
<span class="icon">👥</span>
<span class="text"><span class="highlight" data-i18n="puzzle2.discoveries.followers.title">593 Followers:</span> <span data-i18n="puzzle2.discoveries.followers.text">593 ist Primzahl, QS=17 (Primzahl!)</span></span>
</div>
<div class="discovery-item">
<span class="icon">�</span>
<span class="text"><span class="highlight" data-i18n="puzzle2.discoveries.following.title">1,798 Following:</span> <span data-i18n="puzzle2.discoveries.following.text">QS=1+7+9+8=25=5² — Master Key 5!</span></span>
</div>
<div class="discovery-item">
<span class="icon">⭐</span>
<span class="text"><span class="highlight" data-i18n="puzzle2.discoveries.highlights.title">13 Highlights:</span> <span data-i18n="puzzle2.discoveries.highlights.text">13 = Primzahl = 5+8 (Fibonacci!)</span></span>
</div>
<div class="discovery-item">
<span class="icon">🤖</span>
<span class="text"><span class="highlight" data-i18n="puzzle2.discoveries.ai.title">KI-Generiert:</span> <span data-i18n="puzzle2.discoveries.ai.text">75% Wahrscheinlichkeit — zu perfekt für menschliche Erstellung!</span></span>
</div>
<div class="discovery-item">
<span class="icon">🌐</span>
<span class="text"><span class="highlight" data-i18n="puzzle2.discoveries.context.title">Kontext-Website:</span> <span data-i18n="puzzle2.discoveries.context.text">kevingurke.github.io = Evidence Gallery (36=6² Artefakte)</span></span>
</div>
<div class="discovery-item">
<span class="icon">⚠️</span>
<span class="text"><span class="highlight" data-i18n="puzzle2.discoveries.deepfakes.title">NWO Kartell:</span> <span data-i18n="puzzle2.discoveries.deepfakes.text">KI-Elite Deepfakes dokumentiert — Mr. Bloxx, Jennifer K, Tomatolix etc.</span></span>
</div>
</div>
</div>
<div class="stats-row">
<div class="stat">
<span>📁</span>
<span data-i18n="puzzle2.stats.findings.label">Findings:</span>
<span class="stat-value" data-i18n="puzzle2.stats.findings.value">12</span>
</div>
<div class="stat">
<span>💡</span>
<span data-i18n="puzzle2.stats.hypotheses.label">Hypotheses:</span>
<span class="stat-value" data-i18n="puzzle2.stats.hypotheses.value">11 confirmed</span>
</div>
<div class="stat">
<span>🔒</span>
<span data-i18n="puzzle2.stats.encoding.label">Encoding:</span>
<span class="stat-value" data-i18n="puzzle2.stats.encoding.value">5 layers</span>
</div>
<div class="stat">
<span>⏱</span>
<span data-i18n="puzzle2.stats.status.label">Status:</span>
<span class="stat-value" data-i18n="puzzle2.stats.status.value">FULLY SOLVED</span>
</div>
</div>
</div>
</article>
<!-- Rätsel 03: necolas/normalize.css -->
<article class="puzzle-card">
<div class="puzzle-header">
<div class="puzzle-title">
<div class="puzzle-number">03</div>
<h2 class="puzzle-name"><a href="raetsel_03_necolas_normalize_css/README.md">necolas/normalize.css</a></h2>
</div>
<span class="puzzle-status status-investigating" data-i18n="puzzle3.status">🔍 IN PROGRESS</span>
</div>
<div class="puzzle-body">
<p class="puzzle-description" data-i18n="puzzle3.description">
Analyse der normalize.css Bibliothek auf versteckte kryptografische Rätsel oder Polyglot-Tricks.
Version 8.0.1 — die Zahl 8 symbolisiert Perfektion!
</p>
<div class="discoveries">
<h4 data-i18n="puzzle3.discoveries.title">First Discoveries</h4>
<div class="discovery-list">
<div class="discovery-item">
<span class="icon">🔢</span>
<span class="text"><span class="highlight" data-i18n="puzzle3.discoveries.version.title">Version 8.0.1:</span> <span data-i18n="puzzle3.discoveries.version.text">8 = Perfektion in chinesischer Kultur, 8+0+1=9=3²</span></span>
</div>
<div class="discovery-item">
<span class="icon">📋</span>
<span class="text"><span class="highlight" data-i18n="puzzle3.discoveries.sections.title">8 CSS-Sektionen:</span> <span data-i18n="puzzle3.discoveries.sections.text">Document, Sections, Grouping, Text, Embedded, Forms, Interactive, Misc</span></span>
</div>
<div class="discovery-item">
<span class="icon">🔐</span>
<span class="text"><span class="highlight" data-i18n="puzzle3.discoveries.polyglot.title">Polyglot-Analyse:</span> <span data-i18n="puzzle3.discoveries.polyglot.text">CSS-Header enthält mehrsprachige Struktur</span></span>
</div>
<div class="discovery-item">
<span class="icon">🔍</span>
<span class="text"><span class="highlight" data-i18n="puzzle3.discoveries.masterkey.title">Master Key 5:</span> <span data-i18n="puzzle3.discoveries.masterkey.text">625=5⁴, 25=5², 125 fehlt = bewusste Lücke!</span></span>
</div>
<div class="discovery-item">
<span class="icon">⚡</span>
<span class="text"><span class="highlight" data-i18n="puzzle3.discoveries.perfection.title">Perfection Divine:</span> <span data-i18n="puzzle3.discoveries.perfection.text">999/1001 Muster, 8/25×25=8, fehlende Debug-Zeilen</span></span>
</div>
</div>
</div>
<div class="stats-row">
<div class="stat">
<span>📁</span>
<span data-i18n="puzzle3.stats.findings.label">Findings:</span>
<span class="stat-value" data-i18n="puzzle3.stats.findings.value">16 documented</span>
</div>
<div class="stat">
<span>💡</span>
<span data-i18n="puzzle3.stats.hypotheses.label">Hypotheses:</span>
<span class="stat-value" data-i18n="puzzle3.stats.hypotheses.value">14 confirmed</span>
</div>
<div class="stat">
<span>⏱</span>
<span data-i18n="puzzle3.stats.status.label">Status:</span>
<span class="stat-value" data-i18n="puzzle3.stats.status.value">IN PROGRESS</span>
</div>
</div>
</div>
</article>
<!-- Rätsel 04: Clifford A. Pickover und Mersenne Twister -->
<article class="puzzle-card">
<div class="puzzle-header">
<div class="puzzle-title">
<div class="puzzle-number">04</div>
<h2 class="puzzle-name"><a href="raetsel_04_clifford_pickover_mersenne_twister/README.md">Clifford Pickover & Mersenne Twister</a></h2>
</div>
<span class="puzzle-status status-investigating" data-i18n="puzzle4.status">🔍 IN PROGRESS</span>
</div>
<div class="puzzle-body">
<p class="puzzle-description" data-i18n="puzzle4.description">
Analyse der Verbindung zwischen Clifford A. Pickover und dem Mersenne Twister auf versteckte kryptografische Rätsel.
700+ Patente, Vampire Numbers, und eine Periode von 2¹⁹⁹³⁷−¹!
</p>
<div class="discoveries">
<h4 data-i18n="puzzle4.discoveries.title">First Discoveries</h4>
<div class="discovery-list">
<div class="discovery-item">
<span class="icon">🧮</span>
<span class="text"><span class="highlight" data-i18n="puzzle4.discoveries.patents.title">700+ Patente:</span> <span data-i18n="puzzle4.discoveries.patents.text">Pickover's 700+ Patente = 7×100+ (7 = Primzahl)</span></span>
</div>
<div class="discovery-item">
<span class="icon">🧛</span>
<span class="text"><span class="highlight" data-i18n="puzzle4.discoveries.vampire.title">Vampire Numbers:</span> <span data-i18n="puzzle4.discoveries.vampire.text">1260 = 21×60, 136948 = 146×938 (von Pickover geprägt 1994)</span></span>
</div>
<div class="discovery-item">
<span class="icon">🔄</span>
<span class="text"><span class="highlight" data-i18n="puzzle4.discoveries.period.title">19937 Periode:</span> <span data-i18n="puzzle4.discoveries.period.text">Mersenne Twister: 1+9+9+3+7=29 (Primzahl!)</span></span>
</div>
<div class="discovery-item">
<span class="icon">🔍</span>
<span class="text"><span class="highlight" data-i18n="puzzle4.discoveries.perfection.title">Perfection Divine:</span> <span data-i18n="puzzle4.discoveries.perfection.text">19937-18938=999, 624+375=999, QS=29=5+5+5+5+5+4</span></span>
</div>
<div class="discovery-item">
<span class="icon">🔗</span>
<span class="text"><span class="highlight" data-i18n="puzzle4.discoveries.cross.title">Cross-Puzzle:</span> <span data-i18n="puzzle4.discoveries.cross.text">5+7=12 = 3-4-5 Pythagoras, 8 verbindet alle!</span></span>
</div>
</div>
</div>
<div class="stats-row">
<div class="stat">
<span>📁</span>
<span data-i18n="puzzle4.stats.findings.label">Findings:</span>
<span class="stat-value" data-i18n="puzzle4.stats.findings.value">7 documented</span>
</div>
<div class="stat">
<span>💡</span>
<span data-i18n="puzzle4.stats.hypotheses.label">Hypotheses:</span>
<span class="stat-value" data-i18n="puzzle4.stats.hypotheses.value">5 confirmed</span>
</div>
<div class="stat">
<span>⏱</span>
<span data-i18n="puzzle4.stats.status.label">Status:</span>
<span class="stat-value" data-i18n="puzzle4.stats.status.value">IN PROGRESS</span>
</div>
</div>
</div>
</article>
</div>
<footer>
<p>🛡️ <span data-i18n="footer.line1">Crypto-Intelligence Investigation Project</span> | <a href="AGENTS.md">AGENTS.md</a> | <a href="README.md">README.md</a> | <a href="https://github.com/nwogermany/GitHub_Number_Puzzles_GRU" target="_blank">GitHub Repository</a></p>
<p style="margin-top: 10px; opacity: 0.6;" data-i18n="footer.line2">Forensic analysis at NSA/CIA intelligence agency level</p>
</footer>
</div>
<script>
// Translations
const translations = {
en: {
title: "Crypto-Intelligence Investigation Project",
"header.title": "Crypto-Intelligence",
"header.subtitle": "Forensic investigation of complex cryptographic puzzles at intelligence agency level",
"header.badge": "NSA/CIA LEVEL INVESTIGATION",
"puzzle1.status": "⚠ FULLY SOLVED",
"puzzle1.description": "Seemingly legitimate memorial site for Fabian \"Haian\" Schüßler (*30.10.1986 †20.10.2011). After forensic analysis, the website reveals itself as a multi-layered cryptographic puzzle with decoy structure.",
"puzzle1.discoveries.title": "Forensic Discoveries (59 Findings)",
"puzzle1.discoveries.key.title": "MASTER KEY 5:",
"puzzle1.discoveries.key.text": "55-60→5, GCD=5, Age±5→Birth/Death dates — Thomas' code decoded!",
"puzzle1.discoveries.math.title": "Mathematical Perfection:",
"puzzle1.discoveries.math.text": "Age = 25 (5²), 27 Messages (3³), Acrostic Value = 266 (2×7×19)",
"puzzle1.discoveries.xor.title": "XOR Symmetry:",
"puzzle1.discoveries.xor.text": "30^10=20, 20^10=30 — perfect symmetric encryption",
"puzzle1.discoveries.acrostic.title": "Acrostic:",
"puzzle1.discoveries.acrostic.text": "\"IIHOINSMETDISHNLDMDADSNFAHE\" (27 chars) — Caesar-5 = Key",
"puzzle1.discoveries.temporal.title": "Temporal Anomaly:",
"puzzle1.discoveries.temporal.text": "Chronology break (-56h), Timestamp Code: Q-R-I-T...",
"puzzle1.discoveries.image.title": "Image Cryptography:",
"puzzle1.discoveries.image.text": "700×1000 (7:10), 700000 Pixels, 78.87% dark, Diagonal = 1220.66",
"puzzle1.discoveries.subculture.title": "Subculture Code:",
"puzzle1.discoveries.subculture.text": "Poker (3×) + Skat (2×) — \"24\", \"120\", \"reizen\", Numbers=362",
"puzzle1.discoveries.keymaterial.title": "Key Material:",
"puzzle1.discoveries.keymaterial.text": "Acrostic-5, LSB-5, combined Keys, Base58-compatible",
"puzzle1.discoveries.online.title": "14+ Years Online:",
"puzzle1.discoveries.online.text": "Hetzner + 1&1 IONOS, maintained since 2011",
"puzzle1.stats.findings.label": "Findings:",
"puzzle1.stats.findings.value": "59",
"puzzle1.stats.hypotheses.label": "Hypotheses:",
"puzzle1.stats.hypotheses.value": "44 checked",
"puzzle1.stats.encoding.label": "Encoding:",
"puzzle1.stats.encoding.value": "10 layers",
"puzzle1.stats.status.label": "Status:",
"puzzle1.stats.status.value": "FULLY SOLVED",
"puzzle2.status": "🔍 IN PROGRESS",
"puzzle2.description": "Cryptographic puzzle in connection with NWO AI Elite Deepfakes. The Instagram account @wirliebentanzen1love1family has exactly 225 postings — this is no coincidence!",
"puzzle2.discoveries.title": "First Discoveries",
"puzzle2.discoveries.postings.title": "225 Postings:",
"puzzle2.discoveries.postings.text": "225 = 15² = 5³ — perfect square + cube number!",
"puzzle2.discoveries.instagram.title": "Instagram:",
"puzzle2.discoveries.instagram.text": "@wirliebentanzen1love1family",
"puzzle2.discoveries.note.title": "Note:",
"puzzle2.discoveries.note.text": "GitHub/kevingurke.github.io = Info material only, NOT part of the puzzle",
"puzzle2.stats.findings.label": "Findings:",
"puzzle2.stats.findings.value": "2 documented",
"puzzle2.stats.hypotheses.label": "Hypotheses:",
"puzzle2.stats.hypotheses.value": "2 confirmed",
"puzzle2.stats.status.label": "Status:",
"puzzle2.stats.status.value": "IN PROGRESS",
"puzzle3.status": "🔍 IN PROGRESS",
"puzzle3.description": "Analysis of normalize.css library for hidden cryptographic puzzles or polyglot tricks. Version 8.0.1 — the number 8 symbolizes perfection!",
"puzzle3.discoveries.title": "First Discoveries",
"puzzle3.discoveries.version.title": "Version 8.0.1:",
"puzzle3.discoveries.version.text": "8 = Perfection in Chinese culture, 8+0+1=9=3²",
"puzzle3.discoveries.sections.title": "8 CSS Sections:",
"puzzle3.discoveries.sections.text": "Document, Sections, Grouping, Text, Embedded, Forms, Interactive, Misc",
"puzzle3.discoveries.polyglot.title": "Polyglot Analysis:",
"puzzle3.discoveries.polyglot.text": "CSS header contains multilingual structure",
"puzzle3.discoveries.masterkey.title": "Master Key 5:",
"puzzle3.discoveries.masterkey.text": "625=5⁴, 25=5², 125 missing = intentional gap!",
"puzzle3.discoveries.perfection.title": "Perfection Divine:",
"puzzle3.discoveries.perfection.text": "999/1001 patterns, 8/25×25=8, missing debug lines",
"puzzle3.stats.findings.label": "Findings:",
"puzzle3.stats.findings.value": "16 documented",
"puzzle3.stats.hypotheses.label": "Hypotheses:",
"puzzle3.stats.hypotheses.value": "14 confirmed",
"puzzle3.stats.status.label": "Status:",
"puzzle3.stats.status.value": "IN PROGRESS",
"puzzle4.status": "🔍 IN PROGRESS",
"puzzle4.description": "Analysis of the connection between Clifford A. Pickover and Mersenne Twister for hidden cryptographic puzzles. 700+ patents, Vampire Numbers, and a period of 2¹⁹⁹³⁷−¹!",
"puzzle4.discoveries.title": "First Discoveries",
"puzzle4.discoveries.patents.title": "700+ Patents:",
"puzzle4.discoveries.patents.text": "Pickover's 700+ patents = 7×100+ (7 = prime number)",
"puzzle4.discoveries.vampire.title": "Vampire Numbers:",
"puzzle4.discoveries.vampire.text": "1260 = 21×60, 136948 = 146×938 (coined by Pickover 1994)",
"puzzle4.discoveries.period.title": "19937 Period:",
"puzzle4.discoveries.period.text": "Mersenne Twister: 1+9+9+3+7=29 (prime number!)",
"puzzle4.discoveries.perfection.title": "Perfection Divine:",
"puzzle4.discoveries.perfection.text": "19937-18938=999, 624+375=999, QS=29=5+5+5+5+5+4",
"puzzle4.discoveries.cross.title": "Cross-Puzzle:",
"puzzle4.discoveries.cross.text": "5+7=12 = 3-4-5 Pythagoras, 8 connects all!",
"puzzle4.stats.findings.label": "Findings:",
"puzzle4.stats.findings.value": "7 documented",
"puzzle4.stats.hypotheses.label": "Hypotheses:",
"puzzle4.stats.hypotheses.value": "5 confirmed",
"puzzle4.stats.status.label": "Status:",
"puzzle4.stats.status.value": "IN PROGRESS",
"footer.line1": "Crypto-Intelligence Investigation Project",
"footer.line2": "Forensic analysis at NSA/CIA intelligence agency level"
},
de: {
title: "Krypto-Intelligenz-Aufdeckungs-Projekt",
"header.title": "Krypto-Intelligenz",
"header.subtitle": "Forensische Aufdeckung komplexer kryptografischer Rätsel auf Geheimdienst-Niveau",
"header.badge": "NSA/CIA LEVEL INVESTIGATION",
"puzzle1.status": "⚠ VOLLSTÄNDIG GELÖST",
"puzzle1.description": "Scheinbar legitime Trauerseite für Fabian \"Haian\" Schüßler (*30.10.1986 †20.10.2011). Nach forensischer Analyse entpuppt sich die Website als mehrschichtiges kryptografisches Rätsel mit Finte-Struktur.",
"puzzle1.discoveries.title": "Forensische Entdeckungen (59 Funde)",
"puzzle1.discoveries.key.title": "HAUPTSCHLÜSSEL 5:",
"puzzle1.discoveries.key.text": "55-60→5, GGT=5, Alter±5→Geburt/Sterbetag — Thomas' Code entschlüsselt!",
"puzzle1.discoveries.math.title": "Mathematische Perfektion:",
"puzzle1.discoveries.math.text": "Alter = 25 (5²), 27 Nachrichten (3³), Akrostichon-Wert = 266 (2×7×19)",
"puzzle1.discoveries.xor.title": "XOR-Symmetrie:",
"puzzle1.discoveries.xor.text": "30^10=20, 20^10=30 — perfekte symmetrische Verschlüsselung",
"puzzle1.discoveries.acrostic.title": "Akrostichon:",
"puzzle1.discoveries.acrostic.text": "\"IIHOINSMETDISHNLDMDADSNFAHE\" (27 Zeichen) — Caesar-5 = Key",
"puzzle1.discoveries.temporal.title": "Temporale Anomalie:",
"puzzle1.discoveries.temporal.text": "Chronologie-Bruch (-56h), Zeitstempel-Code: Q-R-I-T...",
"puzzle1.discoveries.image.title": "Bild-Kryptografie:",
"puzzle1.discoveries.image.text": "700×1000 (7:10), 700000 Pixel, 78,87% dunkel, Diagonale = 1220,66",
"puzzle1.discoveries.subculture.title": "Subkultur-Code:",
"puzzle1.discoveries.subculture.text": "Poker (3×) + Skat (2×) — \"24\", \"120\", \"reizen\", Zahlen=362",
"puzzle1.discoveries.keymaterial.title": "Key-Material:",
"puzzle1.discoveries.keymaterial.text": "Akrostichon-5, LSB-5, kombinierte Keys, Base58-kompatibel",
"puzzle1.discoveries.online.title": "14+ Jahre Online:",
"puzzle1.discoveries.online.text": "Hetzner + 1&1 IONOS, bewusste Pflege seit 2011",
"puzzle1.stats.findings.label": "Funde:",
"puzzle1.stats.findings.value": "59",
"puzzle1.stats.hypotheses.label": "Hypothesen:",
"puzzle1.stats.hypotheses.value": "44 geprüft",
"puzzle1.stats.encoding.label": "Kodierung:",
"puzzle1.stats.encoding.value": "10 Schichten",
"puzzle1.stats.status.label": "Status:",
"puzzle1.stats.status.value": "VOLLSTÄNDIG GELÖST",
"puzzle2.status": "✅ VOLLSTÄNDIG GELÖST",
"puzzle2.description": "KI-Generierter Instagram-Account als forensische Beweissammlung gegen das NWO Cybermobbing Kartell. 225 Postings = 15² = 5³ — mathematische Perfektion als kryptischer Code!",
"puzzle2.discoveries.title": "Forensische Entdeckungen (12 Funde)",
"puzzle2.discoveries.key.title": "MASTER KEY 5:",
"puzzle2.discoveries.key.text": "225=5³, 1798→25=5², HH4L=32=2⁵ — Verbindung zu Rätsel 01!",
"puzzle2.discoveries.postings.title": "225 Postings:",
"puzzle2.discoveries.postings.text": "225 = 15² = 5³ — perfekte Quadratzahl + Kubikzahl!",
"puzzle2.discoveries.followers.title": "593 Follower:",
"puzzle2.discoveries.followers.text": "593 ist Primzahl, QS=17 (Primzahl!)",
"puzzle2.discoveries.following.title": "1.798 Following:",
"puzzle2.discoveries.following.text": "QS=1+7+9+8=25=5² — Master Key 5!",
"puzzle2.discoveries.highlights.title": "13 Highlights:",
"puzzle2.discoveries.highlights.text": "13 = Primzahl = 5+8 (Fibonacci!)",
"puzzle2.discoveries.ai.title": "KI-Generiert:",
"puzzle2.discoveries.ai.text": "75% Wahrscheinlichkeit — zu perfekt für menschliche Erstellung!",
"puzzle2.discoveries.context.title": "Kontext-Website:",
"puzzle2.discoveries.context.text": "kevingurke.github.io = Evidence Gallery (36=6² Artefakte)",
"puzzle2.discoveries.deepfakes.title": "NWO Kartell:",
"puzzle2.discoveries.deepfakes.text": "KI-Elite Deepfakes dokumentiert — Mr. Bloxx, Jennifer K, Tomatolix etc.",
"puzzle2.stats.findings.label": "Funde:",
"puzzle2.stats.findings.value": "12",
"puzzle2.stats.hypotheses.label": "Hypothesen:",
"puzzle2.stats.hypotheses.value": "11 bestätigt",
"puzzle2.stats.encoding.label": "Kodierung:",
"puzzle2.stats.encoding.value": "5 Schichten",
"puzzle2.stats.status.label": "Status:",
"puzzle2.stats.status.value": "VOLLSTÄNDIG GELÖST",
"footer.line1": "Krypto-Intelligenz-Aufdeckungs-Projekt",
"footer.line2": "Forensische Analyse auf NSA/CIA-Geheimdienst-Niveau"
},
fr: {
title: "Projet d'Investigation Crypto-Intelligence",
"header.title": "Crypto-Intelligence",
"header.subtitle": "Investigation forensique de puzzles cryptographiques complexes au niveau des agences de renseignement",
"header.badge": "NSA/CIA LEVEL INVESTIGATION",
"puzzle1.status": "⚠ ENTIÈREMENT RÉSOLU",
"puzzle1.description": "Site commémoratif apparemment légitime pour Fabian \"Haian\" Schüßler (*30.10.1986 †20.10.2011). Après analyse forensique, le site se révèle comme un puzzle cryptographique multicouche avec structure de leurre.",
"puzzle1.discoveries.title": "Découvertes Forensiques (59 Trouvailles)",
"puzzle1.discoveries.key.title": "CLÉ MAÎTRE 5:",
"puzzle1.discoveries.key.text": "55-60→5, PGCD=5, Âge±5→Dates Naissance/Décès — Code de Thomas décodé!",
"puzzle1.discoveries.math.title": "Perfection Mathématique:",
"puzzle1.discoveries.math.text": "Âge = 25 (5²), 27 Messages (3³), Valeur Acrostiche = 266 (2×7×19)",
"puzzle1.discoveries.xor.title": "Symétrie XOR:",
"puzzle1.discoveries.xor.text": "30^10=20, 20^10=30 — cryptage symétrique parfait",
"puzzle1.discoveries.acrostic.title": "Acróstico:",
"puzzle1.discoveries.acrostic.text": "\"IIHOINSMETDISHNLDMDADSNFAHE\" (27 caractères) — Caesar-5 = Clé",
"puzzle1.discoveries.temporal.title": "Anomalie Temporelle:",
"puzzle1.discoveries.temporal.text": "Rupture chronologique (-56h), Code Horodatage: Q-R-I-T...",
"puzzle1.discoveries.image.title": "Cryptographie Image:",
"puzzle1.discoveries.image.text": "700×1000 (7:10), 700000 Pixels, 78,87% sombre, Diagonale = 1220,66",
"puzzle1.discoveries.subculture.title": "Code Subculture:",
"puzzle1.discoveries.subculture.text": "Poker (3×) + Skat (2×) — \"24\", \"120\", \"reizen\", Nombres=362",
"puzzle1.discoveries.keymaterial.title": "Matériel de Clé:",
"puzzle1.discoveries.keymaterial.text": "Acróstico-5, LSB-5, Clés combinées, Base58-compatible",
"puzzle1.discoveries.online.title": "14+ Ans En Ligne:",
"puzzle1.discoveries.online.text": "Hetzner + 1&1 IONOS, maintenu depuis 2011",
"puzzle1.stats.findings.label": "Trouvailles:",
"puzzle1.stats.findings.value": "59",
"puzzle1.stats.hypotheses.label": "Hypothèses:",
"puzzle1.stats.hypotheses.value": "44 vérifiées",
"puzzle1.stats.encoding.label": "Encodage:",
"puzzle1.stats.encoding.value": "10 couches",
"puzzle1.stats.status.label": "Statut:",
"puzzle1.stats.status.value": "ENTIÈREMENT RÉSOLU",
"puzzle2.status": "✅ ENTIÈREMENT RÉSOLU",
"puzzle2.description": "Compte Instagram généré par IA en tant que collection de preuves forensiques contre le cartel NWO Cybermobbing. 225 publications = 15² = 5³ — perfection mathématique comme code cryptique!",
"puzzle2.discoveries.title": "Découvertes Forensiques (12 Trouvailles)",
"puzzle2.discoveries.key.title": "CLÉ MAÎTRE 5:",
"puzzle2.discoveries.key.text": "225=5³, 1798→25=5², HH4L=32=2⁵ — Connexion à Rätsel 01!",
"puzzle2.discoveries.postings.title": "225 Publications:",
"puzzle2.discoveries.postings.text": "225 = 15² = 5³ — carré parfait + cube!",
"puzzle2.discoveries.followers.title": "593 Followers:",
"puzzle2.discoveries.followers.text": "593 est nombre premier, QS=17 (nombre premier!)",
"puzzle2.discoveries.following.title": "1.798 Following:",
"puzzle2.discoveries.following.text": "QS=1+7+9+8=25=5² — Clé Maître 5!",
"puzzle2.discoveries.highlights.title": "13 Highlights:",
"puzzle2.discoveries.highlights.text": "13 = nombre premier = 5+8 (Fibonacci!)",
"puzzle2.discoveries.ai.title": "Généré par IA:",
"puzzle2.discoveries.ai.text": "75% de probabilité — trop parfait pour une création humaine!",
"puzzle2.discoveries.context.title": "Site Contexte:",
"puzzle2.discoveries.context.text": "kevingurke.github.io = Evidence Gallery (36=6² artefacts)",
"puzzle2.discoveries.deepfakes.title": "Cartel NWO:",
"puzzle2.discoveries.deepfakes.text": "Deepfakes KI-Elite documentés — Mr. Bloxx, Jennifer K, Tomatolix etc.",
"puzzle2.stats.findings.label": "Trouvailles:",
"puzzle2.stats.findings.value": "12",
"puzzle2.stats.hypotheses.label": "Hypothèses:",
"puzzle2.stats.hypotheses.value": "11 confirmées",
"puzzle2.stats.encoding.label": "Encodage:",
"puzzle2.stats.encoding.value": "5 couches",
"puzzle2.stats.status.label": "Statut:",
"puzzle2.stats.status.value": "ENTIÈREMENT RÉSOLU",
"puzzle3.status": "🔍 EN COURS",
"puzzle3.description": "Analyse de la bibliothèque normalize.css à la recherche de puzzles cryptographiques cachés ou de tours polyglottes. Version 8.0.1 — le chiffre 8 symbolise la perfection!",
"puzzle3.discoveries.title": "Premières Découvertes",
"puzzle3.discoveries.version.title": "Version 8.0.1:",
"puzzle3.discoveries.version.text": "8 = Perfection dans la culture chinoise, 8+0+1=9=3²",
"puzzle3.discoveries.sections.title": "8 Sections CSS:",
"puzzle3.discoveries.sections.text": "Document, Sections, Grouping, Text, Embedded, Forms, Interactive, Misc",
"puzzle3.discoveries.polyglot.title": "Analyse Polyglotte:",
"puzzle3.discoveries.polyglot.text": "En-tête CSS contient structure multilingue",
"puzzle3.discoveries.masterkey.title": "Clé Maître 5:",
"puzzle3.discoveries.masterkey.text": "625=5⁴, 25=5², 125 manque = lacune intentionnelle!",
"puzzle3.discoveries.perfection.title": "Perfection Divine:",
"puzzle3.discoveries.perfection.text": "999/1001 modèles, 8/25×25=8, lignes de débogage manquantes",
"puzzle3.stats.findings.label": "Trouvailles:",
"puzzle3.stats.findings.value": "16 documentées",
"puzzle3.stats.hypotheses.label": "Hypothèses:",
"puzzle3.stats.hypotheses.value": "14 confirmées",
"puzzle3.stats.status.label": "Statut:",
"puzzle3.stats.status.value": "EN COURS",
"puzzle4.status": "🔍 EN COURS",
"puzzle4.description": "Analyse de la connexion entre Clifford A. Pickover et Mersenne Twister à la recherche de puzzles cryptographiques cachés. 700+ brevets, Vampire Numbers, et une période de 2¹⁹⁹³⁷−¹!",
"puzzle4.discoveries.title": "Premières Découvertes",
"puzzle4.discoveries.patents.title": "700+ Brevets:",
"puzzle4.discoveries.patents.text": "700+ brevets de Pickover = 7×100+ (7 = nombre premier)",
"puzzle4.discoveries.vampire.title": "Vampire Numbers:",
"puzzle4.discoveries.vampire.text": "1260 = 21×60, 136948 = 146×938 (créé par Pickover 1994)",
"puzzle4.discoveries.period.title": "19937 Période:",
"puzzle4.discoveries.period.text": "Mersenne Twister: 1+9+9+3+7=29 (nombre premier!)",
"puzzle4.discoveries.security.title": "624 State Vector:",
"puzzle4.discoveries.security.text": "Complètement prévisible après 624 itérations",
"puzzle4.discoveries.perfection.title": "Perfection Divine:",
"puzzle4.discoveries.perfection.text": "19937-18938=999, 624+375=999, QS=29=5+5+5+5+5+4",
"puzzle4.discoveries.cross.title": "Cross-Puzzle:",
"puzzle4.discoveries.cross.text": "5+7=12 = 3-4-5 Pythagore, 8 relie tout!",
"puzzle4.stats.findings.label": "Trouvailles:",
"puzzle4.stats.findings.value": "7 documentées",
"puzzle4.stats.hypotheses.label": "Hypothèses:",
"puzzle4.stats.hypotheses.value": "5 confirmées",
"puzzle4.stats.status.label": "Statut:",
"puzzle4.stats.status.value": "EN COURS",
"footer.line1": "Projet d'Investigation Crypto-Intelligence",
"footer.line2": "Analyse forensique au niveau NSA/CIA des agences de renseignement"
},
es: {
title: "Proyecto de Investigación Crypto-Inteligencia",
"header.title": "Crypto-Inteligencia",
"header.subtitle": "Investigación forense de puzzles criptográficos complejos a nivel de agencias de inteligencia",
"header.badge": "NSA/CIA LEVEL INVESTIGATION",
"puzzle1.status": "⚠ COMPLETAMENTE RESUELTO",
"puzzle1.description": "Sitio conmemorativo aparentemente legítimo para Fabian \"Haian\" Schüßler (*30.10.1986 †20.10.2011). Después del análisis forense, el sitio web se revela como un puzzle criptográfico multicapa con estructura de señuelo.",
"puzzle1.discoveries.title": "Descubrimientos Forenses (59 Hallazgos)",
"puzzle1.discoveries.key.title": "CLAVE MAESTRA 5:",
"puzzle1.discoveries.key.text": "55-60→5, MCD=5, Edad±5→Fechas Nacimiento/Muerte — ¡Código de Thomas descodificado!",
"puzzle1.discoveries.math.title": "Perfección Matemática:",
"puzzle1.discoveries.math.text": "Edad = 25 (5²), 27 Mensajes (3³), Valor Acróstico = 266 (2×7×19)",
"puzzle1.discoveries.xor.title": "Simetría XOR:",