-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmagicdatabase.txt
2096 lines (1954 loc) · 78.2 KB
/
magicdatabase.txt
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
# ACE/gr and Grace type files
1 s # xvgr parameter file ACE/gr ascii file
1 s # xmgr parameter file ACE/gr ascii file
1 s # ACE/gr parameter file ACE/gr ascii file
1 s # Grace project file Grace project file
1 s # ACE/gr fit description ACE/gr fit description file
# Acrobat files
1 s %PDF- PDF document
1 s %PDF-1.2 PDF document, version 1.2 (Acrobat 3.x)
1 s %PDF-1.3 PDF document, version 1.3
1 s %PDF-1.4 PDF document, version 1.4 (Acrobat 5.x)
1 s %PDF-1.5 PDF document, version 1.5
1 s %FDF- FDF document
# Adventure Systems
1 s Glul Glulx game data
1 s TADS2 bin TADS (Text Adventure Development System) game binary
1 s TADS2 rsc TADS (Text Adventure Development System) resource data
1 s TADS2 save TADS (Text Adventure Development System) save data
1 s constant story Inform source text
# Alliant FX series a.out files
1 s 0420 0420 Alliant virtual executable
1 s 0421 0421 Alliant virtual executable
# Alpha executables and core dumps
1 s Core Alpha COFF format core dump (Digital UNIX)
# Animation files
1 s MOVI Silicon Graphics movie file
5 s moov Apple QuickTime
5 s mdat Apple QuickTime movie (unoptimized)
5 s wide Apple QuickTime movie (unoptimized)
5 s skip Apple QuickTime movie (modified)
5 s free Apple QuickTime movie (modified)
5 s idsc Apple QuickTime image (fast start)
5 s idat Apple QuickTime image (unoptimized)
5 s pckg Apple QuickTime compressed archive
5 s jP JPEG 2000 image
9 s isom ISO Media MPEG v4 system, version 1
9 s iso2 ISO Media MPEG v4 system, part 12 revision
9 s mp41 ISO Media MPEG v4 system, version 1
9 s mp42 ISO Media MPEG v4 system, version 2
9 s mp7t ISO Media MPEG v4 system, MPEG v7 XML
9 s mp7p ISO Media MPEG v4 system, MPEG v7 binary XML
9 s jp2 ISO Media JPEG 2000
9 s 3gp ISO Media MPEG v4 system, 3GPP
9 s mmp4 ISO Media MPEG v4 system, 3GPP Mobile
9 s avc1 ISO Media MPEG v4 system, 3GPP JVT AVC
9 s M4A ISO Media MPEG v4 system, iTunes AAC-LC
9 s M4V ISO Media MPEG v4 system, iTunes AAC-LC
9 s M4P ISO Media MPEG v4 system, iTunes AES encrypted
9 s M4B ISO Media MPEG v4 system, iTunes bookmarked
9 s qt ISO Media MPEG v4 system, Apple QuickTime movie
1 s ADIF MPEG ADIF, AAC
1-16 s MNG MNG video data
1-16 s JNG JNG video data
3-32 s Version:Vivo Vivo video data
1-16 s VRML V1.0 VRML 1 file
1-16 s VRML V2.0 VRML 97 file
21 s <!DOCTYPE X3D X3D (Extensible 3D) model xml text
1 s HVQM4 HVQM4 movie data
1 s DVDVIDEO-VTS Video title set
1 s DVDVIDEO-VMG Video manager
1 s NuppelVideo MythTV NuppelVideo
1 s MythTV MythTV NuppelVideo
9 s matroska Matroska data
# Antivirus files
1 s ClamAV-VDB: Clam AntiVirus database
1 s AVG7_ANTIVIRUS_VAULT_FILE AVG 7 Antivirus vault file data
# Amanda file format
1 s AMANDA AMANDA file
# AmigaOS files
1 s FC14 Future Composer 1.4 Module sound file (Amiga)
1 s SMOD Future Composer 1.3 Module sound file (Amiga)
1 s AON4artofnoise Art Of Noise Module sound file (Amiga)
2-56 s MUGICIAN/SOFTEYES Mugician Module sound file (Amiga)
58-128 s SIDMON II - THE Sidmon 2.0 Module sound file (Amiga)
1 s Synth4.0 Synthesis Module sound file (Amiga)
1 s ARP. The Holy Noise Module sound file (Amiga)
1 s BeEp JamCracker Module sound file (Amiga)
1 s COSO Hippel-COSO Module sound file (Amiga)
27 s V.2 Brian Postma's Soundmon Module sound file v2
27 s BPSM Brian Postma's Soundmon Module sound file v3
27 s V.3 Brian Postma's Soundmon Module sound file v3
1 s EMOD Amiga E module
9 s ECXM ECX module (Amiga)
1 s @database AmigaGuide file
1 s RDSK Rigid Disk Block (Amiga)
1 s DOS Amiga disk
1 s KICK Kickstart disk (Amiga)
1 s LZX LZX compressed archive (Amiga)
# Apple files
1 s FiLeStArTfIlEsTaRt binscii (apple ][) text
1 s NuFile NuFile archive (apple ][) data
1 s 2IMG Apple ][ 2IMG Disk Image
1 s 2IMGXGS! Apple ][ 2IMG Disk Image, XGS
1 s 2IMGCTKG Apple ][ 2IMG Disk Image, Catakig
1 s 2IMGShIm Apple ][ 2IMG Disk Image, Sheppy's ImageMaker
1 s 2IMGWOOF Apple ][ 2IMG Disk Image, Sweet 16
1 s 2IMGB2TR Apple ][ 2IMG Disk Image, Bernie ][ the Rescue
1 s 2IMG!nfc Apple ][ 2IMG Disk Image, ASIMOV2
1 s package0 Newton package, NOS 1.x
1 s package1 Newton package, NOS 2.x
1 s package4 Newton package, NOS 1.x or 2.x
4 s O==== AppleWorks word processor data
132 s RA AppleWorks spreadsheet data, automated row-order recalculation
132 s RM AppleWorks spreadsheet data, manual row-order recalculation
132 s CA AppleWorks spreadsheet data, automated column-order recalculation
132 s CM AppleWorks spreadsheet data, automated manual-order recalculation
1 s bplist00 Apple binary property list
1 s bplist Apple binary property list
1 s caff CoreAudio Format audio file
1 s kych Mac OS X Keychain File
1 s innotek VirtualBox Disk Image innotek VirtualBox Disk Image
1-32 s xmcd CDDB(tm) format CD text data
12 s must be converted with BinHex BinHex binary text
1 s SIT! StuffIt Archive (data)
1 s SITD StuffIt Deluxe (data)
1 s Seg StuffIt Deluxe Segment (data)
1 s StuffIt StuffIt Archive
1 s APPL Macintosh Application (data)
1 s zsys Macintosh System File (data)
1 s FNDR Macintosh Finder (data)
1 s libr Macintosh Library (data)
1 s shlb Macintosh Shared Library (data)
1 s cdev Macintosh Control Panel (data)
1 s INIT Macintosh Extension (data)
1 s FFIL Macintosh Truetype Font (data)
1 s LWFN Macintosh Postscript Font (data)
1 s PACT Macintosh Compact Pro Archive (data)
1 s ttro Macintosh TeachText File (data)
1 s TEXT Macintosh TeachText File (data)
1 s PDF Macintosh PDF File (data)
66 s 8BIM Macintosh MacBinary data, PhotoShop
66 s ALB3 Macintosh MacBinary data, PageMaker 3
66 s ALB4 Macintosh MacBinary data, PageMaker 4
66 s ALT3 Macintosh MacBinary data, PageMaker 3
66 s APPL Macintosh MacBinary data, application
66 s AWWP Macintosh MacBinary data, AppleWorks word processor
66 s CIRC Macintosh MacBinary data, simulated circuit
66 s DRWG Macintosh MacBinary data, MacDraw
66 s EPSF Macintosh MacBinary data, Encapsulated PostScript
66 s FFIL Macintosh MacBinary data, font suitcase
66 s FKEY Macintosh MacBinary data, function key
66 s FNDR Macintosh MacBinary data, Macintosh Finder
66 s GIFf Macintosh MacBinary data, GIF image
66 s Gzip Macintosh MacBinary data, GNU gzip
66 s INIT Macintosh MacBinary data, system extension
66 s LIB\ Macintosh MacBinary data, library
66 s LWFN Macintosh MacBinary data, PostScript font
66 s MSBC Macintosh MacBinary data, Microsoft BASIC
66 s PACT Macintosh MacBinary data, Compact Pro archive
66 s PDF\ Macintosh MacBinary data, Portable Document Format
66 s PICT Macintosh MacBinary data, picture
66 s PNTG Macintosh MacBinary data, MacPaint picture
66 s PREF Macintosh MacBinary data, preferences
66 s PROJ Macintosh MacBinary data, Think C project
66 s QPRJ Macintosh MacBinary data, Think Pascal project
66 s SCFL Macintosh MacBinary data, Defender scores
66 s SCRN Macintosh MacBinary data, startup screen
66 s SITD Macintosh MacBinary data, StuffIt Deluxe
66 s SPn3 Macintosh MacBinary data, SuperPaint
66 s STAK Macintosh MacBinary data, HyperCard stack
66 s Seg\ Macintosh MacBinary data, StuffIt segment
66 s TARF Macintosh MacBinary data, Unix tar archive)
66 s TEXT Macintosh MacBinary data, ASCII
66 s TIFF Macintosh MacBinary data, TIFF image
66 s TOVF Macintosh MacBinary data, Eudora table of contents)
66 s WDBN Macintosh MacBinary data, Microsoft Word word processor
66 s WORD Macintosh MacBinary data, MacWrite word processor)
66 s XLS\ Macintosh MacBinary data, Microsoft Excel
66 s ZIVM Macintosh MacBinary data, compress (.Z)
66 s ZSYS Macintosh MacBinary data, Pre-System 7 system file
66 s acf3 Macintosh MacBinary data, Aldus FreeHand
66 s cdev Macintosh MacBinary data, control panel
66 s dfil Macintosh MacBinary data, Desk Acessory suitcase
66 s libr Macintosh MacBinary data, library
66 s nX^d Macintosh MacBinary data, WriteNow word processor
66 s nX^w Macintosh MacBinary data, WriteNow dictionary
66 s rsrc Macintosh MacBinary data, resource
66 s scbk Macintosh MacBinary data, Scrapbook
66 s shlb Macintosh MacBinary data, shared library
66 s ttro Macintosh MacBinary data, SimpleText read-only
66 s zsys Macintosh MacBinary data, system file
70 s 8BIM Macintosh MacBinary data, Adobe Photoshop
70 s ALD3 Macintosh MacBinary data, PageMaker 3
70 s ALD4 Macintosh MacBinary data, PageMaker 4
70 s ALFA Macintosh MacBinary data, Alpha editor
70 s APLS Macintosh MacBinary data, Apple Scanner
70 s APSC Macintosh MacBinary data, Apple Scanner
70 s BRKL Macintosh MacBinary data, Brickles
70 s BTFT Macintosh MacBinary data, BitFont
70 s CCL2 Macintosh MacBinary data, Common Lisp 2
70 s CCL\ Macintosh MacBinary data, Common Lisp
70 s CDmo Macintosh MacBinary data, The Talking Moose
70 s CPCT Macintosh MacBinary data, Compact Pro
70 s CSOm Macintosh MacBinary data, Eudora
70 s DMOV Macintosh MacBinary data, Font/DA Mover
70 s DSIM Macintosh MacBinary data, DigSim
70 s EDIT Macintosh MacBinary data, Macintosh Edit
70 s ERIK Macintosh MacBinary data, Macintosh Finder
70 s EXTR Macintosh MacBinary data, self-extracting archive
70 s Gzip Macintosh MacBinary data, GNU gzip
70 s KAHL Macintosh MacBinary data, Think C
70 s LWFU Macintosh MacBinary data, LaserWriter Utility
70 s LZIV Macintosh MacBinary data, compress
70 s MACA Macintosh MacBinary data, MacWrite
70 s MACS Macintosh MacBinary data, Macintosh operating system
70 s MAcK Macintosh MacBinary data, MacKnowledge terminal emulator
70 s MLND Macintosh MacBinary data, Defender
70 s MPNT Macintosh MacBinary data, MacPaint
70 s MSBB Macintosh MacBinary data, Microsoft BASIC (binary)
70 s MSWD Macintosh MacBinary data, Microsoft Word
70 s NCSA Macintosh MacBinary data, NCSA Telnet
70 s PJMM Macintosh MacBinary data, Think Pascal
70 s PSAL Macintosh MacBinary data, Hunt the Wumpus
70 s PSI2 Macintosh MacBinary data, Apple File Exchange
70 s R*ch Macintosh MacBinary data, BBEdit
70 s RMKR Macintosh MacBinary data, Resource Maker
70 s RSED Macintosh MacBinary data, Resource Editor
70 s Rich Macintosh MacBinary data, BBEdit
70 s SIT! Macintosh MacBinary data, StuffIt
70 s SPNT Macintosh MacBinary data, SuperPaint
70 s Unix Macintosh MacBinary data, NeXT Mac filesystem
70 s VIM! Macintosh MacBinary data, Vim editor
70 s WILD Macintosh MacBinary data, HyperCard
70 s XCEL Macintosh MacBinary data, Microsoft Excel
70 s aCa2 Macintosh MacBinary data, Fontographer
70 s aca3 Macintosh MacBinary data, Aldus FreeHand
70 s dosa Macintosh MacBinary data, Macintosh MS-DOS file system
70 s movr Macintosh MacBinary data, Font/DA Mover
70 s nX^n Macintosh MacBinary data, WriteNow
70 s pdos Macintosh MacBinary data, Apple ProDOS file system
70 s scbk Macintosh MacBinary data, Scrapbook
70 s ttxt Macintosh MacBinary data, SimpleText
70 s ufox Macintosh MacBinary data, Foreign File Access
103 s mBIN MacBinary III data with surprising version number
1 s SAS SAS
25 s DATA SAS data file
25 s CATALOG SAS catalog
25 s INDEX SAS data file index
25 s VIEW SAS data view
85 s SAS SAS 7+
157 s DATA SAS 7+ data file
157 s CATALOG SAS 7+ catalog
157 s INDEX SAS 7+ data file index
157 s VIEW SAS 7+ data view
1 s $FL2 SPSS System File
1 s BOMStore Mac OS X bill of materials (BOM) file
# Applixware
1 s *BEGIN Applixware
1 s *BEGINWORDS Applixware Words Document
1 s *BEGINGRAPHICS Applixware Graphic
1 s *BEGINRASTER Applixware Bitmap
1 s *BEGINSPREADSHEETS Spreadsheet
1 s *BEGINSMACRO Applixware Macro
1 s *BEGINSBUILDER Applixware Builder Object
# Archives
1 s PK PKZIP archive
258 s ustar POSIX tar archive
9 s debian-split Debian multipart package part
9 s debian-binary Debian binary package
9 s __________EU MIPS archive with MIPS Ucode members
9 s __________EL MIPS archive with MIPSEL members
9 s __________EB MIPS archive with MIPSEB members
1 s -h- Software Tools format archive text
1 s <ar> System V Release 1 ar archive
9 s __.SYMDEF Aegis random library
2-32 s archive RISC OS archive (ArcFS format)
1 s Archive RISC OS archive (ArcFS format)
1 s CRUSH Crush archive data
1 s HLSQZ Squeeze It archive data
1 s SQWEZ SQWEZ archive data
1 s HPAK HPack archive data
3 s HF HAP archive data
1 s MDmd MDCD archive data
1 s LIM LIM archive data
3 s LH5 SAR archive data
2 s =-ah MAR archive data
1 s JRchive JRC archive data
1 s DS Quantum archive data
#1 s PK ReSOF archive data
15 s YC YAC archive data
1 s X1 X1 archive data
1 s XhDr X1 archive data
2-8 s 6" AMGC archive data
1 s NõFélå NuLIB archive data
1 s LEOLZW PAKLeo archive data
1 s SChF ChArc archive data
1 s PSA PSA archive data
1 s DSIGDCC CrossePAC archive data
1 s ¨MP¨ KBoom archive data
1 s Dirk Paehl DPA archive data
1 s ESP ESP archive data
2-8 s ZPK ZPack archive data
1 s UFA UFA archive data
1 s =-H2O DRY archive data
1 s FOXSQZ FoxSQZ archive data
1 s ,AR7 AR7 archive data
1 s PPMZ PPMZ archive data
1 s KWAJ MS Compress archive data
1 s MP3 MP3-Archiver archive data
1 s OZÃ ZET archive data
1 s gW ARQ archive data
4 s OctSqu Squash archive data
1 s UHA UHarc archive data
1 s CO CMP archive data
2 s GTH Gather archive data
1 s BOA BOA archive data
1 s ULEB RAX archive data
1 s ULEB Xtreme archive data
1 s @â Pack Magic archive data
1 s Ora ELI 5750 archive data
1 s RNC PRO-PACK archive data
1 s 777 777 archive data
1 s sTaC LZS221 archive data
1 s HPA HPA archive data
1 s LG Arhangel archive data
1 s 0123456789012345BZh EXP1 archive data
1 s IMP IMP archive data
1 s PHILIPP Par archive data
1 s PAR Par archive data
1 s UB HIT archive data
1 s NSK NaShrink archive data
1 s # CAR archive header SAPCAR archive data
1 s CAR 2.00RG SAPCAR archive data
1 s DST Disintegrator archive data
1 s ASD ASD archive data
1 s ISc( InstallShield CAB
1 s T4 TOP4 archive data
1 s BH BlakHole archive data
1 s BIX0 BIX archive data
1 s ChfLZ ChiefLZA archive data
1 s Blink Blink archive data
1 s (C) STEPANYUK ARS-Sfx archive data
1 s AKT32 AKT32 archive data
1 s AKT AKT archive data
1 s MSTSM NPack archive data
1 s SEM SemOne archive data
1 s FIZ FIZ archive data
1 s =<DC- DC archive data
2 s TPAC TPac archive data
1 s Ai Ai archive data
1 s SBC SBC archive data
1 s YBS Ybs archive data
1 s DMS! DMS archive data
1 s VS VSARC archive data
1 s PDZ PDZ archive data
1 s rdqx ReDuq archive data
1 s GCAX GCA archive data
1 s pN PPMN archive data
3 s WINIMAGE WinImage archive data
1 s CMP0CMP Compressia archive data
1 s UHB UHBC archive data
1 s WWP WWPack archive data
1 s xpa XPA32 archive data
1 s SZ SZip archive data
1 s jm XPack DiskImage archive data
1 s xpa XPack archive data
1 s à jm XPack single archive data
1 s DZ Dzip archive data
1 s ZZ ZZip archive data
1 s ZZ0 ZZip archive data
1 s PAQ PAQ archive data
1 s JARCS JAR (ARJ Software, Inc.) archive data
1 s HA HA archive data
1 s HPAK HPACK archive data
3 s -lh0- LHarc 1.x/ARX archive data
3 s -lh1- LHarc 1.x/ARX archive data
3 s -lz4- LHarc 1.x archive data
3 s -lz5- LHarc 1.x archive data
3 s -lzs- LHa/LZS archive data
3 s -lhd- LHa 2.x? archive data
3 s -lh2- LHa 2.x? archive data
3 s -lh3- LHa 2.x? archive data
3 s -lh4- LHa 2.x archive data
3 s -lh5- LHa 2.x archive data
3 s -lh6- LHa 2.x archive data
3 s -lh7- LHa (2.x)/LHark archive data
3 s -lZ PUT archive data
3 s -lz LZS archive data
3 s -sw1- Swag archive data
1 s Rar! RAR archive data
1 s RE RAR archive data
1 s SQSH squished archive data (Acorn RISCOS)
1 s UC2 UC2 archive data
354 s WINZIP Zip archive data, WinZIP self-extracting
11 s # This is a shell archive Shell archive text
3 s -pm0- PMarc archive data
3 s -pm1- PMarc archive data
3 s -pm2- PMarc archive data
3 s -pms- PMarc SFX archive (CP/M, DOS)
6 s -pc1- PopCom compressed executable (CP/M)
1 s MSCF Microsoft cabinet file data
5 s gtktalog GTKtalog catalog data
1 s PAR PARity archive data
1 s d8:announce BitTorrent file
1 s PK00PK Zip archive data
8 s **ACE** ACE archive data
27 s sfArk sfArk compressed Soundfont
1 s Packed File Personal NetWare Packed File
1 s RZIP rzip compressed data
1 s MPQ MoPaQ (MPQ) archive
1 s xar! xar archive
1 s KGB_arch KGB Archiver file
1 s BZh bzip2 compressed data
1 s BZ bzip compressed data
1 s XPKF Amiga xpkf.library compressed data
1 s PP11 Power Packer 1.1 compressed data
1 s PP20 Power Packer 2.0 compressed data
1 s 7z 7-zip archive data
1 s RZIP rzip compressed data
31 s PKLITE Copr. PKZIP self-extracting archive
68 s ENCRYPTED FILE SafeGuard PrivateCrypto uti archive
>256 s SafeGuard PrivateCrypto SafeGuard PrivateCrypto self-extracting archive
# Aster*x
1 s *STA Aster*x
1 s *STAWORD Aster*x words document
1 s *STAGRAP Aster*x graphic
1 s *STASPRE Aster*x spreadsheet
1 s *STAMACR Aster*x macro
1 s 2278 Aster*x version 2
# Attack Tool Kit
1 s <plugin_id> Attack Tool Kit ASLv1 plugin
1 s <name> Attack Tool Kit suggestion plugin
# Audio files
1 s .snd Sun/NeXT audio data
1 s MThd Standard MIDI data
1 s CTMF Creative Music (CMF) data
1 s SBI SoundBlaster instrument data
1 s Creative Voice File Creative Labs voice data
1 s EMOD Extended MOD sound data
1 s .RMF RealMedia file
1 s MTM MultiTracker Module sound file
1 s if Composer 669 Module sound data
1 s jn Composer 669 Module sound data, extended format
1 s MAS_U ULT(imate) Module sound data
1 s FAR Module sound data
45 s SCRM ScreamTracker III Module sound data
1 s GF1PATCH110 GUS patch
1 s GF1PATCH100 GUS patch old
1 s MAS_UTrack_V00 ultratracker v1 module sound data
1 s UN05 MikMod UNI format module sound data
1 s Extended Module: Fasttracker II module sound data
22 s =!SCREAM! Screamtracker 2 module sound data
22 s BMOD2STM Screamtracker 2 module sound data
1081 s M.K. 4-channel Protracker module sound data
1081 s M!K! 4-channel Protracker module sound data
1081 s FLT4 4-channel Startracker module sound data
1081 s FLT8 8-channel Startracker module sound data
1081 s 4CHN 4-channel Fasttracker module sound data
1081 s 6CHN 6-channel Fasttracker module sound data
1081 s 8CHN 8-channel Fasttracker module sound data
1081 s CD81 8-channel Octalyser module sound data
1081 s OKTA 8-channel Octalyser module sound data
1081 s 16CN 16-channel Taketracker module sound data
1081 s 32CN 32-channel Taketracker module sound data
1 s TOC TOC sound file
1 s SIDPLAY INFOFILE Sidplay info file
1 s PSID PlaySID v2.2+ (AMIGA) sidtune
1 s RSID RSID sidtune PlaySID compatible
1 s NIST_1A NIST SPHERE file
1 s SOUND SAMPLE DATA Sample Vision file
1 s 2BIT Audio Visual Research file,
1 s _SGI_SoundTrack SGI SoundTrack project file
1 s ID3 Audio file with ID3 version 2
2585 s !fLaC Audio file with ID3 version 2 and MP3 encoding
1-256 s LAME Audio file with ID3 (lame encoding)
1 s NESM NES Sound File
1 s IMPM Impulse Tracker module sound data
61 s IM10 Imago Orpheus module sound data
1 s IMPS Impulse Tracker Sample
1 s IMPI Impulse Tracker Instrument
1 s LM8953 Yamaha TX Wave
77 s SCRS Scream Tracker Sample
1 s MMD0 MED music file, version 0
1 s MMD1 OctaMED Pro music file, version 1
1 s MMD3 OctaMED Soundstudio music file, version 3
1 s OctaMEDCmpr OctaMED Soundstudio compressed file
1 s MED MED_Song
1 s SymM Symphonie SymMOD music file
1 s THX AHX version
1 s OKTASONG Oktalyzer module data
1 s DIGI Booster module DIGI Booster module
1 s DBM0 DIGI Booster module
1 s FTMN FaceTheMusic module
1 s AMShdr Velvet Studio AMS Module v2.2
1 s Extreme Extreme Tracker AMS Module v1.3
1 s DDMF Xtracker DMF Module
1 s DSM Dynamic Studio Module DSM
1 s SONG DigiTrekker DTM Module
1 s DMDL DigiTrakker MDL Module
1 s PSM Protracker Studio PSM Module
45 s PTMF Poly Tracker PTM Module
1 s MT20 MadTracker 2.0 Module MT2
1 s RAD RAD Adlib Tracker Module RAD
1 s RTMM RTM Module
1063 s MaDoKaN96 XMS Adlib Module
1 s AMF AMF Module
1 s MODINFO1 Open Cubic Player Module Inforation MDZ
1 s Extended Instrument: Fast Tracker II Instrument
1 s MMMD Yamaha SMAF file
1-16 s Sharp SHARP Cell-Phone ringing Melody
1 s fLaC FLAC audio bitstream data
1 s VBOX VBOX voice message data
9 s RB40 RBS Song file
30 s ReBorn RBS Song file created by ReBorn
38 s Propellerhead RBS Song file created by ReBirth
1 s A#S#C#S#S#L#V#3 Synthesizer Generator or Kimwitu data
1 s A#S#C#S#S#L#HUB Kimwitu++ data
1 s TFMX-SONG TFMX module sound data
1 s MAC Monkey's Audio compressed format
1 s RAWADATA RdosPlay RAW
1069 s RoR AMUSIC Adlib Tracker
1 s JCH EdLib
1 s mpu401tr MPU-401 Trakker
1 s SAdT Surprise! Adlib Tracker
1 s XAD! eXotic ADlib
1 s ofTAZ! eXtra Simple Music
1 s ZXAYEMUL Spectrum 128 tune
2-8 s BONK BONK
385 s LockStream LockStream Embedded file (usually MP3 on old Nokia phones)
1 s TWIN97012000 VQF data
1 s Winamp EQ library file Winamp EQ library file
1 s [Equalizer preset] XMMS equalizer preset
1 s #EXTM3U M3U playlist text
1 s [playlist] PLS playlist text
1 s [licq] LICQ configuration file
1 s ICE! SNDH Atari ST music
1 s SC68 Music-file / (c) sc68 Atari ST music
1 s MP+ Musepack audio
1 s BEGIN:IMELODY iMelody Ringtone Format
1 s FICHIER GUITAR PRO v3 Guitar Pro Ver. 3 Tablature
61 s SONG SoundFX Module sound file
1 s #!AMR Adaptive Multi-Rate Codec (GSM telephony)
# b.out
1 s =!<bout> b.out archive
1 s =!<bout>__.SYMDEF b.out archive, random library
# BFLT uclinux binary files
1 s bFLT BFLT uclinux executable
# Blender3D
1 s =BLENDER Blender3D
1 s =BLENDER=_ Blender3D, saved as 32-bits
1 s =BLENDER=_=v Blender3D, saved as 32-bits, little endian
1 s =BLENDER=_=V Blender3D, saved as 32-bits, big endian
1 s =BLENDER=- Blender3D, saved as 64-bits
1 s =BLENDER=-=v Blender3D, saved as 64-bits, little endian
1 s =BLENDER=-=V Blender3D, saved as 64-bits, big endian
1 s #!BPY Blender3D BPython script
# BTSnoop
1 s btsnoop BTSnoop
# C64
1 s C64 CCS C64 Emultar Cartridge Image
1 s GCR-1541 GCR Image
10 s PSUR ARC archive (c64)
3 s -LH1- LHA archive (c64)
1 s C64File PC64 Emulator file
1 s C64Image PC64 Freezer Image
1 s CBM Power 64 C64 Emulator Snapshot
1 s C64S tape file T64 tape image
1 s C64 tape image T64 tape image
1 s C64S tape image T64 tape image
# CAD
1 s AC1012 AutoCad (release 12)
1 s AC1013 AutoCad (release 13)
1 s AC1014 AutoCad (release 14)
1 s AC1012 AutoDesk AutoCAD R13
1 s AC1014 AutoDesk AutoCAD R14
1 s AC1015 AutoDesk AutoCAD R2000
# chord
1 s {title Chord text file
# Citrus
1 s RuneCT Citrus locale declaration for LC_CTYPE
# CLIPPER
5 s pipe CLIPPER instruction trace
5 s prof CLIPPER instruction profile
# Consoles and emulators
1 s NES iNES ROM dump
257 s SEGA Sega MegaDrive/Genesis raw ROM dump
641 s EAGN Super MagicDrive ROM dump
641 s EAMG Super MagicDrive ROM dump
1 s LCDi Dream Animator file
192-208 s Qi Nintendo DS Game ROM Image
1-16 s Qi Nintendo Game Boy Advance ROM Image
1 s PS-X EXE Sony Playstation executable
1 s XBEH XBE, Microsoft Xbox executable
1 s XIP0 XIP, Microsoft Xbox data
1 s XTF0 XTF, Microsoft Xbox data
1-8 s ZZZZZ 3DO "Opera" file system
1 s GBS Nintendo Gameboy Music/Audio Data
13 s GameBoy Music Module Nintendo Gameboy Music Module
1 s PPF10 Playstation Patch File version 1.0
1 s PPF20 Playstation Patch File version 2.0
1 s PPF30 Playstation Patch File version 3.0
1 s SMV SNES9x input recording
# cracklib
1-16 s pwV1 Cracklib password index, big endian ("64-bit")
# ctags
1-64 s !_TAG Exuberant Ctags tag file text
# CVS files
2-12 s :pserver: cvs password text file
1 s # v2 git bundle Git bundle
1 s HG10 Mercurial bundle
1 s HG10UN Mercurial bundle, uncompressed
1 s HG10BZ Mercurial bundle, bzip2 compressed
# Databases
1 s GDBM GNU dbm 2.x database
1 s RRD RRDTool DB
1 s root ROOT file
5 s Standard Jet DB Microsoft Access Database
1 s TDB file TDB database
3 s ICE ICE authority data
11-37 s MIT-MAGIC-COOKIE-1 X11 Xauthority data
1 s PGDMP PostgreSQL custom database dump
1 s @(#)ADF Database CGNS Advanced Data Format
# Diamond
1-64 s <protocol bbn-multimedia-format> Diamond Multimedia Document
# diff
1-64 s diff diff output text
1-64 s ***\ diff output text
1-64 s Only in diff output text
1-64 s Common subdirectories: diff output text
1-64 s Index: RCS/CVS diff output text
# Digital UNIX
1-32 s !<arch> Alpha archive
1-32 s !<PDF>! Digital UNIX profiling data file
# ELF binaries
2-5 s ELF ELF
2-6 s ELF0 ELF, invalid class
2-6 s ELF1 ELF, 32-bit
2-6 s ELF2 ELF, 64-bit
# Erlang JAM and BEAM files
2-8 s BEAM! Old Erlang BEAM file
1 s FOR1 Erlang BEAM file
9-12 s BEAM Erlang BEAM file
5 s Tue Jan 22 14:32:44 MET 1991 Erlang JAM file, version 4.2
80 s Tue Jan 22 14:32:44 MET 1991 Erlang JAM file, version 4.2
5 s 1.0 Fri Feb 3 09:55:56 MET 1995 Erlang JAM file, version 4.3
# FCS (Flow Cytometry Standard)
1 s FCS1.0 Flow Cytometry Standard (FCS) data, version 1.0
1 s FCS2.0 Flow Cytometry Standard (FCS) data, version 2.0
1 s FCS3.0 Flow Cytometry Standard (FCS) data, version 3.0
# File systems
1 s SBMBAKUP_ Smart Boot Manager backup file
1 s DOSEMU DOS Emulator image
3 s OSBS x86 boot sector, OS/BS MBR
141 s Invalid partition table x86 boot sector, MS-DOS MBR
202 s Operating System load error x86 boot sector, DR-DOS MBR, Version 7.01 to 7.03
412 s Caldera Inc. x86 boot sector, DR-DOS MBR (IBMBIO.LDR)
272 s Ungültige Partitionstabelle x86 boot sector, MS-DOS MBR, german version 4.10.1998, 4.10.2222
140 s Ungültige Partitionstabelle x86 boot sector, MS-DOS MBR, german version 5.00 to 4.00.950
195 s Missing operating system x86 boot sector, Microsoft Windows XP mbr
356 s Missing operating system x86 boot sector, Microsoft Windows XP mbr
367 s Betriebssystem nicht vorhanden x86 boot sector, Microsoft Windows XP MBR (german)
326 s Default: F x86 boot sector, FREE-DOS MBR
97 s read error while reading drive x86 boot sector, FREE-DOS Beta 0.9 MBR
297 s error x86 boot sector, SYSLINUX MBR (2.10)
393 s boot from floppy... x86 boot sector, Acronis MBR
340 s I/O Error reading boot sector x86 boot sector, Visopsys MBR
380 s I/O Error reading boot sector x86 boot sector, simple Visopsys MBR
4 s SBM x86 boot sector, Smart Boot Manager
383 s XOSLLOADXCF x86 boot sector, eXtended Operating System Loader
7 s LILO x86 boot sector, LInux i386 boot LOader (LILO)
121 s LILO x86 boot sector, LInux i386 boot LOader (LILO), version 22.3.4 SuSe
173 s LILO x86 boot sector, LInux i386 boot LOader (LILO), version 22.5.8 Debian
395 s stage1 x86 boot sector, GRUB version 0.5.95
377 s GRUB x86 boot sector, GRUB version 0.93 or 1.94
378 s GRUB x86 boot sector, GRUB version 0.94
380 s GRUB x86 boot sector, GRUB version 0.95 or 0.96
386 s GRUB x86 boot sector, GRUB version 0.97
322 s Loading stage1.5 x86 boot sector, GRUB, unknown version
375 s GRUB x86 boot sector, GRUB, unknown version
479 s Boot failed x86 boot sector, bootloader 1.62
481 s Boot failed x86 boot sector, bootloader 2.06 or 2.11
485 s Boot error x86 boot sector, SYSLINUX bootloader 3.11
396 s chksum x86 boot sector, Gujin bootloader
499 s BCDL x86 boot sector, Bootable CD Loader 1.50Z
460 s press any key... x86 boot sector, Acronis Startup Recovery Loader
292 s and press any key. FDBOOT harddisk Bootloader
488 s and press any key. WinImage harddisk Bootloader
170 s press any key to try again... FREE-DOS message display
90 s Version Sun Solaris Bootloader
409 s OS/2 x86 boot sector, IBM OS/2 Warp bootloader
430 s OS/2 x86 boot sector, IBM OS/2 Warp bootloader
451 s OS/2 x86 boot sector, IBM OS/2 Warp bootloader
470 s OS2BOOT x86 boot sector, IBM OS/2 Warp bootloader
471 s OS2BOOT x86 boot sector, IBM OS/2 Warp message display
293 s strike any key... x86 boot sector, IBM OS/2 Warp message display
463 s Press any key to restart x86 boot sector, Microsoft Windows XP Bootloader
474 s Neustart mit beliebiger Taste x86 boot sector, Microsoft Windows XP Bootloader (german)
464 s Neustart mit beliebiger Taste x86 boot sector, Microsoft Windows XP Bootloader (german)
460 s Neustart: Taste x86 boot sector, Microsoft Windows XP Bootloader (german)
470 s Neustart: Taste x86 boot sector, Microsoft Windows XP Bootloader (german)
455 s and restart x86 boot sector, Microsoft Windows XP Bootloader NTFS
456 s press any key x86 boot sector, Microsoft Windows 98 Bootloader
452 s then press any key x86 boot sector, Microsoft Windows 98 Bootloader
454 s Taste druecken x86 boot sector, Microsoft Windows 95/98/ME Bootloader (german)
455 s Taste druecken x86 boot sector, Microsoft Windows 95/98/ME Bootloader (german)
456 s Taste druecken x86 boot sector, Microsoft Windows 95/98/ME Bootloader (german)
451 s Wechseln und Taste x86 boot sector, Microsoft DOS Bootloader (german)
427 s any key when ready x86 boot sector, MS or PC-DOS bootloader
450 s Disk Boot failure x86 boot sector, MS DOS 3.21
467 s Boot Failure x86 boot sector, MS DOS 3.30
488 s and press any key. x86 boot sector, MS DOS 2.11 bootloader
496 s NEWLDR x86 boot sector, DR-DOS Bootloader (LOADER.SYS)
157 s Loading ... x86 boot sector, DR-DOS (3.41) Bootloader
490 s Any key to retry x86 boot sector, DR-DOS Bootloader
488 s press key to retry x86 boot sector, Open-DOS Bootloader
315 s BOOT error! x86 boot sector, FREE-DOS Bootloader
306 s BOOT err! x86 boot sector, FREE-DOS Bootloader
320 s BOOT error! x86 boot sector, FREE-DOS 0.5 Bootloader
312 s BOOT error! x86 boot sector, FREE-DOS bootloader
332 s err x86 boot sector, FREE-DOS BETa 0.9 Bootloader
334 s err x86 boot sector, FREE-DOS BETa 0.9 Bootloader
335 s err x86 boot sector, FREE-DOS BETa 0.9 Bootloader
344 s Hit a key to reboot. x86 boot sector, FREE-DOS Beta 0.9sr1 Bootloader
>256 s Visopsys loader x86 boot sector, Visopsys loader
493 s RENF x86 boot sector, FAT (12 bit)
496 s RENF x86 boot sector, FAT (16 bit)
55 s FAT12 x86 boot sector, FAT (12 bit)
55 s FAT16 x86 boot sector, FAT (16 bit)
83 s FAT32 x86 boot sector, FAT (32 bit)
1 s FATX x86 boot sector, FATX filesystem data
15 s minix Minix filesystem, bootable
1 s -rom1fs- romfs filesystem, version 1
396 s OS/2 OS/2 Boot Manager
38914 s !NSR0 CD001, ISO 9660 CD-ROM filesystem data
38914 s NSR0 CD001, UDF filesystem data
38914 s NSR0 CD0011, UDF filesystem data, version 1.0
38914 s NSR0 CD0012, UDF filesystem data, version 1.5
38914 s NSR0 CD0013, UDF filesystem data, version 2.0
34818-34864 s EL TORITO SPECIFICATION CD001, bootable
37634 s CD001 ISO 9660 CD-ROM filesystem data (raw 2352 byte sectors)
32777 s CDROM High Sierra CD-ROM filesystem data
65589 s ReIsErFs ReiserFS V3.5
65589 s ReIsEr2Fs ReiserFS V3.6
1 s ESTFBINR EST flat binary
1 s VoIP Startup and Aculab VoIP firmware
5 s PPCBoot u-boot/PPCBoot image
1 s sqsh Squashfs filesystem, big endian
1 s td floppy image data (TeleDisk)
9 s OracleCFS Oracle Clustered Filesystem
33 s ORCLDISK Oracle ASM Volume
33 s ORCLCLRD Oracle ASM Volume (cleared)
9 s OracleCFS Oracle Clustered Filesystem
33 s ORCLDISK Oracle ASM Volume
33 s ORCLCLRD Oracle ASM Volume (cleared)
1 s CPQRFBLO Compaq/HP RILOE floppy image
1009 s DECFILE11B Files-11 On-Disk Structure
1 s DAA PowerISO Direct-Access-Archive
1 s *dvdisaster* dvdisaster error correction file
# Flash
1 s FWS Macromedia Flash data
1 s CWS Macromedia Flash data (compressed)
1 s FLV Macromedia Flash Video
1 s AGD4 Macromedia Freehand 9 Document
# Flowfiles
1 s NPFF NItpicker Flow File
# Fonts
1 s FONT ASCII vfont text
1 s %!PS-AdobeFont-1. PostScript Type 1 font text
7 s %!PS-AdobeFont-1. PostScript Type 1 font program data
1 s STARTFONT X11 BDF font text
1 s D1.0 X11 Speedo font data
1 s flf FIGlet font
1 s flc FIGlet controlfile
4099 s DOSFONT DOSFONT2 encrypted font data
1 s PFR1 PFR1 font
1 s OTTO OpenType font data
1 s SplineFontDB: Spline Font Database
# FrameMaker documents
1 s <MakerFile FrameMaker document
1 s <MakerFile1.0 FrameMaker document, version 1.0
1 s <MakerFile2.0 FrameMaker document, version 2.0
1 s <MakerFile3.0 FrameMaker document, version 3.0
1 s <MakerFile4.0 FrameMaker document, version 4.0
1 s <MakerFile5.0 FrameMaker document, version 5.0
1 s <MakerFile5.5 FrameMaker document, version 5.5
1 s <MIFFile FrameMaker MIF (ASCII) file
1 s <MIFFile1.0 FrameMaker MIF (ASCII) file, version 1.x
1 s <MIFFile2.0 FrameMaker MIF (ASCII) file, version 2.0
1 s <MIFFile3.0 FrameMaker MIF (ASCII) file, version 3.0
1 s <MIFFile4.0 FrameMaker MIF (ASCII) file, version 4.0
1 s <MakerDictionary FrameMaker Dictionary text
1 s <MakerDictionary1.0 FrameMaker Dictionary text, version 1.x
1 s <MakerDictionary2.0 FrameMaker Dictionary text, version 2.0
1 s <MakerDictionary3.0 FrameMaker Dictionary text, version 3.0
1 s <MakerScreenFont FrameMaker Font file
1 s <MakerScreenFont1.01 FrameMaker Font file, version 1.01
1 s <MML FrameMaker MML file
1 s <BookFile FrameMaker Book file
1 s <BookFile1.0 FrameMaker Book file, version 1.0
1 s <BookFile2.0 FrameMaker Book file, version 2.0
1 s <BookFile3.0 FrameMaker Book file, version 3.0
1 s <Book FrameMaker Book (ASCII) file
1 s <Book 1.0 FrameMaker Book (ASCII) file, version 1.0
1 s <Book 2.0 FrameMaker Book (ASCII) file, version 2.0
1 s <Book 3.0 FrameMaker Book (ASCII) file, version 3.0
1 s <Maker Intermediate Print File FrameMaker IPL file
# Games
1 s IDP2 Quake II 3D Model file,
1 s IBSP Quake II or III map file
1 s IDS2 Quake II SP2 sprite file
3 s Boom Boom or linuxdoom demo
25 s LxD 203 Linuxdoom save
1 s PACK Quake I or II world or extension
1 s -1 Quake I demo
3 s Introduction Quake I save: start Introduction
1 s the_Slipgate_Complex Quake I save: e1m1 The slipgate complex
1 s Castle_of_the_Damned Quake I save: e1m2 Castle of the damned
1 s the_Necropolis Quake I save: e1m3 The necropolis
1 s the_Grisly_Grotto Quake I save: e1m4 The grisly grotto
1 s Ziggurat_Vertigo Quake I save: e1m8 Ziggurat vertigo (secret)
1 s Gloom_Keep Quake I save: e1m5 Gloom keep
1 s The_Door_To_Chthon Quake I save: e1m6 The door to Chthon
1 s The_House_of_Chthon Quake I save: e1m7 The house of Chthon
1 s the_Installation Quake I save: e2m1 The installation
1 s the_Ogre_Citadel Quake I save: e2m2 The ogre citadel
1 s the_Crypt_of_Decay Quake I save: e2m3 The crypt of decay (dopefish lives!)
1 s Underearth Quake I save: e2m7 Underearth (secret)
1 s the_Ebon_Fortress Quake I save: e2m4 The ebon fortress
1 s the_Wizard's_Manse Quake I save: e2m5 The wizard's manse
1 s the_Dismal_Oubliette Quake I save: e2m6 The dismal oubliette
1 s Termination_Central Quake I save: e3m1 Termination central
1 s Vaults_of_Zin Quake I save: e3m2 Vaults of Zin
1 s the_Tomb_of_Terror Quake I save: e3m3 The tomb of terror
1 s Satan's_Dark_Delight Quake I save: e3m4 Satan's dark delight
1 s the_Haunted_Halls Quake I save: e3m7 The haunted halls (secret)
1 s Wind_Tunnels Quake I save: e3m5 Wind tunnels
1 s Chambers_of_Torment Quake I save: e3m6 Chambers of torment
1 s the_Sewage_System Quake I save: e4m1 The sewage system
1 s The_Tower_of_Despair Quake I save: e4m2 The tower of despair
1 s The_Elder_God_Shrine Quake I save: e4m3 The elder god shrine
1 s the_Palace_of_Hate Quake I save: e4m4 The palace of hate
1 s Hell's_Atrium Quake I save: e4m5 Hell's atrium
1 s the_Nameless_City Quake I save: e4m8 The nameless city (secret)
1 s The_Pain_Maze Quake I save: e4m6 The pain maze
1 s Azure_Agony Quake I save: e4m7 Azure agony
1 s Shub-Niggurath's_Pit Quake I save: end Shub-Niggurath's pit
1 s Place_of_Two_Deaths Quake I save: dm1 Place of two deaths
1 s Claustrophobopolis Quake I save: dm2 Claustrophobopolis
1 s The_Abandoned_Base Quake I save: dm3 The abandoned base
1 s The_Bad_Place Quake I save: dm4 The bad place
1 s The_Cistern Quake I save: dm5 The cistern
1 s The_Dark_Zone Quake I save: dm6 The dark zone
1 s Command_HQ Quake I save: start Command HQ
1 s The_Pumping_Station Quake I save: hip1m1 The pumping station
1 s Storage_Facility Quake I save: hip1m2 Storage facility
1 s Military_Complex Quake I save: hip1m5 Military complex (secret)
1 s the_Lost_Mine Quake I save: hip1m3 The lost mine
1 s Research_Facility Quake I save: hip1m4 Research facility
1 s Ancient_Realms Quake I save: hip2m1 Ancient realms
1 s The_Gremlin's_Domain Quake I save: hip2m6 The gremlin's domain (secret)
1 s The_Black_Cathedral Quake I save: hip2m2 The black cathedral
1 s The_Catacombs Quake I save: hip2m3 The catacombs
1 s the_Crypt__ Quake I save: hip2m4 The crypt
1 s Mortum's_Keep Quake I save: hip2m5 Mortum's keep
1 s Tur_Torment Quake I save: hip3m1 Tur torment
1 s Pandemonium Quake I save: hip3m2 Pandemonium
1 s Limbo Quake I save: hip3m3 Limbo
1 s the_Edge_of_Oblivion Quake I save: hipdm1 The edge of oblivion (secret)
1 s The_Gauntlet Quake I save: hip3m4 The gauntlet
1 s Armagon's_Lair Quake I save: hipend Armagon's lair
1 s The_Academy Quake I save: start The academy
1 s The_Lab Quake I save: d1 The lab
1 s Area_33 Quake I save: d1b Area 33
1 s SECRET_MISSIONS Quake I save: d3b Secret missions
1 s The_Hospital Quake I save: d10 The hospital (secret)
1 s The_Genetics_Lab Quake I save: d11 The genetics lab (secret)
1 s BACK_2_MALICE Quake I save: d4b Back to Malice
1 s Area44 Quake I save: d1c Area 44
1 s Takahiro_Towers Quake I save: d2 Takahiro towers
1 s A_Rat's_Life Quake I save: d3 A rat's life
1 s Into_The_Flood Quake I save: d4 Into the flood
1 s The_Flood Quake I save: d5 The flood
1 s Nuclear_Plant Quake I save: d6 Nuclear plant
1 s The_Incinerator_Plant Quake I save: d7 The incinerator plant
1 s The_Foundry Quake I save: d7b The foundry
1 s The_Underwater_Base Quake I save: d8 The underwater base
1 s Takahiro_Base Quake I save: d9 Takahiro base
1 s Takahiro_Laboratories Quake I save: d12 Takahiro laboratories
1 s Stayin'_Alive Quake I save: d13 Stayin' alive
1 s B.O.S.S._HQ Quake I save: d14 B.O.S.S. HQ
1 s SHOWDOWN! Quake I save: d15 Showdown!
1 s The_Seventh_Precinct Quake I save: ddm1 The seventh precinct
1 s Sub_Station Quake I save: ddm2 Sub station
1 s Crazy_Eights! Quake I save: ddm3 Crazy eights!
1 s East_Side_Invertationa Quake I save: ddm4 East side invertationa
1 s Slaughterhouse Quake I save: ddm5 Slaughterhouse
1 s DOMINO Quake I save: ddm6 Domino
1 s SANDRA'S_LADDER Quake I save: ddm7 Sandra's ladder
1 s MComprHD MAME CHD compressed hard disk image
1 s =IWAD doom main IWAD data
1 s =PWAD doom patch PWAD data
1 s Warcraft III recorded game Warcraft III recorded game
1 s HM3W Warcraft III map file
3-516 s GM[ SGF Smart Game Format
3-518 s GM[1] SGF Smart Game Format, Go
3-518 s GM[2] SGF Smart Game Format, Othello
3-518 s GM[3] SGF Smart Game Format, chess
3-518 s GM[4] SGF Smart Game Format, Gomoku+Renju
3-518 s GM[5] SGF Smart Game Format, Nine Men's Morris
3-518 s GM[6] SGF Smart Game Format, Backgammon
3-518 s GM[7] SGF Smart Game Format, Chinese chess
3-518 s GM[8] SGF Smart Game Format, Shogi
3-518 s GM[9] SGF Smart Game Format, Lines of Action
3-518 s GM[10] SGF Smart Game Format, Ataxx
3-518 s GM[11] SGF Smart Game Format, Hex
3-518 s GM[12] SGF Smart Game Format, Jungle
3-518 s GM[13] SGF Smart Game Format, Neutron
3-518 s GM[14] SGF Smart Game Format, Philosopher's Football
3-518 s GM[15] SGF Smart Game Format, Quadrature
3-518 s GM[16] SGF Smart Game Format, Trax
3-518 s GM[17] SGF Smart Game Format, Tantrix
3-518 s GM[18] SGF Smart Game Format, Amazons
3-518 s GM[19] SGF Smart Game Format, Octi
3-518 s GM[20] SGF Smart Game Format, Gess
3-518 s GM[21] SGF Smart Game Format, Twixt
3-518 s GM[22] SGF Smart Game Format, Zertz
3-518 s GM[23] SGF Smart Game Format, Plateau
3-518 s GM[24] SGF Smart Game Format, Yinsh
3-518 s GM[25] SGF Smart Game Format, Punct
3-518 s GM[26] SGF Smart Game Format, Gobblet
3-518 s GM[27] SGF Smart Game Format, hive
3-518 s GM[28] SGF Smart Game Format, Exxit
3-518 s GM[29] SGF Smart Game Format, Hnefatal
3-518 s GM[30] SGF Smart Game Format, Kuba
3-518 s GM[31] SGF Smart Game Format, Tripples
3-518 s GM[32] SGF Smart Game Format, Chase
3-518 s GM[33] SGF Smart Game Format, Tumbling Down
3-518 s GM[34] SGF Smart Game Format, Sahara
3-518 s GM[35] SGF Smart Game Format, Byte
3-518 s GM[36] SGF Smart Game Format, Focus
3-518 s GM[37] SGF Smart Game Format, Dvonn
3-518 s GM[38] SGF Smart Game Format, Tamsk
3-518 s GM[39] SGF Smart Game Format, Gipf
3-518 s GM[40] SGF Smart Game Format, Kropki
1 s BIKi Civilization 4 Video
1 s Gamebryo File Format, Version Gamebryo game engine file
1 s ;Gamebryo KFM File Version Gamebryo game engine animation File
1 s NetImmerse File Format, NetImmerse game engine file
# Gimp
1 s GIMP Gradient GIMP gradient data
1 s gimp xcf GIMP XCF image data
1 s gimp xcffile GIMP XCF image data, version 0
21 s GPAT GIMP pattern data
21 s GIMP GIMP brush data
1-64 s Curves GIMP curve file
# Gnome
1 s GnomeKeyring GNOME keyring
# GNU
1 s *nazgul* Nazgul style compiled message catalog
2-6 s gpg GPG key trust database
40 s =<gmr:Workbook Gnumeric spreadsheet
2 s LOCATE GNU findutils locate database data
# Gringotts
1 s GRG Gringotts data file
1 s GRG1 Gringotts data file, v.1, MCRYPT S2K, SERPENT crypt, SHA-256 hash, ZLib lvl.9
1 s GRG2 Gringotts data file, v.2, MCRYPT S2K