nameme_core 0.2.3

Library to find the actual type of files based on their magic number.
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
// Automatically generated with build.rs. Edit with care.
use std::collections::HashMap;
thread_local!(pub static HEADERS: HashMap<u64, usize> = HashMap::from([
	//d: High Efficiency Image Container (HEIC) -> hash([0, 0, 0]) = 6830588343710348632
	(6830588343710348632, 0),
	//d: JPEG2000 image files -> hash([0, 0, 0, 12, 106, 80, 32, 32]) = 11073977156666679847
	(11073977156666679847, 1),
	//d: 3GPP multimedia files -> hash([0, 0, 0, 20, 102, 116, 121, 112]) = 12367998915684985665
	(12367998915684985665, 2),
	//d: MPEG-4 v1 -> hash([0, 0, 0, 20, 102, 116, 121, 112, 105, 115, 111, 109]) = 14833438918710706645
	(14833438918710706645, 3),
	//d: 3rd Generation Partnership Project 3GPP -> hash([0, 0, 0, 20, 102, 116, 121, 112]) = 12367998915684985665
	(12367998915684985665, 4),
	//d: Windows Disk Image -> hash([0, 0, 0, 0, 20, 0, 0, 0]) = 7513171921259098243
	(7513171921259098243, 5),
	//d: Bitcoin Core wallet.dat file -> hash([0, 0, 0, 0, 98, 49, 5, 0, 9, 0, 0, 0, 0, 32, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0]) = 7354708055026592891
	(7354708055026592891, 6),
	//d: MPEG-4 video_1 -> hash([0, 0, 0, 24, 102, 116, 121, 112]) = 5739090928741066263
	(5739090928741066263, 7),
	//d: MPEG-4 video_2 -> hash([0, 0, 0, 28, 102, 116, 121, 112]) = 11194985411708859878
	(11194985411708859878, 8),
	//d: 3GPP2 multimedia files -> hash([0, 0, 0, 32, 102, 116, 121, 112]) = 11261078072451444160
	(11261078072451444160, 9),
	//d: Apple audio and video -> hash([0, 0, 0, 32, 102, 116, 121, 112, 77, 52, 65]) = 12686491148525875887
	(12686491148525875887, 10),
	//d: 3rd Generation Partnership Project 3GPP2 -> hash([0, 0, 0, 32, 102, 116, 121, 112]) = 11261078072451444160
	(11261078072451444160, 11),
	//d: Windows icon|printer spool file -> hash([0, 0, 1, 0]) = 5770374201409945718
	(5770374201409945718, 12),
	//d: MPEG video file -> hash([0, 0, 1, 179]) = 2534228243570560689
	(2534228243570560689, 13),
	//d: DVD video file -> hash([0, 0, 1, 186]) = 14691428818028948682
	(14691428818028948682, 14),
	//d: Windows cursor -> hash([0, 0, 2, 0]) = 13926542948584130028
	(13926542948584130028, 15),
	//d: Compucon-Singer embroidery design file -> hash([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]) = 5506010466157640574
	(5506010466157640574, 16),
	//d: QuattroPro spreadsheet -> hash([0, 0, 2, 0]) = 13926542948584130028
	(13926542948584130028, 17),
	//d: Amiga Hunk executable -> hash([0, 0, 3, 243]) = 17659978916427144196
	(17659978916427144196, 18),
	//d: Wii images container -> hash([0, 32, 175, 48]) = 8129477930645524665
	(8129477930645524665, 19),
	//d: Lotus 1-2-3 (v1) -> hash([0, 0, 2, 0, 6, 4, 6, 0]) = 863782090167722195
	(863782090167722195, 20),
	//d: Lotus 1-2-3 (v3) -> hash([0, 0, 26, 0, 0, 16, 4, 0]) = 3885881460277016458
	(3885881460277016458, 21),
	//d: Lotus 1-2-3 (v4-v5) -> hash([0, 0, 26, 0, 2, 16, 4, 0]) = 12149696773441386838
	(12149696773441386838, 22),
	//d: Lotus 1-2-3 (v9) -> hash([0, 0, 26, 0, 5, 16, 4]) = 6008229628702865251
	(6008229628702865251, 23),
	//d: Quark Express (Intel) -> hash([0, 0, 73, 73, 88, 80, 82]) = 11140111971113732739
	(11140111971113732739, 24),
	//d: Quark Express (Motorola) -> hash([0, 0, 77, 77, 88, 80, 82]) = 12538590463038556773
	(12538590463038556773, 25),
	//d: Windows Help file_1 -> hash([0, 0, 255, 255, 255, 255]) = 14144807981893205879
	(14144807981893205879, 26),
	//d: TrueType font file -> hash([0, 1, 0, 0, 0]) = 229234610081216865
	(229234610081216865, 27),
	//d: Microsoft Money file -> hash([0, 1, 0, 0, 77, 83, 73, 83, 65, 77, 32, 68, 97, 116, 97, 98, 97, 115, 101]) = 12586731551192249619
	(12586731551192249619, 28),
	//d: Microsoft Access 2007 -> hash([0, 1, 0, 0, 83, 116, 97, 110, 100, 97, 114, 100, 32, 65, 67, 69, 32, 68, 66]) = 17067550391819181323
	(17067550391819181323, 29),
	//d: Microsoft Access -> hash([0, 1, 0, 0, 83, 116, 97, 110, 100, 97, 114, 100, 32, 74, 101, 116, 32, 68, 66]) = 14586521227901227960
	(14586521227901227960, 30),
	//d: Palm Address Book Archive -> hash([0, 1, 66, 65]) = 9714699799512571099
	(9714699799512571099, 31),
	//d: Palm DateBook Archive -> hash([0, 1, 66, 68]) = 10800862844188873995
	(10800862844188873995, 32),
	//d: Netscape Navigator (v4) database -> hash([0, 6, 21, 97, 0, 0, 0, 2, 0, 0, 4, 210, 0, 0, 16, 0]) = 4224217895132453030
	(4224217895132453030, 33),
	//d: Mbox table of contents file -> hash([0, 13, 187, 160]) = 12001643809046205445
	(12001643809046205445, 34),
	//d: FLIC animation -> hash([0, 17]) = 13209191802198519128
	(13209191802198519128, 35),
	//d: BIOS details in RAM -> hash([0, 20, 0, 0, 1, 2]) = 1463760000942076964
	(1463760000942076964, 36),
	//d: Netscape Communicator (v4) mail folder -> hash([0, 30, 132, 144, 0, 0, 0, 0]) = 286260367016634885
	(286260367016634885, 37),
	//d: PowerPoint presentation subheader_1 -> hash([0, 110, 30, 240]) = 15362445958924823869
	(15362445958924823869, 38),
	//d: Webex Advanced Recording Format -> hash([1, 0, 2, 0]) = 5987322549712639405
	(5987322549712639405, 39),
	//d: Firebird and Interbase database files -> hash([1, 0, 57, 48]) = 15731062964527871328
	(15731062964527871328, 40),
	//d: The Bat! Message Base Index -> hash([1, 1, 71, 25, 164, 0, 0, 0, 0, 0, 0, 0]) = 10742825804790922691
	(10742825804790922691, 41),
	//d: SQL Data Base -> hash([1, 15, 0, 0]) = 95147712254471764
	(95147712254471764, 42),
	//d: Novell LANalyzer capture file -> hash([1, 16]) = 9860482458068547162
	(9860482458068547162, 43),
	//d: Silicon Graphics RGB Bitmap -> hash([1, 218, 1, 1, 0, 3]) = 2770082573159505617
	(2770082573159505617, 44),
	//d: Micrografx vector graphic file -> hash([1, 255, 2, 4, 3, 2]) = 7470201318829649362
	(7470201318829649362, 45),
	//d: Digital Speech Standard file -> hash([2, 100, 115, 115]) = 8774563804190144202
	(8774563804190144202, 46),
	//d: MapInfo Native Data Format -> hash([3]) = 2568688906359260860
	(2568688906359260860, 47),
	//d: dBASE III file -> hash([3]) = 2568688906359260860
	(2568688906359260860, 48),
	//d: Quicken price history -> hash([3, 0, 0, 0]) = 15031792401724517662
	(15031792401724517662, 49),
	//d: Nokia PC Suite Content Copier file -> hash([3, 0, 0, 0]) = 15031792401724517662
	(15031792401724517662, 50),
	//d: Approach index file -> hash([3, 0, 0, 0, 65, 80, 80, 82]) = 4626939157607658654
	(4626939157607658654, 51),
	//d: Digital Speech Standard (v3) -> hash([3, 100, 115, 115]) = 14882655835732551743
	(14882655835732551743, 52),
	//d: dBASE IV file -> hash([4]) = 6884762938395473402
	(6884762938395473402, 53),
	//d: INFO2 Windows recycle bin_1 -> hash([4, 0, 0, 0]) = 5107734327137918258
	(5107734327137918258, 54),
	//d: INFO2 Windows recycle bin_2 -> hash([5, 0, 0, 0]) = 9398169628658534060
	(9398169628658534060, 55),
	//d: Adobe InDesign -> hash([6, 6, 237, 245, 216, 29, 70, 229, 189, 49, 239, 231, 254, 116, 183, 29]) = 8164371575105895728
	(8164371575105895728, 56),
	//d: Material Exchange Format -> hash([6, 14, 43, 52, 2, 5, 1, 1, 13, 1, 2, 1, 1, 2]) = 10314886564888824412
	(10314886564888824412, 57),
	//d: Generic drawing programs -> hash([7]) = 333897980716574006
	(333897980716574006, 58),
	//d: SkinCrafter skin -> hash([7, 83, 75, 70]) = 345352397891477852
	(345352397891477852, 59),
	//d: DesignTools 2D Design file -> hash([7, 100, 116, 50, 100, 100, 116, 100]) = 435153943081208575
	(435153943081208575, 60),
	//d: dBASE IV or dBFast configuration file -> hash([8]) = 5706572573049266518
	(5706572573049266518, 61),
	//d: Excel spreadsheet subheader_1 -> hash([9, 8, 16, 0, 0, 6, 5, 0]) = 10608306491419649409
	(10608306491419649409, 62),
	//d: ZSOFT Paintbrush file_1 -> hash([10, 2, 1, 1]) = 17132578529098707055
	(17132578529098707055, 63),
	//d: ZSOFT Paintbrush file_2 -> hash([10, 3, 1, 1]) = 14354820035502198843
	(14354820035502198843, 64),
	//d: ZSOFT Paintbrush file_3 -> hash([10, 5, 1, 1]) = 3002996320757738153
	(3002996320757738153, 65),
	//d: MultiBit Bitcoin wallet file -> hash([10, 22, 111, 114, 103, 46, 98, 105, 116, 99, 111, 105, 110, 46, 112, 114]) = 13722611736689547653
	(13722611736689547653, 66),
	//d: Monochrome Picture TIFF bitmap -> hash([12, 237]) = 2806943036465259375
	(2806943036465259375, 67),
	//d: DeskMate Document -> hash([13, 68, 79, 67]) = 17338017302743077344
	(17338017302743077344, 68),
	//d: Nero CD compilation -> hash([14, 78, 101, 114, 111, 73, 83, 79]) = 4998984880969986989
	(4998984880969986989, 69),
	//d: DeskMate Worksheet -> hash([14, 87, 75, 83]) = 6391977185567251068
	(6391977185567251068, 70),
	//d: PowerPoint presentation subheader_2 -> hash([15, 0, 232, 3]) = 4610261128040016704
	(4610261128040016704, 71),
	//d: Sibelius Music - Score -> hash([15, 83, 73, 66, 69, 76, 73, 85, 83]) = 10964308381321897165
	(10964308381321897165, 72),
	//d: Easy CD Creator 5 Layout file -> hash([16, 0, 0, 0]) = 7702359481941945811
	(7702359481941945811, 73),
	//d: Windows prefetch file -> hash([17, 0, 0, 0, 83, 67, 67, 65]) = 12856750197142851602
	(12856750197142851602, 74),
	//d: Lotus Notes database template -> hash([26, 0, 0]) = 9845531802343413922
	(9845531802343413922, 75),
	//d: Lotus Notes database -> hash([26, 0, 0, 4, 0, 0]) = 4307859019878105520
	(4307859019878105520, 76),
	//d: LH archive (old vers.-type 1) -> hash([26, 2]) = 4155175807490308551
	(4155175807490308551, 77),
	//d: LH archive (old vers.-type 2) -> hash([26, 3]) = 13831109965918452842
	(13831109965918452842, 78),
	//d: LH archive (old vers.-type 3) -> hash([26, 4]) = 2425981653854201743
	(2425981653854201743, 79),
	//d: LH archive (old vers.-type 4) -> hash([26, 8]) = 1160724706165397740
	(1160724706165397740, 80),
	//d: LH archive (old vers.-type 5) -> hash([26, 9]) = 5704313529642732602
	(5704313529642732602, 81),
	//d: Compressed archive file -> hash([26, 11]) = 5784799340188033297
	(5784799340188033297, 82),
	//d: WinPharoah capture file -> hash([26, 53, 1, 0]) = 15693968310557535345
	(15693968310557535345, 83),
	//d: WebM video file -> hash([26, 69, 223, 163]) = 14991953920179634438
	(14991953920179634438, 84),
	//d: Matroska stream file_1 -> hash([26, 69, 223, 163]) = 14991953920179634438
	(14991953920179634438, 85),
	//d: Matroska stream file_2 -> hash([26, 69, 223, 163, 147, 66, 130, 136]) = 10489196729473431628
	(10489196729473431628, 86),
	//d: Runtime Software disk image -> hash([26, 82, 84, 83, 32, 67, 79, 77]) = 8269758133744814217
	(8269758133744814217, 87),
	//d: WordStar Version 5.0-6.0 document -> hash([29, 125]) = 9213364397217801206
	(9213364397217801206, 88),
	//d: GZIP archive file -> hash([31, 139, 8]) = 742388985059081690
	(742388985059081690, 89),
	//d: VLC Player Skin file -> hash([31, 139, 8]) = 742388985059081690
	(742388985059081690, 90),
	//d: Synology router configuration backup file -> hash([31, 139, 8, 0]) = 14074039260736068097
	(14074039260736068097, 91),
	//d: Compressed tape archive_1 -> hash([31, 157, 144]) = 8773817468314609547
	(8773817468314609547, 92),
	//d: Compressed tape archive_2 -> hash([31, 160]) = 5142416557575296599
	(5142416557575296599, 93),
	//d: MapInfo Sea Chart -> hash([33]) = 8819190194239964400
	(8819190194239964400, 94),
	//d: NOAA Raster Navigation Chart (RNC) file -> hash([33, 13, 10, 67, 82, 82, 47, 84, 104, 105, 115, 32, 101, 108, 101, 99]) = 13426837845921427460
	(13426837845921427460, 95),
	//d: AIN Compressed Archive -> hash([33, 18]) = 11989276732833609904
	(11989276732833609904, 96),
	//d: Unix archiver (ar)-MS Program Library Common Object File Format (COFF) -> hash([33, 60, 97, 114, 99, 104, 62, 10]) = 7821389577687275414
	(7821389577687275414, 97),
	//d: Microsoft Outlook Exchange Offline Storage Folder -> hash([33, 66, 68, 78]) = 8964949369896575470
	(8964949369896575470, 98),
	//d: Cerius2 file -> hash([35, 32]) = 6524748420994682983
	(6524748420994682983, 99),
	//d: VMware 4 Virtual Disk description -> hash([35, 32, 68, 105, 115, 107, 32, 68]) = 1599608537248116891
	(1599608537248116891, 100),
	//d: MS Developer Studio project file -> hash([35, 32, 77, 105, 99, 114, 111, 115]) = 12779755967563241871
	(12779755967563241871, 101),
	//d: Google Earth Keyhole Placemark file -> hash([35, 32, 84, 104, 105, 115, 32, 105, 115, 32, 97, 110, 32, 75, 101, 121]) = 1214697456435228095
	(1214697456435228095, 102),
	//d: Adaptive Multi-Rate ACELP Codec (GSM) -> hash([35, 33, 65, 77, 82]) = 1624963623315543891
	(1624963623315543891, 103),
	//d: Skype audio compression -> hash([35, 33, 83, 73, 76, 75, 10]) = 3448285888359148121
	(3448285888359148121, 104),
	//d: Radiance High Dynamic Range image file -> hash([35, 63, 82, 65, 68, 73, 65, 78]) = 12220298165397777362
	(12220298165397777362, 105),
	//d: VBScript Encoded script -> hash([35, 64, 126, 94]) = 8548296834453704313
	(8548296834453704313, 106),
	//d: NVIDIA Scene Graph binary file -> hash([35, 78, 66, 70]) = 6388334895608948204
	(6388334895608948204, 107),
	//d: Brother-Babylock-Bernina Home Embroidery -> hash([35, 80, 69, 67, 48, 48, 48, 49]) = 5216650358666128473
	(5216650358666128473, 108),
	//d: Brother-Babylock-Bernina Home Embroidery -> hash([35, 80, 69, 83, 48]) = 11340300612337306141
	(11340300612337306141, 109),
	//d: SPSS Data file -> hash([36, 70, 76, 50, 64, 40, 35, 41]) = 16302811553190744895
	(16302811553190744895, 110),
	//d: Encapsulated PostScript file -> hash([37, 33, 80, 83, 45, 65, 100, 111]) = 7248712983400175173
	(7248712983400175173, 111),
	//d: PDF file -> hash([37, 80, 68, 70]) = 17039765060745785108
	(17039765060745785108, 112),
	//d: Fuzzy bitmap (FBM) file -> hash([37, 98, 105, 116, 109, 97, 112]) = 10711562194032114528
	(10711562194032114528, 113),
	//d: BinHex 4 Compressed Archive -> hash([40, 84, 104, 105, 115, 32, 102, 105]) = 9324785033528655919
	(9324785033528655919, 114),
	//d: Symantec Wise Installer log -> hash([42, 42, 42, 32, 32, 73, 110, 115]) = 12048602925899650482
	(12048602925899650482, 115),
	//d: Compressed archive -> hash([45, 108, 104]) = 15841117264652500497
	(15841117264652500497, 116),
	//d: RealPlayer video file (V11+) -> hash([46, 82, 69, 67]) = 2182081055486562496
	(2182081055486562496, 117),
	//d: RealMedia streaming media -> hash([46, 82, 77, 70]) = 1785947158115484753
	(1785947158115484753, 118),
	//d: RealAudio file -> hash([46, 82, 77, 70, 0, 0, 0, 18]) = 4536501806637330558
	(4536501806637330558, 119),
	//d: RealAudio streaming media -> hash([46, 114, 97, 253, 0]) = 5223197836062176893
	(5223197836062176893, 120),
	//d: NeXT-Sun Microsystems audio file -> hash([46, 115, 110, 100]) = 10097337332035555432
	(10097337332035555432, 121),
	//d: Thunderbird-Mozilla Mail Summary File -> hash([47, 47, 32, 60, 33, 45, 45, 32, 60, 109, 100, 98, 58, 109, 111, 114, 107, 58, 122]) = 1369398788603294993
	(1369398788603294993, 122),
	//d: MS security catalog file -> hash([48]) = 10416953485263808622
	(10416953485263808622, 123),
	//d: Windows Event Viewer file -> hash([48, 0, 0, 0, 76, 102, 76, 101]) = 12266964688414336979
	(12266964688414336979, 124),
	//d: GEnealogical Data COMmunication (GEDCOM) file -> hash([48, 32, 72, 69, 65, 68]) = 1727070602287584727
	(1727070602287584727, 125),
	//d: Windows Media Audio-Video File -> hash([48, 38, 178, 117, 142, 102, 207, 17]) = 4518834518463656513
	(4518834518463656513, 126),
	//d: National Transfer Format Map -> hash([48, 49, 79, 82, 68, 78, 65, 78]) = 10845589715502579123
	(10845589715502579123, 127),
	//d: cpio archive -> hash([48, 55, 48, 55, 48]) = 8367480409598666563
	(8367480409598666563, 128),
	//d: MS Write file_1 -> hash([49, 190]) = 893798379875841020
	(893798379875841020, 129),
	//d: MS Write file_2 -> hash([50, 190]) = 15369572146619968240
	(15369572146619968240, 130),
	//d: Pfaff Home Embroidery -> hash([50, 3, 16, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 255, 0]) = 17427631498807429151
	(17427631498807429151, 131),
	//d: Tcpdump capture file -> hash([52, 205, 178, 161]) = 14413292237095519273
	(14413292237095519273, 132),
	//d: 7-Zip compressed file -> hash([55, 122, 188, 175, 39, 28]) = 4583233731011339801
	(4583233731011339801, 133),
	//d: zisofs compressed file -> hash([55, 228, 83, 150, 201, 219, 214, 7]) = 8006648071700340233
	(8006648071700340233, 134),
	//d: Photoshop image -> hash([56, 66, 80, 83]) = 4446801063548983078
	(4446801063548983078, 135),
	//d: Surfplan kite project file -> hash([58, 86, 69, 82, 83, 73, 79, 78]) = 14588355505198075107
	(14588355505198075107, 136),
	//d: Advanced Stream Redirector -> hash([60]) = 8437817501719368401
	(8437817501719368401, 137),
	//d: BizTalk XML-Data Reduced Schema -> hash([60]) = 8437817501719368401
	(8437817501719368401, 138),
	//d: AOL HTML mail -> hash([60, 33, 100, 111, 99, 116, 121, 112]) = 17045049376941436040
	(17045049376941436040, 139),
	//d: Windows Script Component -> hash([60, 63]) = 7665571188049094915
	(7665571188049094915, 140),
	//d: Windows Visual Stylesheet -> hash([60, 63, 120, 109, 108, 32, 118, 101, 114, 115, 105, 111, 110, 61]) = 6046872792073839321
	(6046872792073839321, 141),
	//d: User Interface Language -> hash([60, 63, 120, 109, 108, 32, 118, 101, 114, 115, 105, 111, 110, 61, 34, 49, 46, 48, 34, 63, 62]) = 3025290838690609037
	(3025290838690609037, 142),
	//d: MMC Snap-in Control file -> hash([60, 63, 120, 109, 108, 32, 118, 101, 114, 115, 105, 111, 110, 61, 34, 49, 46, 48, 34, 63, 62, 13, 10, 60, 77, 77, 67, 95, 67, 111, 110, 115, 111, 108, 101, 70, 105, 108, 101, 32, 67, 111, 110, 115, 111, 108, 101, 86, 101, 114, 115, 105, 111, 110, 61, 34]) = 12738855652848907843
	(12738855652848907843, 143),
	//d: Picasa movie project file -> hash([60, 67, 84, 114, 97, 110, 115, 84, 105, 109, 101, 108, 105, 110, 101, 62]) = 11870728598782267047
	(11870728598782267047, 144),
	//d: Csound music -> hash([60, 67, 115, 111, 117, 110, 100, 83, 121, 110, 116, 104, 101, 115, 105, 122]) = 13824774168503918294
	(13824774168503918294, 145),
	//d: Google Earth Keyhole Overlay file -> hash([60, 75, 101, 121, 104, 111, 108, 101, 62]) = 5229085798464619040
	(5229085798464619040, 146),
	//d: Adobe FrameMaker -> hash([60, 77, 97, 107, 101, 114, 70, 105]) = 1971334669110539173
	(1971334669110539173, 147),
	//d: GPS Exchange (v1.1) -> hash([60, 103, 112, 120, 32, 118, 101, 114, 115, 105, 111, 110, 61, 34, 49, 46]) = 3124787869668423945
	(3124787869668423945, 148),
	//d: BASE85 file -> hash([60, 126, 54, 60, 92, 37, 95, 48, 103, 83, 113, 104, 59]) = 17135355549610689998
	(17135355549610689998, 149),
	//d: Quatro Pro for Windows 7.0 -> hash([62, 0, 3, 0, 254, 255, 9, 0, 6]) = 6165302446911273158
	(6165302446911273158, 150),
	//d: Windows Help file_2 -> hash([63, 95, 3, 0]) = 12031072440735988922
	(12031072440735988922, 151),
	//d: EndNote Library File -> hash([64, 64, 64, 32, 0, 0, 64, 64, 64, 64]) = 13734536865367480355
	(13734536865367480355, 152),
	//d: Analog Box (ABox) circuit files -> hash([65, 66, 111, 120]) = 6143695133579361994
	(6143695133579361994, 153),
	//d: Generic AutoCAD drawing -> hash([65, 67, 49, 48]) = 18426922988519111050
	(18426922988519111050, 154),
	//d: Steganos virtual secure drive -> hash([65, 67, 118]) = 11533555999011768925
	(11533555999011768925, 155),
	//d: AOL parameter-info files -> hash([65, 67, 83, 68]) = 7076115286708156474
	(7076115286708156474, 156),
	//d: Harvard Graphics symbol graphic -> hash([65, 77, 89, 79]) = 8703150041605757266
	(8703150041605757266, 157),
	//d: AOL config files -> hash([65, 79, 76]) = 10301584713995486684
	(10301584713995486684, 158),
	//d: AOL and AIM buddy list -> hash([65, 79, 76, 32, 70, 101, 101, 100]) = 14325398945868335768
	(14325398945868335768, 159),
	//d: AOL address book -> hash([65, 79, 76, 68, 66]) = 18077129498719714217
	(18077129498719714217, 160),
	//d: AOL user configuration -> hash([65, 79, 76, 68, 66]) = 18077129498719714217
	(18077129498719714217, 161),
	//d: AOL client preferences-settings file -> hash([65, 79, 76, 73, 68, 88]) = 1792069957582272801
	(1792069957582272801, 162),
	//d: AOL address book index -> hash([65, 79, 76, 73, 78, 68, 69, 88]) = 7525962268025905461
	(7525962268025905461, 163),
	//d: AOL personal file cabinet -> hash([65, 79, 76, 86, 77, 49, 48, 48]) = 4893652786040636030
	(4893652786040636030, 164),
	//d: AVG6 Integrity database -> hash([65, 86, 71, 54, 95, 73, 110, 116]) = 3316543684971734951
	(3316543684971734951, 165),
	//d: RIFF Windows Audio -> hash([65, 86, 73, 32, 76, 73, 83, 84]) = 4712219118233674359
	(4712219118233674359, 166),
	//d: FreeArc compressed file -> hash([65, 114, 67, 1]) = 7969013666725653341
	(7969013666725653341, 167),
	//d: NTFS MFT (BAAD) -> hash([66, 65, 65, 68]) = 4405304535394515648
	(4405304535394515648, 168),
	//d: Google Chrome dictionary file -> hash([66, 68, 105, 99]) = 9248311751883957521
	(9248311751883957521, 169),
	//d: vCard -> hash([66, 69, 71, 73, 78, 58, 86, 67]) = 14985647005265913584
	(14985647005265913584, 170),
	//d: Speedtouch router firmware -> hash([66, 76, 73, 50, 50, 51]) = 9130196817721875718
	(9130196817721875718, 171),
	//d: Bitmap image -> hash([66, 77]) = 16266445003520502086
	(16266445003520502086, 172),
	//d: Palmpilot resource file -> hash([66, 79, 79, 75, 77, 79, 66, 73]) = 700218997581108275
	(700218997581108275, 173),
	//d: Better Portable Graphics -> hash([66, 80, 71, 251]) = 4451610328756598944
	(4451610328756598944, 174),
	//d: bzip2 compressed archive -> hash([66, 90, 104]) = 7751338366811181597
	(7751338366811181597, 175),
	//d: Mac Disk image (BZ2 compressed) -> hash([66, 90, 104]) = 7751338366811181597
	(7751338366811181597, 176),
	//d: Puffer ASCII encrypted archive -> hash([66, 101, 103, 105, 110, 32, 80, 117, 102, 102, 101, 114]) = 6271101780691047013
	(6271101780691047013, 177),
	//d: Blink compressed archive -> hash([66, 108, 105, 110, 107]) = 8644551568272685094
	(8644551568272685094, 178),
	//d: RagTime document -> hash([67, 35, 43, 68, 164, 67, 77, 165]) = 44439894510178782
	(44439894510178782, 179),
	//d: EA Interchange Format File (IFF)_3 -> hash([67, 65, 84, 32]) = 15058578582063661257
	(15058578582063661257, 180),
	//d: WordPerfect dictionary -> hash([67, 66, 70, 73, 76, 69]) = 11767055550311831590
	(11767055550311831590, 181),
	//d: ISO-9660 CD Disc Image -> hash([67, 68, 48, 48, 49]) = 16666683141374308122
	(16666683141374308122, 182),
	//d: RIFF CD audio -> hash([67, 68, 68, 65, 102, 109, 116, 32]) = 17142372510140556508
	(17142372510140556508, 183),
	//d: Compressed ISO CD image -> hash([67, 73, 83, 79]) = 11404229786726892419
	(11404229786726892419, 184),
	//d: Windows 7 thumbnail -> hash([67, 77, 77, 77, 21, 0, 0, 0]) = 16615472642585008736
	(16615472642585008736, 185),
	//d: Corel Binary metafile -> hash([67, 77, 88, 49]) = 463578770420294285
	(463578770420294285, 186),
	//d: COM+ Catalog -> hash([67, 79, 77, 43]) = 16345384182927907899
	(16345384182927907899, 187),
	//d: VMware 3 Virtual Disk -> hash([67, 79, 87, 68]) = 14665248830802094864
	(14665248830802094864, 188),
	//d: Corel Photopaint file_1 -> hash([67, 80, 84, 55, 70, 73, 76, 69]) = 13010382549257749533
	(13010382549257749533, 189),
	//d: Corel Photopaint file_2 -> hash([67, 80, 84, 70, 73, 76, 69]) = 12972228444153663725
	(12972228444153663725, 190),
	//d: Win9x registry hive -> hash([67, 82, 69, 71]) = 13636067913996515868
	(13636067913996515868, 191),
	//d: Crush compressed archive -> hash([67, 82, 85, 83, 72, 32, 118]) = 15410410281202625869
	(15410410281202625869, 192),
	//d: Shockwave Flash file -> hash([67, 87, 83]) = 6131935660509994051
	(6131935660509994051, 193),
	//d: Calculux Indoor lighting project file -> hash([67, 97, 108, 99, 117, 108, 117, 120, 32, 73, 110, 100, 111, 111, 114, 32]) = 742682397591410620
	(742682397591410620, 194),
	//d: WhereIsIt Catalog -> hash([67, 97, 116, 97, 108, 111, 103, 32]) = 13561408178814720761
	(13561408178814720761, 195),
	//d: IE History file -> hash([67, 108, 105, 101, 110, 116, 32, 85]) = 13536089641130521753
	(13536089641130521753, 196),
	//d: Google Chrome Extension -> hash([67, 114, 50, 52]) = 15539159798521489785
	(15539159798521489785, 197),
	//d: Google Chromium patch update -> hash([67, 114, 79, 68]) = 10478949661474308891
	(10478949661474308891, 198),
	//d: Creative Voice -> hash([67, 114, 101, 97, 116, 105, 118, 101, 32, 86, 111, 105, 99, 101, 32, 70]) = 10942663691469287465
	(10942663691469287465, 199),
	//d: PowerISO Direct-Access-Archive image -> hash([68, 65, 65, 0, 0, 0, 0, 0]) = 8701883531028072851
	(8701883531028072851, 200),
	//d: DAX Compressed CD image -> hash([68, 65, 88, 0]) = 14895818185654303653
	(14895818185654303653, 201),
	//d: Palm Zire photo database -> hash([68, 66, 70, 72]) = 8815511459649007343
	(8815511459649007343, 202),
	//d: Amiga DiskMasher compressed archive -> hash([68, 77, 83, 33]) = 11557517652693676806
	(11557517652693676806, 203),
	//d: Amiga disk file -> hash([68, 79, 83]) = 1218883585863298133
	(1218883585863298133, 204),
	//d: DST Compression -> hash([68, 83, 84, 98]) = 16555768558595552257
	(16555768558595552257, 205),
	//d: DVR-Studio stream file -> hash([68, 86, 68]) = 1645199808921345102
	(1645199808921345102, 206),
	//d: DVD info file -> hash([68, 86, 68]) = 1645199808921345102
	(1645199808921345102, 207),
	//d: Elite Plus Commander game file -> hash([69, 76, 73, 84, 69, 32, 67, 111]) = 13638850747095127608
	(13638850747095127608, 208),
	//d: VideoVCD-VCDImager file -> hash([69, 78, 84, 82, 89, 86, 67, 68]) = 742650500391293992
	(742650500391293992, 209),
	//d: Apple ISO 9660-HFS hybrid CD image -> hash([69, 82, 2, 0, 0]) = 9250655834847359399
	(9250655834847359399, 210),
	//d: EasyRecovery Saved State file -> hash([69, 82, 70, 83, 83, 65, 86, 69]) = 15874621884529443906
	(15874621884529443906, 211),
	//d: DSD Storage Facility audio file -> hash([68, 83, 68, 32]) = 2341443931136850893
	(2341443931136850893, 212),
	//d: MS Document Imaging file -> hash([69, 80]) = 18273769579335025408
	(18273769579335025408, 213),
	//d: Expert Witness Compression Format -> hash([69, 86, 70, 9, 13, 10, 255, 0]) = 10361588701635354297
	(10361588701635354297, 214),
	//d: EnCase Evidence File Format V2 -> hash([69, 86, 70, 50, 13, 10, 129]) = 4807015982992555082
	(4807015982992555082, 215),
	//d: Windows Vista event log -> hash([69, 108, 102, 70, 105, 108, 101, 0]) = 1305028542930908893
	(1305028542930908893, 216),
	//d: QuickBooks backup -> hash([69, 134, 0, 0, 6, 0]) = 9801299208246685886
	(9801299208246685886, 217),
	//d: MS Fax Cover Sheet -> hash([70, 65, 88, 67, 79, 86, 69, 82]) = 11643910629222730338
	(11643910629222730338, 218),
	//d: Fiasco database definition file -> hash([70, 68, 66, 72, 0]) = 1175127584024924941
	(1175127584024924941, 219),
	//d: NTFS MFT (FILE) -> hash([70, 73, 76, 69]) = 11412920072846738818
	(11412920072846738818, 220),
	//d: Flash video file -> hash([70, 76, 86]) = 7764224083271185939
	(7764224083271185939, 221),
	//d: IFF ANIM file -> hash([70, 79, 82, 77]) = 16587026331404632911
	(16587026331404632911, 222),
	//d: EA Interchange Format File (IFF)_1 -> hash([70, 79, 82, 77]) = 16587026331404632911
	(16587026331404632911, 223),
	//d: Audio Interchange File -> hash([70, 79, 82, 77, 0]) = 7662962999182006223
	(7662962999182006223, 224),
	//d: DAKX Compressed Audio -> hash([70, 79, 82, 77, 0]) = 7662962999182006223
	(7662962999182006223, 225),
	//d: Shockwave Flash player -> hash([70, 87, 83]) = 7121017476074070920
	(7121017476074070920, 226),
	//d: Generic e-mail_2 -> hash([70, 114, 111, 109]) = 684033354878913238
	(684033354878913238, 227),
	//d: GIF file -> hash([71, 73, 70, 56]) = 731651953594296
	(731651953594296, 228),
	//d: GIMP pattern file -> hash([71, 80, 65, 84]) = 2273402173975647359
	(2273402173975647359, 229),
	//d: General Regularly-distributed Information (GRIdded) Binary -> hash([71, 82, 73, 66]) = 14903184032172578066
	(14903184032172578066, 230),
	//d: Show Partner graphics file -> hash([71, 88, 50]) = 13767597865313044873
	(13767597865313044873, 231),
	//d: Genetec video archive -> hash([71, 101, 110, 101, 116, 101, 99, 32, 79, 109, 110, 105, 99, 97, 115, 116]) = 9763135799136642168
	(9763135799136642168, 232),
	//d: SAP PowerBuilder integrated development environment file -> hash([72, 68, 82, 42, 80, 111, 119, 101, 114, 66, 117, 105, 108, 100, 101, 114]) = 17174848278305700833
	(17174848278305700833, 233),
	//d: SAS Transport dataset -> hash([72, 69, 65, 68, 69, 82, 32, 82, 69, 67, 79, 82, 68, 42, 42, 42]) = 12402766808531562617
	(12402766808531562617, 234),
	//d: Harvard Graphics presentation file -> hash([72, 72, 71, 66, 49]) = 15445109610624020264
	(15445109610624020264, 235),
	//d: TIFF file_1 -> hash([73, 32, 73]) = 13620370463366354920
	(13620370463366354920, 236),
	//d: MP3 audio file -> hash([73, 68, 51]) = 12225538150678487247
	(12225538150678487247, 237),
	//d: Sprint Music Store audio -> hash([73, 68, 51, 3, 0, 0, 0]) = 9385474042979771558
	(9385474042979771558, 238),
	//d: Canon RAW file -> hash([73, 73, 26, 0, 0, 0, 72, 69]) = 11361017888803550330
	(11361017888803550330, 239),
	//d: TIFF file_2 -> hash([73, 73, 42, 0]) = 11255272437331683213
	(11255272437331683213, 240),
	//d: Windows 7 thumbnail_2 -> hash([73, 77, 77, 77, 21, 0, 0, 0]) = 2762159001960273629
	(2762159001960273629, 241),
	//d: Install Shield compressed file -> hash([73, 83, 99, 40]) = 17802010664437923377
	(17802010664437923377, 242),
	//d: MS Reader eBook -> hash([73, 84, 79, 76, 73, 84, 76, 83]) = 11744320478384159814
	(11744320478384159814, 243),
	//d: MS Compiled HTML Help File -> hash([73, 84, 83, 70]) = 1643695889166691518
	(1643695889166691518, 244),
	//d: Inno Setup Uninstall Log -> hash([73, 110, 110, 111, 32, 83, 101, 116]) = 3649427517266946524
	(3649427517266946524, 245),
	//d: Inter@ctive Pager Backup (BlackBerry file -> hash([73, 110, 116, 101, 114, 64, 99, 116, 105, 118, 101, 32, 80, 97, 103, 101]) = 13279336595675575664
	(13279336595675575664, 246),
	//d: JARCS compressed archive -> hash([74, 65, 82, 67, 83, 0]) = 14250811165423973363
	(14250811165423973363, 247),
	//d: AOL ART file_1 -> hash([74, 71, 3, 14]) = 14860747185273304131
	(14860747185273304131, 248),
	//d: AOL ART file_2 -> hash([74, 71, 4, 14]) = 6587694148373442992
	(6587694148373442992, 249),
	//d: VMware 4 Virtual Disk -> hash([75, 68, 77]) = 3672284228891527632
	(3672284228891527632, 250),
	//d: KGB archive -> hash([75, 71, 66, 95, 97, 114, 99, 104]) = 11989520152218005959
	(11989520152218005959, 251),
	//d: Win9x printer spool file -> hash([75, 73, 0, 0]) = 17054505068273844518
	(17054505068273844518, 252),
	//d: KWAJ (compressed) file -> hash([75, 87, 65, 74, 136, 240, 39, 209]) = 7060797828006801923
	(7060797828006801923, 253),
	//d: Windows shortcut file -> hash([76, 0, 0, 0, 1, 20, 2, 0]) = 2099007110852022386
	(2099007110852022386, 254),
	//d: MS COFF relocatable object code -> hash([76, 1]) = 3922727831887324238
	(3922727831887324238, 255),
	//d: Tajima emboridery -> hash([76, 65, 58]) = 15474136924937287743
	(15474136924937287743, 256),
	//d: Windows help file_3 -> hash([76, 78, 2, 0]) = 6043555774861314279
	(6043555774861314279, 257),
	//d: EA Interchange Format File (IFF)_2 -> hash([76, 73, 83, 84]) = 13612307794447036666
	(13612307794447036666, 258),
	//d: DeluxePaint Animation -> hash([76, 80, 70, 32, 0, 1]) = 12794312882079768279
	(12794312882079768279, 259),
	//d: Logical File Evidence Format -> hash([76, 86, 70, 9, 13, 10, 255, 0]) = 1945777881548500413
	(1945777881548500413, 260),
	//d: Merriam-Webster Pocket Dictionary -> hash([77, 45, 87, 32, 80, 111, 99, 107]) = 3104898447047858348
	(3104898447047858348, 261),
	//d: Mozilla archive -> hash([77, 65, 82, 49, 0]) = 3019718326369551101
	(3019718326369551101, 262),
	//d: Microsoft-MSN MARC archive -> hash([77, 65, 82, 67]) = 12874482975958695476
	(12874482975958695476, 263),
	//d: MATLAB v5 workspace -> hash([77, 65, 84, 76, 65, 66, 32, 53, 46, 48, 32, 77, 65, 84, 45, 102, 105, 108, 101]) = 9590565635569582785
	(9590565635569582785, 264),
	//d: MAr compressed archive -> hash([77, 65, 114, 48, 0]) = 3724126283647170111
	(3724126283647170111, 265),
	//d: TargetExpress target file -> hash([77, 67, 87, 32, 84, 101, 99, 104, 110, 111, 103, 111, 108, 105, 101, 115]) = 5305300756453332188
	(5305300756453332188, 266),
	//d: Windows dump file -> hash([77, 68, 77, 80, 147, 167]) = 2898408073495699023
	(2898408073495699023, 267),
	//d: Milestones project management file -> hash([77, 73, 76, 69, 83]) = 15664250868445925556
	(15664250868445925556, 268),
	//d: Skype localization data file -> hash([77, 76, 83, 87]) = 9840522197122351017
	(9840522197122351017, 269),
	//d: TIFF file_3 -> hash([77, 77, 0, 42]) = 16694485504279814271
	(16694485504279814271, 270),
	//d: TIFF file_4 -> hash([77, 77, 0, 43]) = 1301738430370205165
	(1301738430370205165, 271),
	//d: Yamaha Synthetic music Mobile Application Format -> hash([77, 77, 77, 68, 0, 0]) = 14488584168791624656
	(14488584168791624656, 272),
	//d: VMware BIOS state file -> hash([77, 82, 86, 78]) = 4441872749982947315
	(4441872749982947315, 273),
	//d: Microsoft cabinet file -> hash([77, 83, 67, 70]) = 11039257915717692776
	(11039257915717692776, 274),
	//d: OneNote Package -> hash([77, 83, 67, 70]) = 11039257915717692776
	(11039257915717692776, 275),
	//d: Powerpoint Packaged Presentation -> hash([77, 83, 67, 70]) = 11039257915717692776
	(11039257915717692776, 276),
	//d: MS Access Snapshot Viewer file -> hash([77, 83, 67, 70]) = 11039257915717692776
	(11039257915717692776, 277),
	//d: OLE-SPSS-Visual C++ library file -> hash([77, 83, 70, 84, 2, 0, 1, 0]) = 16724558588818235100
	(16724558588818235100, 278),
	//d: Health Level-7 data (pipe delimited) file -> hash([13, 83, 72, 124, 94, 126, 92, 38, 124]) = 12839492389742105877
	(12839492389742105877, 279),
	//d: Microsoft Windows Imaging Format -> hash([77, 83, 87, 73, 77]) = 1657723885546525493
	(1657723885546525493, 280),
	//d: Sony Compressed Voice File -> hash([77, 83, 95, 86, 79, 73, 67, 69]) = 1145220044457568606
	(1145220044457568606, 281),
	//d: MIDI sound file -> hash([77, 84, 104, 100]) = 11706259086871668620
	(11706259086871668620, 282),
	//d: Yamaha Piano -> hash([77, 84, 104, 100]) = 11706259086871668620
	(11706259086871668620, 283),
	//d: CD Stomper Pro label file -> hash([77, 86]) = 12432855989872938484
	(12432855989872938484, 284),
	//d: Milestones project management file_1 -> hash([77, 86, 50, 49, 52]) = 17619463426650381597
	(17619463426650381597, 285),
	//d: Milestones project management file_2 -> hash([77, 86, 50, 67]) = 17559210643868540401
	(17559210643868540401, 286),
	//d: Windows-DOS executable file -> hash([77, 90]) = 16730484632037341260
	(16730484632037341260, 287),
	//d: MS audio compression manager driver -> hash([77, 90]) = 16730484632037341260
	(16730484632037341260, 288),
	//d: Library cache file -> hash([77, 90]) = 16730484632037341260
	(16730484632037341260, 289),
	//d: Control panel application -> hash([77, 90]) = 16730484632037341260
	(16730484632037341260, 290),
	//d: Font file -> hash([77, 90]) = 16730484632037341260
	(16730484632037341260, 291),
	//d: ActiveX-OLE Custom Control -> hash([77, 90]) = 16730484632037341260
	(16730484632037341260, 292),
	//d: OLE object library -> hash([77, 90]) = 16730484632037341260
	(16730484632037341260, 293),
	//d: Screen saver -> hash([77, 90]) = 16730484632037341260
	(16730484632037341260, 294),
	//d: VisualBASIC application -> hash([77, 90]) = 16730484632037341260
	(16730484632037341260, 295),
	//d: Windows virtual device drivers -> hash([77, 90]) = 16730484632037341260
	(16730484632037341260, 296),
	//d: Acrobat plug-in -> hash([77, 90, 144, 0, 3, 0, 0, 0]) = 7058604359076457151
	(7058604359076457151, 297),
	//d: DirectShow filter -> hash([77, 90, 144, 0, 3, 0, 0, 0]) = 7058604359076457151
	(7058604359076457151, 298),
	//d: Audition graphic filter -> hash([77, 90, 144, 0, 3, 0, 0, 0]) = 7058604359076457151
	(7058604359076457151, 299),
	//d: ZoneAlam data file -> hash([77, 90, 144, 0, 3, 0, 0, 0, 4, 0, 0, 0, 255, 255]) = 7959549390100144051
	(7959549390100144051, 300),
	//d: MS C++ debugging symbols file -> hash([77, 105, 99, 114, 111, 115, 111, 102, 116, 32, 67, 47, 67, 43, 43, 32]) = 4677041442829384391
	(4677041442829384391, 301),
	//d: Visual Studio .NET file -> hash([77, 105, 99, 114, 111, 115, 111, 102, 116, 32, 86, 105, 115, 117, 97, 108]) = 7817267479665536456
	(7817267479665536456, 302),
	//d: Windows Media Player playlist -> hash([77, 105, 99, 114, 111, 115, 111, 102, 116, 32, 87, 105, 110, 100, 111, 119, 115, 32, 77, 101, 100, 105, 97, 32, 80, 108, 97, 121, 101, 114, 32, 45, 45, 32]) = 14634369800285504851
	(14634369800285504851, 303),
	//d: VMapSource GPS Waypoint Database -> hash([77, 115, 82, 99, 102]) = 10915923739208515711
	(10915923739208515711, 304),
	//d: TomTom traffic data -> hash([78, 65, 86, 84, 82, 65, 70, 70]) = 4849893318146018751
	(4849893318146018751, 305),
	//d: MS Windows journal -> hash([78, 66, 42, 0]) = 11529286659858083738
	(11529286659858083738, 306),
	//d: NES Sound file -> hash([78, 69, 83, 77, 26, 1]) = 5816945085487567597
	(5816945085487567597, 307),
	//d: National Imagery Transmission Format file -> hash([78, 73, 84, 70, 48]) = 13894595882975693112
	(13894595882975693112, 308),
	//d: Agent newsreader character map -> hash([78, 97, 109, 101, 58, 32]) = 7699239849823370484
	(7699239849823370484, 309),
	//d: 1Password 4 Cloud Keychain -> hash([79, 80, 67, 76, 68, 65, 84]) = 2757876056340563493
	(2757876056340563493, 310),
	//d: Psion Series 3 Database -> hash([79, 80, 76, 68, 97, 116, 97, 98]) = 6750422456077887304
	(6750422456077887304, 311),
	//d: OpenType font -> hash([79, 84, 84, 79, 0]) = 11726021892857205413
	(11726021892857205413, 312),
	//d: Ogg Vorbis Codec compressed file -> hash([79, 103, 103, 83, 0, 2, 0, 0]) = 551465787686713475
	(551465787686713475, 313),
	//d: Visio-DisplayWrite 4 text file -> hash([79, 123]) = 10177432611242453572
	(10177432611242453572, 314),
	//d: Quicken QuickFinder Information File -> hash([80, 0, 0, 0, 32, 0, 0, 0]) = 1999302667991038730
	(1999302667991038730, 315),
	//d: Portable Graymap Graphic -> hash([80, 53, 10]) = 4040224764704037306
	(4040224764704037306, 316),
	//d: Quake archive file -> hash([80, 65, 67, 75]) = 4911073463274737054
	(4911073463274737054, 317),
	//d: Windows memory dump -> hash([80, 65, 71, 69, 68, 85]) = 10070619154555849894
	(10070619154555849894, 318),
	//d: PAX password protected bitmap -> hash([80, 65, 88]) = 7335349685017533745
	(7335349685017533745, 319),
	//d: PestPatrol data-scan strings -> hash([80, 69, 83, 84]) = 12260869868491009480
	(12260869868491009480, 320),
	//d: PGP disk image -> hash([80, 71, 80, 100, 77, 65, 73, 78]) = 529648123077975513
	(529648123077975513, 321),
	//d: ChromaGraph Graphics Card Bitmap -> hash([80, 73, 67, 84, 0, 8]) = 11081328275851586364
	(11081328275851586364, 322),
	//d: PKZIP archive_1 -> hash([80, 75, 3, 4]) = 9996716604123706579
	(9996716604123706579, 323),
	//d: Android package -> hash([80, 75, 3, 4]) = 9996716604123706579
	(9996716604123706579, 324),
	//d: MacOS X Dashboard Widget -> hash([80, 75, 3, 4]) = 9996716604123706579
	(9996716604123706579, 325),
	//d: MS Office Open XML Format Document -> hash([80, 75, 3, 4]) = 9996716604123706579
	(9996716604123706579, 326),
	//d: Java archive_1 -> hash([80, 75, 3, 4]) = 9996716604123706579
	(9996716604123706579, 327),
	//d: Google Earth session file -> hash([80, 75, 3, 4]) = 9996716604123706579
	(9996716604123706579, 328),
	//d: KWord document -> hash([80, 75, 3, 4]) = 9996716604123706579
	(9996716604123706579, 329),
	//d: OpenDocument template -> hash([80, 75, 3, 4]) = 9996716604123706579
	(9996716604123706579, 330),
	//d: Microsoft Open XML paper specification -> hash([80, 75, 3, 4]) = 9996716604123706579
	(9996716604123706579, 331),
	//d: OpenOffice documents -> hash([80, 75, 3, 4]) = 9996716604123706579
	(9996716604123706579, 332),
	//d: StarOffice spreadsheet -> hash([80, 75, 3, 4]) = 9996716604123706579
	(9996716604123706579, 333),
	//d: Windows Media compressed skin file -> hash([80, 75, 3, 4]) = 9996716604123706579
	(9996716604123706579, 334),
	//d: Mozilla Browser Archive -> hash([80, 75, 3, 4]) = 9996716604123706579
	(9996716604123706579, 335),
	//d: XML paper specification file -> hash([80, 75, 3, 4]) = 9996716604123706579
	(9996716604123706579, 336),
	//d: eXact Packager Models -> hash([80, 75, 3, 4]) = 9996716604123706579
	(9996716604123706579, 337),
	//d: Open Publication Structure eBook -> hash([80, 75, 3, 4, 10, 0, 2, 0]) = 10558746059549312868
	(10558746059549312868, 338),
	//d: ZLock Pro encrypted ZIP -> hash([80, 75, 3, 4, 20, 0, 1, 0]) = 1698650904173778118
	(1698650904173778118, 339),
	//d: MS Office 2007 documents -> hash([80, 75, 3, 4, 20, 0, 6, 0]) = 18172018619689367056
	(18172018619689367056, 340),
	//d: Java archive_2 -> hash([80, 75, 3, 4, 20, 0, 8, 0]) = 14631309584978032918
	(14631309584978032918, 341),
	//d: PKZIP archive_2 -> hash([80, 75, 5, 6]) = 169884394933320289
	(169884394933320289, 342),
	//d: PKZIP archive_3 -> hash([80, 75, 7, 8]) = 9522377753016406923
	(9522377753016406923, 343),
	//d: PKLITE archive -> hash([80, 75, 76, 73, 84, 69]) = 15903048668228735380
	(15903048668228735380, 344),
	//d: PKSFX self-extracting archive -> hash([80, 75, 83, 112, 88]) = 6638422145065408224
	(6638422145065408224, 345),
	//d: Windows Program Manager group file -> hash([80, 77, 67, 67]) = 3774824341095590537
	(3774824341095590537, 346),
	//d: Norton Disk Doctor undo file -> hash([80, 78, 67, 73, 85, 78, 68, 79]) = 14037699627528785398
	(14037699627528785398, 347),
	//d: Microsoft Windows User State Migration Tool -> hash([80, 77, 79, 67, 67, 77, 79, 67]) = 15023640816426602203
	(15023640816426602203, 348),
	//d: Dreamcast Sound Format -> hash([80, 83, 70, 18]) = 2012271409804501156
	(2012271409804501156, 349),
	//d: Puffer encrypted archive -> hash([80, 85, 70, 88]) = 16731047695681767417
	(16731047695681767417, 350),
	//d: Parrot Video Encapsulation -> hash([80, 97, 86, 69]) = 9042537267362988236
	(9042537267362988236, 351),
	//d: Quicken data -> hash([81, 69, 76, 32]) = 10303026566603252429
	(10303026566603252429, 352),
	//d: Qcow Disk Image -> hash([81, 70, 73]) = 9190292744915928069
	(9190292744915928069, 353),
	//d: RIFF Qualcomm PureVoice -> hash([81, 76, 67, 77, 102, 109, 116, 32]) = 16610117407335321467
	(16610117407335321467, 354),
	//d: Quicken data file -> hash([81, 87, 32, 86, 101, 114, 46, 32]) = 13589128298071210053
	(13589128298071210053, 355),
	//d: Outlook-Exchange message subheader -> hash([82, 0, 111, 0, 111, 0, 116, 0, 32, 0, 69, 0, 110, 0, 116, 0, 114, 0, 121, 0]) = 14365239940465513454
	(14365239940465513454, 356),
	//d: Shareaza (P2P) thumbnail -> hash([82, 65, 90, 65, 84, 68, 66, 49]) = 2838490897513708348
	(2838490897513708348, 357),
	//d: R saved work space -> hash([82, 68, 88, 50, 10]) = 13465373965573381476
	(13465373965573381476, 358),
	//d: WinNT Registry-Registry Undo files -> hash([82, 69, 71, 69, 68, 73, 84]) = 15009600364926456548
	(15009600364926456548, 359),
	//d: Antenna data file -> hash([82, 69, 86, 78, 85, 77, 58, 44]) = 4795713445894102076
	(4795713445894102076, 360),
	//d: Windows animated cursor -> hash([82, 73, 70, 70]) = 18397992418785953452
	(18397992418785953452, 361),
	//d: Corel Presentation Exchange metadata -> hash([82, 73, 70, 70]) = 18397992418785953452
	(18397992418785953452, 362),
	//d: CorelDraw document -> hash([82, 73, 70, 70]) = 18397992418785953452
	(18397992418785953452, 363),
	//d: Video CD MPEG movie -> hash([82, 73, 70, 70]) = 18397992418785953452
	(18397992418785953452, 364),
	//d: Micrografx Designer graphic -> hash([82, 73, 70, 70]) = 18397992418785953452
	(18397992418785953452, 365),
	//d: 4X Movie video -> hash([82, 73, 70, 70]) = 18397992418785953452
	(18397992418785953452, 366),
	//d: Resource Interchange File Format -> hash([82, 73, 70, 70]) = 18397992418785953452
	(18397992418785953452, 367),
	//d: RIFF Windows MIDI -> hash([82, 77, 73, 68, 100, 97, 116, 97]) = 8556617190544058313
	(8556617190544058313, 368),
	//d: WinNT Netmon capture file -> hash([82, 84, 83, 83]) = 5899871050049534524
	(5899871050049534524, 369),
	//d: WinRAR compressed archive -> hash([82, 97, 114, 33, 26, 7, 0]) = 9741651766814483167
	(9741651766814483167, 370),
	//d: Generic e-mail_1 -> hash([82, 101, 116, 117, 114, 110, 45, 80]) = 6377355678347321532
	(6377355678347321532, 371),
	//d: Windows prefetch -> hash([83, 67, 67, 65]) = 14970183546719303763
	(14970183546719303763, 372),
	//d: Underground Audio -> hash([83, 67, 72, 108]) = 7975362609948766789
	(7975362609948766789, 373),
	//d: Img Software Bitmap -> hash([83, 67, 77, 73]) = 3724065382465856596
	(3724065382465856596, 374),
	//d: SMPTE DPX (big endian) -> hash([83, 68, 80, 88]) = 16783249924092060505
	(16783249924092060505, 375),
	//d: Harvard Graphics presentation -> hash([83, 72, 79, 87]) = 5971692685478377281
	(5971692685478377281, 376),
	//d: Sietronics CPI XRD document -> hash([83, 73, 69, 84, 82, 79, 78, 73]) = 9628966152936767168
	(9628966152936767168, 377),
	//d: Flexible Image Transport System (FITS) file -> hash([83, 73, 77, 80, 76, 69, 32, 32, 61, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 84]) = 5982301306063213645
	(5982301306063213645, 378),
	//d: StuffIt archive -> hash([83, 73, 84, 33, 0]) = 13668664369904980830
	(13668664369904980830, 379),
	//d: SmartDraw Drawing file -> hash([83, 77, 65, 82, 84, 68, 82, 87]) = 12403425202941596481
	(12403425202941596481, 380),
	//d: StorageCraft ShadownProtect backup file -> hash([83, 80, 70, 73, 0]) = 2955581908950125774
	(2955581908950125774, 381),
	//d: MultiBit Bitcoin blockchain file -> hash([83, 80, 86, 66]) = 8345898457938681393
	(8345898457938681393, 382),
	//d: SQLite database file -> hash([83, 81, 76, 105, 116, 101, 32, 102, 111, 114, 109, 97, 116, 32, 51, 0]) = 16701391843940004335
	(16701391843940004335, 383),
	//d: DB2 conversion file -> hash([83, 81, 76, 79, 67, 79, 78, 86]) = 2464412035311430593
	(2464412035311430593, 384),
	//d: QBASIC SZDD file -> hash([83, 90, 32, 136, 240, 39, 51, 209]) = 16705228551566239146
	(16705228551566239146, 385),
	//d: SZDD file format -> hash([83, 90, 68, 68, 136, 240, 39, 51]) = 16464345078502417179
	(16464345078502417179, 386),
	//d: StuffIt compressed archive -> hash([83, 116, 117, 102, 102, 73, 116, 32]) = 12820753153155671717
	(12820753153155671717, 387),
	//d: SuperCalc worksheet -> hash([83, 117, 112, 101, 114, 67, 97, 108]) = 2219208478413280285
	(2219208478413280285, 388),
	//d: Wii-GameCube -> hash([84, 72, 80, 0]) = 7277029514089714535
	(7277029514089714535, 389),
	//d: GNU Info Reader file -> hash([84, 104, 105, 115, 32, 105, 115, 32]) = 15673406046178412227
	(15673406046178412227, 390),
	//d: Unicode extensions -> hash([85, 67, 69, 88]) = 11681818146437249462
	(11681818146437249462, 391),
	//d: UFA compressed archive -> hash([85, 70, 65, 198, 210, 193]) = 11064097666297803756
	(11064097666297803756, 392),
	//d: UFO Capture map file -> hash([85, 70, 79, 79, 114, 98, 105, 116]) = 3464828933788372370
	(3464828933788372370, 393),
	//d: Visual C PreCompiled header -> hash([86, 67, 80, 67, 72, 48]) = 13358696891805820355
	(13358696891805820355, 394),
	//d: Visual Basic User-defined Control file -> hash([86, 69, 82, 83, 73, 79, 78, 32]) = 12133420760505040656
	(12133420760505040656, 395),
	//d: MapInfo Interchange Format file -> hash([86, 101, 114, 115, 105, 111, 110, 32]) = 5234004945480371834
	(5234004945480371834, 396),
	//d: SPSS template -> hash([87, 4, 0, 0, 83, 80, 83, 83, 32, 116, 101, 109, 112, 108, 97, 116]) = 3544664504486654927
	(3544664504486654927, 397),
	//d: RIFF Windows Audio -> hash([87, 65, 86, 69, 102, 109, 116, 32]) = 6624224048416254929
	(6624224048416254929, 398),
	//d: RIFF WebP -> hash([87, 69, 66, 80]) = 12421159445055556487
	(12421159445055556487, 399),
	//d: Walkman MP3 file -> hash([87, 77, 77, 80]) = 14420579971849574396
	(14420579971849574396, 400),
	//d: WordStar for Windows file -> hash([87, 83, 50, 48, 48, 48]) = 14896938122711185203
	(14896938122711185203, 401),
	//d: WinZip compressed archive -> hash([87, 105, 110, 90, 105, 112]) = 9102511633085844145
	(9102511633085844145, 402),
	//d: Lotus WordPro file -> hash([87, 111, 114, 100, 80, 114, 111]) = 938054238092886765
	(938054238092886765, 403),
	//d: Exchange e-mail -> hash([88, 45]) = 16665439969543113976
	(16665439969543113976, 404),
	//d: Packet sniffer files -> hash([88, 67, 80, 0]) = 105474127799448263
	(105474127799448263, 405),
	//d: XPCOM libraries -> hash([88, 80, 67, 79, 77, 10, 84, 121]) = 4947848364576517704
	(4947848364576517704, 406),
	//d: SMPTE DPX file (little endian) -> hash([88, 80, 68, 83]) = 12515211093457787489
	(12515211093457787489, 407),
	//d: MS Publisher -> hash([88, 84]) = 10985526233509968571
	(10985526233509968571, 408),
	//d: ZOO compressed archive -> hash([90, 79, 79, 32]) = 7669575677187431591
	(7669575677187431591, 409),
	//d: Macromedia Shockwave Flash -> hash([90, 87, 83]) = 15216433190789876191
	(15216433190789876191, 410),
	//d: MS Exchange configuration file -> hash([91, 71, 101, 110, 101, 114, 97, 108]) = 16461142303825465358
	(16461142303825465358, 411),
	//d: Visual C++ Workbench Info File -> hash([91, 77, 83, 86, 67]) = 16118435848998044560
	(16118435848998044560, 412),
	//d: Dial-up networking file -> hash([91, 80, 104, 111, 110, 101, 93]) = 14446601332887110079
	(14446601332887110079, 413),
	//d: Lotus AMI Pro document_1 -> hash([91, 86, 69, 82, 93]) = 12200792267056514512
	(12200792267056514512, 414),
	//d: VocalTec VoIP media file -> hash([91, 86, 77, 68, 93]) = 17467254544332652436
	(17467254544332652436, 415),
	//d: Microsoft Code Page Translation file -> hash([91, 87, 105, 110, 100, 111, 119, 115]) = 17792640893332362273
	(17792640893332362273, 416),
	//d: Flight Simulator Aircraft Configuration -> hash([91, 102, 108, 116, 115, 105, 109, 46]) = 4956115084182222297
	(4956115084182222297, 417),
	//d: WinAmp Playlist -> hash([91, 112, 108, 97, 121, 108, 105, 115, 116, 93]) = 17468934187708140066
	(17468934187708140066, 418),
	//d: Lotus AMI Pro document_2 -> hash([91, 118, 101, 114, 93]) = 15966711126225605332
	(15966711126225605332, 419),
	//d: Husqvarna Designer -> hash([93, 252, 200, 0]) = 14800416251646358704
	(14800416251646358704, 420),
	//d: Jar archive -> hash([95, 39, 168, 137]) = 7258262955778121930
	(7258262955778121930, 421),
	//d: EnCase case file -> hash([95, 67, 65, 83, 69, 95]) = 314612979182751205
	(314612979182751205, 422),
	//d: Compressed archive file -> hash([96, 234]) = 17138294386798911611
	(17138294386798911611, 423),
	//d: UUencoded file -> hash([98, 101, 103, 105, 110]) = 13685747335103783438
	(13685747335103783438, 424),
	//d: UUencoded BASE64 file -> hash([98, 101, 103, 105, 110, 45, 98, 97, 115, 101, 54, 52]) = 1779914118518109962
	(1779914118518109962, 425),
	//d: Binary property list (plist) -> hash([98, 112, 108, 105, 115, 116]) = 9391679817959246505
	(9391679817959246505, 426),
	//d: Apple Core Audio File -> hash([99, 97, 102, 102]) = 16008730483640239029
	(16008730483640239029, 427),
	//d: Macintosh encrypted Disk image (v1) -> hash([99, 100, 115, 97, 101, 110, 99, 114]) = 7570340680373646020
	(7570340680373646020, 428),
	//d: Virtual PC HD image -> hash([99, 111, 110, 101, 99, 116, 105, 120]) = 11808870497296166837
	(11808870497296166837, 429),
	//d: Photoshop Custom Shape -> hash([99, 117, 115, 104, 0, 0, 0, 2]) = 7438108492577138566
	(7438108492577138566, 430),
	//d: Intel PROset-Wireless Profile -> hash([100, 0, 0, 0]) = 3353035888007523941
	(3353035888007523941, 431),
	//d: Torrent file -> hash([100, 56, 58, 97, 110, 110, 111, 117, 110, 99, 101]) = 12295987266863142129
	(12295987266863142129, 432),
	//d: Dalvik (Android) executable file -> hash([100, 101, 120, 10]) = 9978395312298384148
	(9978395312298384148, 433),
	//d: Audacity audio file -> hash([100, 110, 115, 46]) = 9788887864669970228
	(9788887864669970228, 434),
	//d: MS Visual Studio workspace file -> hash([100, 115, 119, 102, 105, 108, 101]) = 10660443467151429524
	(10660443467151429524, 435),
	//d: Macintosh encrypted Disk image (v2) -> hash([101, 110, 99, 114, 99, 100, 115, 97]) = 11479868422485250640
	(11479868422485250640, 436),
	//d: WinNT printer spool file -> hash([102, 73, 0, 0]) = 16984761514154800234
	(16984761514154800234, 437),
	//d: Free Lossless Audio Codec file -> hash([102, 76, 97, 67, 0, 0, 0, 34]) = 14891870025950627023
	(14891870025950627023, 438),
	//d: MPEG-4 video file_1 -> hash([102, 116, 121, 112, 51, 103, 112, 53]) = 10568995227051501515
	(10568995227051501515, 439),
	//d: Apple Lossless Audio Codec file -> hash([102, 116, 121, 112, 77, 52, 65, 32]) = 10792611086670063362
	(10792611086670063362, 440),
	//d: ISO Media-MPEG v4-iTunes AVC-LC -> hash([102, 116, 121, 112, 77, 52, 86, 32]) = 12376826552069134313
	(12376826552069134313, 441),
	//d: MPEG-4 video file_2 -> hash([102, 116, 121, 112, 77, 83, 78, 86]) = 17229552598237652543
	(17229552598237652543, 442),
	//d: ISO Base Media file (MPEG-4) v1 -> hash([102, 116, 121, 112, 105, 115, 111, 109]) = 17561739305815583075
	(17561739305815583075, 443),
	//d: MPEG-4 video-QuickTime file -> hash([102, 116, 121, 112, 109, 112, 52, 50]) = 2010404778373949879
	(2010404778373949879, 444),
	//d: QuickTime movie_7 -> hash([102, 116, 121, 112, 113, 116, 32, 32]) = 13225095869127936644
	(13225095869127936644, 445),
	//d: Win2000-XP printer spool file -> hash([103, 73, 0, 0]) = 16990482113788516451
	(16990482113788516451, 446),
	//d: GIMP file -> hash([103, 105, 109, 112, 32, 120, 99, 102]) = 6380130072457146559
	(6380130072457146559, 447),
	//d: Win Server 2003 printer spool file -> hash([104, 73, 0, 0]) = 11281304413882545118
	(11281304413882545118, 448),
	//d: MacOS icon file -> hash([105, 99, 110, 115]) = 3520636262675083540
	(3520636262675083540, 449),
	//d: Skype user data file -> hash([108, 51, 51, 108]) = 15992272976462115840
	(15992272976462115840, 450),
	//d: QuickTime movie_1 -> hash([109, 111, 111, 118]) = 11566543354546237178
	(11566543354546237178, 451),
	//d: QuickTime movie_2 -> hash([102, 114, 101, 101]) = 12152805797951735951
	(12152805797951735951, 452),
	//d: QuickTime movie_3 -> hash([109, 100, 97, 116]) = 17503815421705271928
	(17503815421705271928, 453),
	//d: QuickTime movie_4 -> hash([119, 105, 100, 101]) = 6082271145342184402
	(6082271145342184402, 454),
	//d: QuickTime movie_5 -> hash([112, 110, 111, 116]) = 14902426125007088508
	(14902426125007088508, 455),
	//d: QuickTime movie_6 -> hash([115, 107, 105, 112]) = 13655945261694741786
	(13655945261694741786, 456),
	//d: Internet Explorer v11 Tracking Protection List -> hash([109, 115, 70, 105, 108, 116, 101, 114, 76, 105, 115, 116]) = 1136737986011342201
	(1136737986011342201, 457),
	//d: MultiBit Bitcoin wallet information -> hash([109, 117, 108, 116, 105, 66, 105, 116, 46, 105, 110, 102, 111]) = 9382352526071442903
	(9382352526071442903, 458),
	//d: SMS text (SIM) -> hash([111, 60]) = 11415055881155367355
	(11415055881155367355, 459),
	//d: 1Password 4 Cloud Keychain encrypted data -> hash([111, 112, 100, 97, 116, 97, 48, 49]) = 2444817588096058951
	(2444817588096058951, 460),
	//d: WinNT registry file -> hash([114, 101, 103, 102]) = 630697730753806893
	(630697730753806893, 461),
	//d: Sonic Foundry Acid Music File -> hash([114, 105, 102, 102]) = 14393405978914295242
	(14393405978914295242, 462),
	//d: RealMedia metafile -> hash([114, 116, 115, 112, 58, 47, 47]) = 15799570320548490384
	(15799570320548490384, 463),
	//d: Allegro Generic Packfile (compressed) -> hash([115, 108, 104, 33]) = 17653929109510326429
	(17653929109510326429, 464),
	//d: Allegro Generic Packfile (uncompressed) -> hash([115, 108, 104, 46]) = 1375658387675932274
	(1375658387675932274, 465),
	//d: PalmOS SuperMemo -> hash([115, 109, 95]) = 5033915219032059764
	(5033915219032059764, 466),
	//d: STL (STereoLithography) file -> hash([115, 111, 108, 105, 100]) = 6178241901716839411
	(6178241901716839411, 467),
	//d: CALS raster bitmap -> hash([115, 114, 99, 100, 111, 99, 105, 100]) = 12680444183603271722
	(12680444183603271722, 468),
	//d: PowerBASIC Debugger Symbols -> hash([115, 122, 101, 122]) = 1162646605282239607
	(1162646605282239607, 469),
	//d: PathWay Map file -> hash([116, 66, 77, 80, 75, 110, 87, 114]) = 7630703475934223864
	(7630703475934223864, 470),
	//d: TrueType font -> hash([116, 114, 117, 101, 0]) = 5735267476474488260
	(5735267476474488260, 471),
	//d: Tape Archive -> hash([117, 115, 116, 97, 114]) = 15093490663252114925
	(15093490663252114925, 472),
	//d: OpenEXR bitmap image -> hash([118, 47, 49, 1]) = 5063288780191180363
	(5063288780191180363, 473),
	//d: Qimage filter -> hash([118, 50, 48, 48, 51, 46, 49, 48]) = 3854491360898914390
	(3854491360898914390, 474),
	//d: MacOS X image file -> hash([120, 1, 115, 13, 98, 98, 96]) = 9056291555483045172
	(9056291555483045172, 475),
	//d: eXtensible ARchive file -> hash([120, 97, 114, 33]) = 11148118303969348732
	(11148118303969348732, 476),
	//d: ZoomBrowser Image Index -> hash([122, 98, 101, 120]) = 11930976850710238422
	(11930976850710238422, 477),
	//d: Windows application log -> hash([123, 13, 10, 111, 32]) = 2322690478821149051
	(2322690478821149051, 478),
	//d: Google Drive Drawing link -> hash([123, 34, 117, 114, 108, 34, 58, 32, 34, 104, 116, 116, 112, 115, 58, 47]) = 14108610227469127501
	(14108610227469127501, 479),
	//d: MS WinMobile personal note -> hash([123, 92, 112, 119, 105]) = 7650169034903918573
	(7650169034903918573, 480),
	//d: Rich Text Format -> hash([123, 92, 114, 116, 102, 49]) = 4987143462989870433
	(4987143462989870433, 481),
	//d: Huskygram, Poem, or Singer embroidery -> hash([124, 75, 195, 116, 225, 200, 83, 164, 121, 185, 1, 29, 252, 79, 221, 19]) = 18282138108546501073
	(18282138108546501073, 482),
	//d: Corel Paint Shop Pro image -> hash([126, 66, 75, 0]) = 10346253226971746876
	(10346253226971746876, 483),
	//d: Easy Street Draw diagram file -> hash([126, 69, 83, 68, 119, 246, 133, 62, 191, 106, 210, 17, 69, 97, 115, 121, 32, 83, 116, 114, 101, 101, 116, 32, 68, 114, 97, 119]) = 1740606593541648471
	(1740606593541648471, 484),
	//d: Digital Watchdog DW-TP-500G audio -> hash([126, 116, 44, 1, 80, 112, 2, 77, 82]) = 7043311422475160491
	(7043311422475160491, 485),
	//d: ELF executable -> hash([127, 69, 76, 70]) = 18208435630836593064
	(18208435630836593064, 486),
	//d: Relocatable object code -> hash([128]) = 5931392229356490767
	(5931392229356490767, 487),
	//d: Dreamcast audio -> hash([128, 0, 0, 32, 3, 18, 4]) = 1120370220027783357
	(1120370220027783357, 488),
	//d: Kodak Cineon image -> hash([128, 42, 95, 215]) = 3553041117339088931
	(3553041117339088931, 489),
	//d: Outlook Express address book (Win95) -> hash([129, 50, 132, 193, 133, 5, 208, 17]) = 17231414000440036067
	(17231414000440036067, 490),
	//d: WordPerfect text -> hash([129, 205, 171]) = 9155076299838683897
	(9155076299838683897, 491),
	//d: PNG image -> hash([137, 80, 78, 71, 13, 10, 26, 10]) = 9706139868024978624
	(9706139868024978624, 492),
	//d: MS Answer Wizard -> hash([138, 1, 9, 0, 0, 0, 225, 8]) = 2092163740968874387
	(2092163740968874387, 493),
	//d: Hamarsoft compressed archive -> hash([145, 51, 72, 70]) = 11994272145028726459
	(11994272145028726459, 494),
	//d: PGP secret keyring_1 -> hash([149, 0]) = 9974005989799483602
	(9974005989799483602, 495),
	//d: PGP secret keyring_2 -> hash([149, 1]) = 18414489864099428217
	(18414489864099428217, 496),
	//d: JBOG2 image file -> hash([151, 74, 66, 50, 13, 10, 26, 10]) = 16581090239386784566
	(16581090239386784566, 497),
	//d: GPG public keyring -> hash([153]) = 63825469331598252
	(63825469331598252, 498),
	//d: PGP public keyring -> hash([153, 1]) = 3200864797359570396
	(3200864797359570396, 499),
	//d: Outlook address file -> hash([156, 203, 203, 141, 19, 117, 210, 17]) = 16114997331258481944
	(16114997331258481944, 500),
	//d: tcpdump (libpcap) capture file -> hash([161, 178, 195, 212]) = 11399593677639892930
	(11399593677639892930, 501),
	//d: Extended tcpdump (libpcap) capture file -> hash([161, 178, 205, 52]) = 295865036300156857
	(295865036300156857, 502),
	//d: Access Data FTK evidence -> hash([169, 13, 0, 0, 0, 0, 0, 0]) = 1196935870744040503
	(1196935870744040503, 503),
	//d: Khronos texture file -> hash([171, 75, 84, 88, 32, 49, 49, 187, 13, 10, 26, 10]) = 17785752179493076685
	(17785752179493076685, 504),
	//d: Quicken data -> hash([172, 158, 189, 143, 0, 0]) = 7425372057919218100
	(7425372057919218100, 505),
	//d: PowerPoint presentation subheader_3 -> hash([160, 70, 29, 240]) = 14797071921508013359
	(14797071921508013359, 506),
	//d: Java serialization data -> hash([172, 237]) = 15145667591594389712
	(15145667591594389712, 507),
	//d: BGBlitz position database file -> hash([172, 237, 0, 5, 115, 114, 0, 18]) = 18222368729458104667
	(18222368729458104667, 508),
	//d: Win95 password file -> hash([176, 77, 70, 67]) = 13952871963199325304
	(13952871963199325304, 509),
	//d: PCX bitmap -> hash([177, 104, 222, 58]) = 5702215737850214721
	(5702215737850214721, 510),
	//d: Acronis True Image_1 -> hash([180, 110, 104, 68]) = 10225139628990940874
	(10225139628990940874, 511),
	//d: Windows calendar -> hash([181, 162, 176, 179, 179, 176, 165, 181]) = 14697105147366101586
	(14697105147366101586, 512),
	//d: InstallShield Script -> hash([184, 201, 12, 0]) = 4999958325320566413
	(4999958325320566413, 513),
	//d: MS Write file_3 -> hash([190, 0, 0, 0, 171]) = 2663213936304563959
	(2663213936304563959, 514),
	//d: Palm Desktop DateBook -> hash([190, 186, 254, 202, 15, 80, 97, 108, 109, 83, 71, 32, 68, 97, 116, 97]) = 14022080272579970418
	(14022080272579970418, 515),
	//d: MS Agent Character file -> hash([195, 171, 205, 171]) = 9904667929429099310
	(9904667929429099310, 516),
	//d: Adobe encapsulated PostScript -> hash([197, 208, 211, 198]) = 2536931289495611466
	(2536931289495611466, 517),
	//d: Jeppesen FliteLog file -> hash([200, 0, 121, 0]) = 13842346489983470417
	(13842346489983470417, 518),
	//d: Java bytecode -> hash([202, 254, 186, 190]) = 1005577566319907916
	(1005577566319907916, 519),
	//d: Nokia phone backup file -> hash([204, 82, 51, 252, 233, 44, 24, 72, 175, 227, 54, 48, 26, 57, 64, 6]) = 2711158469548856031
	(2711158469548856031, 520),
	//d: NAV quarantined virus file -> hash([205, 32, 170, 170, 2, 0, 0, 0]) = 2023524207105302791
	(2023524207105302791, 521),
	//d: Acronis True Image_2 -> hash([206, 36, 185, 162, 32, 0, 0, 0]) = 12061473184521987512
	(12061473184521987512, 522),
	//d: Java Cryptography Extension keystore -> hash([206, 206, 206, 206]) = 2172616329965769457
	(2172616329965769457, 523),
	//d: OS X ABI Mach-O binary (32-bit reverse) -> hash([206, 250, 237, 254]) = 8681835837692979053
	(8681835837692979053, 524),
	//d: Perfect Office document -> hash([207, 17, 224, 161, 177, 26, 225, 0]) = 17098011950220093724
	(17098011950220093724, 525),
	//d: Outlook Express e-mail folder -> hash([207, 173, 18, 254]) = 5274292552413602012
	(5274292552413602012, 526),
	//d: OS X ABI Mach-O binary (64-bit reverse) -> hash([207, 250, 237, 254]) = 13050224141279768415
	(13050224141279768415, 527),
	//d: Microsoft Office document -> hash([208, 207, 17, 224, 161, 177, 26, 225]) = 6172877454844163836
	(6172877454844163836, 528),
	//d: CaseWare Working Papers -> hash([208, 207, 17, 224, 161, 177, 26, 225]) = 6172877454844163836
	(6172877454844163836, 529),
	//d: Access project file -> hash([208, 207, 17, 224, 161, 177, 26, 225]) = 6172877454844163836
	(6172877454844163836, 530),
	//d: Lotus-IBM Approach 97 file -> hash([208, 207, 17, 224, 161, 177, 26, 225]) = 6172877454844163836
	(6172877454844163836, 531),
	//d: MSWorks database file -> hash([208, 207, 17, 224, 161, 177, 26, 225]) = 6172877454844163836
	(6172877454844163836, 532),
	//d: Microsoft Common Console Document -> hash([208, 207, 17, 224, 161, 177, 26, 225]) = 6172877454844163836
	(6172877454844163836, 533),
	//d: Microsoft Installer package -> hash([208, 207, 17, 224, 161, 177, 26, 225]) = 6172877454844163836
	(6172877454844163836, 534),
	//d: Microsoft Installer Patch -> hash([208, 207, 17, 224, 161, 177, 26, 225]) = 6172877454844163836
	(6172877454844163836, 535),
	//d: Minitab data file -> hash([208, 207, 17, 224, 161, 177, 26, 225]) = 6172877454844163836
	(6172877454844163836, 536),
	//d: ArcMap GIS project file -> hash([208, 207, 17, 224, 161, 177, 26, 225]) = 6172877454844163836
	(6172877454844163836, 537),
	//d: Developer Studio File Options file -> hash([208, 207, 17, 224, 161, 177, 26, 225]) = 6172877454844163836
	(6172877454844163836, 538),
	//d: MS Publisher file -> hash([208, 207, 17, 224, 161, 177, 26, 225]) = 6172877454844163836
	(6172877454844163836, 539),
	//d: Revit Project file -> hash([208, 207, 17, 224, 161, 177, 26, 225]) = 6172877454844163836
	(6172877454844163836, 540),
	//d: Visual Studio Solution User Options file -> hash([208, 207, 17, 224, 161, 177, 26, 225]) = 6172877454844163836
	(6172877454844163836, 541),
	//d: SPSS output file -> hash([208, 207, 17, 224, 161, 177, 26, 225]) = 6172877454844163836
	(6172877454844163836, 542),
	//d: Visio file -> hash([208, 207, 17, 224, 161, 177, 26, 225]) = 6172877454844163836
	(6172877454844163836, 543),
	//d: MSWorks text document -> hash([208, 207, 17, 224, 161, 177, 26, 225]) = 6172877454844163836
	(6172877454844163836, 544),
	//d: WinPharoah filter file -> hash([210, 10, 0, 0]) = 18100849083634557755
	(18100849083634557755, 545),
	//d: AOL history|typed URL files -> hash([212, 42]) = 16977581322656949710
	(16977581322656949710, 546),
	//d: WinDump (winpcap) capture file -> hash([212, 195, 178, 161]) = 18248769009954605893
	(18248769009954605893, 547),
	//d: Windows graphics metafile -> hash([215, 205, 198, 154]) = 2743752468409792777
	(2743752468409792777, 548),
	//d: Word 2.0 file -> hash([219, 165, 45, 0]) = 5402140176791790802
	(5402140176791790802, 549),
	//d: Corel color palette -> hash([220, 220]) = 16718545787686248252
	(16718545787686248252, 550),
	//d: eFax file -> hash([220, 254]) = 5673601240623317576
	(5673601240623317576, 551),
	//d: Amiga icon -> hash([227, 16, 0, 1, 0, 0, 0, 0]) = 9504650538486527052
	(9504650538486527052, 552),
	//d: Win98 password file -> hash([227, 130, 133, 150]) = 4359397134973577628
	(4359397134973577628, 553),
	//d: MS OneNote note -> hash([228, 82, 92, 123, 140, 216, 167, 77]) = 12753430456623952161
	(12753430456623952161, 554),
	//d: Windows executable file_1 -> hash([232]) = 690327769870031221
	(690327769870031221, 555),
	//d: Windows executable file_2 -> hash([233]) = 3272516637640360569
	(3272516637640360569, 556),
	//d: Windows executable file_3 -> hash([235]) = 2122652392296244170
	(2122652392296244170, 557),
	//d: GEM Raster file -> hash([235, 60, 144, 42]) = 5035645508087636525
	(5035645508087636525, 558),
	//d: BitLocker boot sector (Vista) -> hash([235, 82, 144, 45, 70, 86, 69, 45]) = 11428907965570873474
	(11428907965570873474, 559),
	//d: BitLocker boot sector (Win7) -> hash([235, 88, 144, 45, 70, 86, 69, 45]) = 7278615782110505399
	(7278615782110505399, 560),
	//d: Word document subheader -> hash([236, 165, 193, 0]) = 5753486724243141143
	(5753486724243141143, 561),
	//d: RedHat Package Manager -> hash([237, 171, 238, 219]) = 14084455035762929860
	(14084455035762929860, 562),
	//d: UTF-8 file -> hash([239, 187, 191]) = 6345701843328044809
	(6345701843328044809, 563),
	//d: Windows Script Component (UTF-8)_1 -> hash([239, 187, 191, 60]) = 16299468971618731842
	(16299468971618731842, 564),
	//d: Windows Script Component (UTF-8)_2 -> hash([239, 187, 191, 60, 63]) = 13427796350910505524
	(13427796350910505524, 565),
	//d: YouTube Timed Text (subtitle) file -> hash([239, 187, 191, 60, 63, 120, 109, 108, 32, 118, 101, 114, 115, 105, 111, 110]) = 1882023074976681968
	(1882023074976681968, 566),
	//d: FAT12 File Allocation Table -> hash([240, 255, 255]) = 16245486214957077122
	(16245486214957077122, 567),
	//d: FAT16 File Allocation Table -> hash([248, 255, 255, 255]) = 17504154988632287447
	(17504154988632287447, 568),
	//d: FAT32 File Allocation Table_1 -> hash([248, 255, 255, 15, 255, 255, 255, 15]) = 3992715091087810531
	(3992715091087810531, 569),
	//d: FAT32 File Allocation Table_2 -> hash([248, 255, 255, 15, 255, 255, 255, 255]) = 795271610960730361
	(795271610960730361, 570),
	//d: Bitcoin-Qt blockchain block file -> hash([249, 190, 180, 217]) = 7414039216512328709
	(7414039216512328709, 571),
	//d: XZ archive -> hash([253, 55, 122, 88, 90, 0]) = 10660801035452081569
	(10660801035452081569, 572),
	//d: MS Publisher subheader -> hash([253, 55, 122, 88, 90, 0]) = 10660801035452081569
	(10660801035452081569, 573),
	//d: Thumbs.db subheader -> hash([253, 255, 255, 255]) = 1652981677382765030
	(1652981677382765030, 574),
	//d: MS Publisher file subheader -> hash([253, 255, 255, 255, 2]) = 4553899758373718655
	(4553899758373718655, 575),
	//d: Visual Studio Solution subheader -> hash([253, 255, 255, 255, 4]) = 10099721364988892561
	(10099721364988892561, 576),
	//d: PowerPoint presentation subheader_4 -> hash([253, 255, 255, 255, 14, 0, 0, 0]) = 6007616398711052777
	(6007616398711052777, 577),
	//d: Excel spreadsheet subheader_2 -> hash([253, 255, 255, 255, 16]) = 11831775604362959291
	(11831775604362959291, 578),
	//d: PowerPoint presentation subheader_5 -> hash([253, 255, 255, 255, 28, 0, 0, 0]) = 13101414299736331653
	(13101414299736331653, 579),
	//d: Excel spreadsheet subheader_3 -> hash([253, 255, 255, 255, 31]) = 1768051065561838078
	(1768051065561838078, 580),
	//d: Developer Studio subheader -> hash([253, 255, 255, 255, 32]) = 8766475165476570925
	(8766475165476570925, 581),
	//d: Excel spreadsheet subheader_4 -> hash([253, 255, 255, 255, 34]) = 10643556937613738569
	(10643556937613738569, 582),
	//d: Excel spreadsheet subheader_5 -> hash([253, 255, 255, 255, 35]) = 3763366078381945425
	(3763366078381945425, 583),
	//d: Excel spreadsheet subheader_6 -> hash([253, 255, 255, 255, 40]) = 15529661756065685149
	(15529661756065685149, 584),
	//d: Excel spreadsheet subheader_7 -> hash([253, 255, 255, 255, 41]) = 15822939485546583006
	(15822939485546583006, 585),
	//d: PowerPoint presentation subheader_6 -> hash([253, 255, 255, 255, 67, 0, 0, 0]) = 3580214604499120689
	(3580214604499120689, 586),
	//d: OS X ABI Mach-O binary (32-bit) -> hash([254, 237, 250, 206]) = 11937158191088605618
	(11937158191088605618, 587),
	//d: OS X ABI Mach-O binary (64-bit) -> hash([254, 237, 250, 207]) = 10542898035901869868
	(10542898035901869868, 588),
	//d: JavaKeyStore -> hash([254, 237, 254, 237]) = 3072599625969527911
	(3072599625969527911, 589),
	//d: Symantex Ghost image file -> hash([254, 239]) = 14618849471460639668
	(14618849471460639668, 590),
	//d: UTF-16-UCS-2 file -> hash([254, 255]) = 121206119990298569
	(121206119990298569, 591),
	//d: Windows executable -> hash([255]) = 9399151345360787321
	(9399151345360787321, 592),
	//d: Works for Windows spreadsheet -> hash([255, 0, 2, 0, 4, 4, 5, 84]) = 6210720056969572478
	(6210720056969572478, 593),
	//d: QuickReport Report -> hash([255, 10, 0]) = 7163765202240122454
	(7163765202240122454, 594),
	//d: Windows international code page -> hash([255, 70, 79, 78, 84]) = 10158332022055099387
	(10158332022055099387, 595),
	//d: Keyboard driver file -> hash([255, 75, 69, 89, 66, 32, 32, 32]) = 2956768801228959264
	(2956768801228959264, 596),
	//d: WordPerfect text and graphics -> hash([255, 87, 80, 67]) = 2399513474755983627
	(2399513474755983627, 597),
	//d: Generic JPEGimage fil -> hash([255, 216]) = 13940972552278321085
	(13940972552278321085, 598),
	//d: JPEG-EXIF-SPIFF images -> hash([255, 216, 255]) = 15162639425083564747
	(15162639425083564747, 599),
	//d: MPEG-4 AAC audio -> hash([255, 241]) = 8097280608296272921
	(8097280608296272921, 600),
	//d: MPEG-2 AAC audio -> hash([255, 249]) = 6108141475780997155
	(6108141475780997155, 601),
	//d: Windows Registry file -> hash([255, 254]) = 13028606917763696409
	(13028606917763696409, 602),
	//d: UTF-32-UCS-2 file -> hash([255, 254]) = 13028606917763696409
	(13028606917763696409, 603),
	//d: UTF-32-UCS-4 file -> hash([255, 254, 0, 0]) = 8343710903526271871
	(8343710903526271871, 604),
	//d: MSinfo file -> hash([255, 254, 35, 0, 108, 0, 105, 0]) = 9229079588336049900
	(9229079588336049900, 605),
	//d: DOS system driver -> hash([255, 255, 255, 255]) = 6918818290800860217
	(6918818290800860217, 606),
]));
pub const MAX_HEADER_BYTES: usize = 8;