-
Notifications
You must be signed in to change notification settings - Fork 1
/
procs.json
1330 lines (1327 loc) · 177 KB
/
procs.json
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
javascript <<EOS
var processors = {
"686 Gen":["686 Gen","cpu_lookup.php?cpu=686+Gen", "287", "1019", "", ""],
"AMD Athlon":["AMD Athlon","cpu_lookup.php?cpu=AMD+Athlon", "325", "975", "", ""],
"AMD Athlon 1500+":["AMD Athlon 1500+","cpu_lookup.php?cpu=AMD+Athlon+1500%2B", "317", "985", "", ""],
"AMD Athlon 1640B":["AMD Athlon 1640B","cpu_lookup.php?cpu=AMD+Athlon+1640B", "685", "716", "13.70", "$50.00**"],
"AMD Athlon 2500+":["AMD Athlon 2500+","cpu_lookup.php?cpu=AMD+Athlon+2500%2B", "333", "966", "", ""],
"AMD Athlon 2650e":["AMD Athlon 2650e","cpu_lookup.php?cpu=AMD+Athlon+2650e", "403", "898", "", ""],
"AMD Athlon 2800+":["AMD Athlon 2800+","cpu_lookup.php?cpu=AMD+Athlon+2800%2B", "477", "825", "4.77", "$99.99**"],
"AMD Athlon 2850e":["AMD Athlon 2850e","cpu_lookup.php?cpu=AMD+Athlon+2850e", "488", "818", "", ""],
"AMD Athlon 3000+":["AMD Athlon 3000+","cpu_lookup.php?cpu=AMD+Athlon+3000%2B", "480", "820", "", ""],
"AMD Athlon 3100+":["AMD Athlon 3100+","cpu_lookup.php?cpu=AMD+Athlon+3100%2B", "485", "819", "", ""],
"AMD Athlon 4":["AMD Athlon 4","cpu_lookup.php?cpu=AMD+Athlon+4", "297", "1008", "", ""],
"AMD Athlon 5200 Dual-Core":["AMD Athlon 5200 Dual-Core","cpu_lookup.php?cpu=AMD+Athlon+5200+Dual-Core", "1439", "453", "26.23", "$54.87**"],
"AMD Athlon 64 2800+":["AMD Athlon 64 2800+","cpu_lookup.php?cpu=AMD+Athlon+64+2800%2B", "465", "837", "4.65", "$99.99**"],
"AMD Athlon 64 3000+":["AMD Athlon 64 3000+","cpu_lookup.php?cpu=AMD+Athlon+64+3000%2B", "491", "812", "12.28", "$39.99*"],
"AMD Athlon 64 3200+":["AMD Athlon 64 3200+","cpu_lookup.php?cpu=AMD+Athlon+64+3200%2B", "531", "783", "3.79", "$139.95**"],
"AMD Athlon 64 3300+":["AMD Athlon 64 3300+","cpu_lookup.php?cpu=AMD+Athlon+64+3300%2B", "608", "744", "", ""],
"AMD Athlon 64 3400+":["AMD Athlon 64 3400+","cpu_lookup.php?cpu=AMD+Athlon+64+3400%2B", "579", "758", "", ""],
"AMD Athlon 64 3500+":["AMD Athlon 64 3500+","cpu_lookup.php?cpu=AMD+Athlon+64+3500%2B", "567", "763", "7.09", "$79.99*"],
"AMD Athlon 64 3600+":["AMD Athlon 64 3600+","cpu_lookup.php?cpu=AMD+Athlon+64+3600%2B", "601", "747", "", ""],
"AMD Athlon 64 3700+":["AMD Athlon 64 3700+","cpu_lookup.php?cpu=AMD+Athlon+64+3700%2B", "594", "750", "11.88", "$50.00*"],
"AMD Athlon 64 3800+":["AMD Athlon 64 3800+","cpu_lookup.php?cpu=AMD+Athlon+64+3800%2B", "612", "740", "2.66", "$229.95**"],
"AMD Athlon 64 4000+":["AMD Athlon 64 4000+","cpu_lookup.php?cpu=AMD+Athlon+64+4000%2B", "655", "728", "3.48", "$187.95**"],
"AMD Athlon 64 FX-51":["AMD Athlon 64 FX-51","cpu_lookup.php?cpu=AMD+Athlon+64+FX-51", "451", "846", "", ""],
"AMD Athlon 64 FX-53":["AMD Athlon 64 FX-53","cpu_lookup.php?cpu=AMD+Athlon+64+FX-53", "656", "727", "", ""],
"AMD Athlon 64 FX-55":["AMD Athlon 64 FX-55","cpu_lookup.php?cpu=AMD+Athlon+64+FX-55", "685", "715", "1.14", "$598.95**"],
"AMD Athlon 64 FX-57":["AMD Athlon 64 FX-57","cpu_lookup.php?cpu=AMD+Athlon+64+FX-57", "755", "701", "", ""],
"AMD Athlon 64 FX-60 Dual Core":["AMD Athlon 64 FX-60 Dual Core","cpu_lookup.php?cpu=AMD+Athlon+64+FX-60+Dual+Core", "1419", "460", "", ""],
"AMD Athlon 64 FX-62 Dual Core":["AMD Athlon 64 FX-62 Dual Core","cpu_lookup.php?cpu=AMD+Athlon+64+FX-62+Dual+Core", "1582", "412", "", ""],
"AMD Athlon 64 FX-74":["AMD Athlon 64 FX-74","cpu_lookup.php?cpu=AMD+Athlon+64+FX-74", "1469", "445", "2.94", "$499.50**"],
"AMD Athlon 64 X2":["AMD Athlon 64 X2","cpu_lookup.php?cpu=AMD+Athlon+64+X2", "760", "697", "", ""],
"AMD Athlon 64 X2 Dual Core 3600+":["AMD Athlon 64 X2 Dual Core 3600+","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual+Core+3600%2B", "1010", "603", "", ""],
"AMD Athlon 64 X2 Dual Core 3800+":["AMD Athlon 64 X2 Dual Core 3800+","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual+Core+3800%2B", "1049", "590", "", ""],
"AMD Athlon 64 X2 Dual Core 4000+":["AMD Athlon 64 X2 Dual Core 4000+","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual+Core+4000%2B", "1098", "574", "", ""],
"AMD Athlon 64 X2 Dual Core 4200+":["AMD Athlon 64 X2 Dual Core 4200+","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual+Core+4200%2B", "1154", "549", "", ""],
"AMD Athlon 64 X2 Dual Core 4400+":["AMD Athlon 64 X2 Dual Core 4400+","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual+Core+4400%2B", "1194", "534", "3.99", "$298.95**"],
"AMD Athlon 64 X2 Dual Core 4600+":["AMD Athlon 64 X2 Dual Core 4600+","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual+Core+4600%2B", "1264", "512", "6.02", "$210.00**"],
"AMD Athlon 64 X2 Dual Core 4800+":["AMD Athlon 64 X2 Dual Core 4800+","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual+Core+4800%2B", "1314", "488", "18.00", "$73.00*"],
"AMD Athlon 64 X2 Dual Core 5000+":["AMD Athlon 64 X2 Dual Core 5000+","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual+Core+5000%2B", "1361", "477", "7.03", "$193.48*"],
"AMD Athlon 64 X2 Dual Core 5200+":["AMD Athlon 64 X2 Dual Core 5200+","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual+Core+5200%2B", "1423", "459", "30.28", "$46.99*"],
"AMD Athlon 64 X2 Dual Core 5400+":["AMD Athlon 64 X2 Dual Core 5400+","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual+Core+5400%2B", "1526", "431", "28.80", "$52.99**"],
"AMD Athlon 64 X2 Dual Core 5600+":["AMD Athlon 64 X2 Dual Core 5600+","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual+Core+5600%2B", "1539", "424", "15.24", "$101.00**"],
"AMD Athlon 64 X2 Dual Core 5800+":["AMD Athlon 64 X2 Dual Core 5800+","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual+Core+5800%2B", "1686", "380", "18.73", "$90.00**"],
"AMD Athlon 64 X2 Dual Core 6000+":["AMD Athlon 64 X2 Dual Core 6000+","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual+Core+6000%2B", "1646", "393", "9.68", "$169.99*"],
"AMD Athlon 64 X2 Dual Core 6400+":["AMD Athlon 64 X2 Dual Core 6400+","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual+Core+6400%2B", "1784", "353", "", ""],
"AMD Athlon 64 X2 Dual Core BE-230":["AMD Athlon 64 X2 Dual Core BE-230","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual+Core+BE-230", "1095", "579", "", ""],
"AMD Athlon 64 X2 Dual Core BE-2350":["AMD Athlon 64 X2 Dual Core BE-2350","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual+Core+BE-2350", "975", "619", "", ""],
"AMD Athlon 64 X2 Dual-Core TK-42":["AMD Athlon 64 X2 Dual-Core TK-42","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual-Core+TK-42", "907", "643", "", ""],
"AMD Athlon 64 X2 Dual-Core TK-53":["AMD Athlon 64 X2 Dual-Core TK-53","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual-Core+TK-53", "809", "680", "", ""],
"AMD Athlon 64 X2 Dual-Core TK-55":["AMD Athlon 64 X2 Dual-Core TK-55","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual-Core+TK-55", "854", "665", "", ""],
"AMD Athlon 64 X2 Dual-Core TK-57":["AMD Athlon 64 X2 Dual-Core TK-57","cpu_lookup.php?cpu=AMD+Athlon+64+X2+Dual-Core+TK-57", "918", "637", "", ""],
"AMD Athlon 64 X2 TK-55":["AMD Athlon 64 X2 TK-55","cpu_lookup.php?cpu=AMD+Athlon+64+X2+TK-55", "906", "644", "", ""],
"AMD Athlon 7450 Dual-Core":["AMD Athlon 7450 Dual-Core","cpu_lookup.php?cpu=AMD+Athlon+7450+Dual-Core", "1371", "474", "", ""],
"AMD Athlon 7550 Dual-Core":["AMD Athlon 7550 Dual-Core","cpu_lookup.php?cpu=AMD+Athlon+7550+Dual-Core", "1418", "461", "25.32", "$56.00*"],
"AMD Athlon 7750 Dual-Core":["AMD Athlon 7750 Dual-Core","cpu_lookup.php?cpu=AMD+Athlon+7750+Dual-Core", "1568", "416", "22.40", "$70.00*"],
"AMD Athlon 7850 Dual-Core":["AMD Athlon 7850 Dual-Core","cpu_lookup.php?cpu=AMD+Athlon+7850+Dual-Core", "1607", "403", "32.15", "$49.99**"],
"AMD Athlon 7850 Dual-Core 2.8G":["AMD Athlon 7850 Dual-Core 2.8G","cpu_lookup.php?cpu=AMD+Athlon+7850+Dual-Core+2.8G", "288", "1018", "", ""],
"AMD Athlon Dual Core 4050e":["AMD Athlon Dual Core 4050e","cpu_lookup.php?cpu=AMD+Athlon+Dual+Core+4050e", "1102", "568", "", ""],
"AMD Athlon Dual Core 4450B":["AMD Athlon Dual Core 4450B","cpu_lookup.php?cpu=AMD+Athlon+Dual+Core+4450B", "1256", "517", "", ""],
"AMD Athlon Dual Core 4450e":["AMD Athlon Dual Core 4450e","cpu_lookup.php?cpu=AMD+Athlon+Dual+Core+4450e", "1194", "535", "", ""],
"AMD Athlon Dual Core 4850B":["AMD Athlon Dual Core 4850B","cpu_lookup.php?cpu=AMD+Athlon+Dual+Core+4850B", "1387", "471", "", ""],
"AMD Athlon Dual Core 4850e":["AMD Athlon Dual Core 4850e","cpu_lookup.php?cpu=AMD+Athlon+Dual+Core+4850e", "1331", "485", "", ""],
"AMD Athlon Dual Core 5000B":["AMD Athlon Dual Core 5000B","cpu_lookup.php?cpu=AMD+Athlon+Dual+Core+5000B", "1303", "492", "", ""],
"AMD Athlon Dual Core 5050e":["AMD Athlon Dual Core 5050e","cpu_lookup.php?cpu=AMD+Athlon+Dual+Core+5050e", "1401", "464", "", ""],
"AMD Athlon Dual Core 5200B":["AMD Athlon Dual Core 5200B","cpu_lookup.php?cpu=AMD+Athlon+Dual+Core+5200B", "1393", "468", "", ""],
"AMD Athlon Dual Core 5400B":["AMD Athlon Dual Core 5400B","cpu_lookup.php?cpu=AMD+Athlon+Dual+Core+5400B", "1488", "442", "", ""],
"AMD Athlon II 160u":["AMD Athlon II 160u","cpu_lookup.php?cpu=AMD+Athlon+II+160u", "553", "770", "", ""],
"AMD Athlon II 170u":["AMD Athlon II 170u","cpu_lookup.php?cpu=AMD+Athlon+II+170u", "630", "736", "", ""],
"AMD Athlon II Dual-Core M300":["AMD Athlon II Dual-Core M300","cpu_lookup.php?cpu=AMD+Athlon+II+Dual-Core+M300", "1168", "543", "", ""],
"AMD Athlon II Dual-Core M320":["AMD Athlon II Dual-Core M320","cpu_lookup.php?cpu=AMD+Athlon+II+Dual-Core+M320", "1174", "541", "", ""],
"AMD Athlon II Dual-Core M340":["AMD Athlon II Dual-Core M340","cpu_lookup.php?cpu=AMD+Athlon+II+Dual-Core+M340", "1266", "509", "", ""],
"AMD Athlon II N330 Dual-Core":["AMD Athlon II N330 Dual-Core","cpu_lookup.php?cpu=AMD+Athlon+II+N330+Dual-Core", "1278", "501", "", ""],
"AMD Athlon II N350 Dual-Core":["AMD Athlon II N350 Dual-Core","cpu_lookup.php?cpu=AMD+Athlon+II+N350+Dual-Core", "1277", "502", "", ""],
"AMD Athlon II Neo K125":["AMD Athlon II Neo K125","cpu_lookup.php?cpu=AMD+Athlon+II+Neo+K125", "491", "813", "", ""],
"AMD Athlon II Neo K145":["AMD Athlon II Neo K145","cpu_lookup.php?cpu=AMD+Athlon+II+Neo+K145", "545", "774", "", ""],
"AMD Athlon II Neo K325 Dual-Core":["AMD Athlon II Neo K325 Dual-Core","cpu_lookup.php?cpu=AMD+Athlon+II+Neo+K325+Dual-Core", "778", "692", "", ""],
"AMD Athlon II Neo K345 Dual-Core":["AMD Athlon II Neo K345 Dual-Core","cpu_lookup.php?cpu=AMD+Athlon+II+Neo+K345+Dual-Core", "839", "668", "", ""],
"AMD Athlon II Neo N36L Dual-Core":["AMD Athlon II Neo N36L Dual-Core","cpu_lookup.php?cpu=AMD+Athlon+II+Neo+N36L+Dual-Core", "821", "676", "", ""],
"AMD Athlon II P320 Dual-Core":["AMD Athlon II P320 Dual-Core","cpu_lookup.php?cpu=AMD+Athlon+II+P320+Dual-Core", "1259", "515", "", ""],
"AMD Athlon II P340 Dual-Core":["AMD Athlon II P340 Dual-Core","cpu_lookup.php?cpu=AMD+Athlon+II+P340+Dual-Core", "1308", "490", "", ""],
"AMD Athlon II P360 Dual-Core":["AMD Athlon II P360 Dual-Core","cpu_lookup.php?cpu=AMD+Athlon+II+P360+Dual-Core", "1265", "511", "", ""],
"AMD Athlon II X2 210e":["AMD Athlon II X2 210e","cpu_lookup.php?cpu=AMD+Athlon+II+X2+210e", "1428", "457", "", ""],
"AMD Athlon II X2 215":["AMD Athlon II X2 215","cpu_lookup.php?cpu=AMD+Athlon+II+X2+215", "1607", "402", "", ""],
"AMD Athlon II X2 220":["AMD Athlon II X2 220","cpu_lookup.php?cpu=AMD+Athlon+II+X2+220", "1702", "374", "", ""],
"AMD Athlon II X2 235e":["AMD Athlon II X2 235e","cpu_lookup.php?cpu=AMD+Athlon+II+X2+235e", "1698", "376", "21.39", "$79.40*"],
"AMD Athlon II X2 240":["AMD Athlon II X2 240","cpu_lookup.php?cpu=AMD+Athlon+II+X2+240", "1600", "408", "28.08", "$56.99**"],
"AMD Athlon II X2 240e":["AMD Athlon II X2 240e","cpu_lookup.php?cpu=AMD+Athlon+II+X2+240e", "1610", "401", "21.45", "$75.06**"],
"AMD Athlon II X2 245":["AMD Athlon II X2 245","cpu_lookup.php?cpu=AMD+Athlon+II+X2+245", "1658", "388", "30.15", "$54.99*"],
"AMD Athlon II X2 245e":["AMD Athlon II X2 245e","cpu_lookup.php?cpu=AMD+Athlon+II+X2+245e", "1727", "365", "22.35", "$77.28*"],
"AMD Athlon II X2 250":["AMD Athlon II X2 250","cpu_lookup.php?cpu=AMD+Athlon+II+X2+250", "1715", "369", "28.59", "$59.99*"],
"AMD Athlon II X2 250u":["AMD Athlon II X2 250u","cpu_lookup.php?cpu=AMD+Athlon+II+X2+250u", "981", "615", "", ""],
"AMD Athlon II X2 255":["AMD Athlon II X2 255","cpu_lookup.php?cpu=AMD+Athlon+II+X2+255", "1836", "343", "29.62", "$61.99*"],
"AMD Athlon II X2 260":["AMD Athlon II X2 260","cpu_lookup.php?cpu=AMD+Athlon+II+X2+260", "1906", "332", "27.23", "$69.99*"],
"AMD Athlon II X2 260u":["AMD Athlon II X2 260u","cpu_lookup.php?cpu=AMD+Athlon+II+X2+260u", "1110", "566", "", ""],
"AMD Athlon II X2 265":["AMD Athlon II X2 265","cpu_lookup.php?cpu=AMD+Athlon+II+X2+265", "2033", "304", "27.85", "$72.99*"],
"AMD Athlon II X2 4400e":["AMD Athlon II X2 4400e","cpu_lookup.php?cpu=AMD+Athlon+II+X2+4400e", "1726", "366", "", ""],
"AMD Athlon II X2 4450e":["AMD Athlon II X2 4450e","cpu_lookup.php?cpu=AMD+Athlon+II+X2+4450e", "1945", "321", "", ""],
"AMD Athlon II X2 B22":["AMD Athlon II X2 B22","cpu_lookup.php?cpu=AMD+Athlon+II+X2+B22", "1528", "429", "", ""],
"AMD Athlon II X2 B24":["AMD Athlon II X2 B24","cpu_lookup.php?cpu=AMD+Athlon+II+X2+B24", "1630", "395", "", ""],
"AMD Athlon II X3 400e":["AMD Athlon II X3 400e","cpu_lookup.php?cpu=AMD+Athlon+II+X3+400e", "1984", "310", "18.47", "$107.43**"],
"AMD Athlon II X3 405e":["AMD Athlon II X3 405e","cpu_lookup.php?cpu=AMD+Athlon+II+X3+405e", "2069", "298", "17.71", "$116.82*"],
"AMD Athlon II X3 415e":["AMD Athlon II X3 415e","cpu_lookup.php?cpu=AMD+Athlon+II+X3+415e", "2244", "275", "20.97", "$106.99*"],
"AMD Athlon II X3 425":["AMD Athlon II X3 425","cpu_lookup.php?cpu=AMD+Athlon+II+X3+425", "2328", "264", "38.17", "$60.99**"],
"AMD Athlon II X3 435":["AMD Athlon II X3 435","cpu_lookup.php?cpu=AMD+Athlon+II+X3+435", "2577", "237", "36.82", "$69.99**"],
"AMD Athlon II X3 440":["AMD Athlon II X3 440","cpu_lookup.php?cpu=AMD+Athlon+II+X3+440", "2565", "240", "33.75", "$75.99**"],
"AMD Athlon II X3 445":["AMD Athlon II X3 445","cpu_lookup.php?cpu=AMD+Athlon+II+X3+445", "2727", "222", "33.13", "$82.30*"],
"AMD Athlon II X3 450":["AMD Athlon II X3 450","cpu_lookup.php?cpu=AMD+Athlon+II+X3+450", "2793", "213", "34.92", "$79.99*"],
"AMD Athlon II X3 455":["AMD Athlon II X3 455","cpu_lookup.php?cpu=AMD+Athlon+II+X3+455", "2780", "217", "30.55", "$90.99*"],
"AMD Athlon II X4 555":["AMD Athlon II X4 555","cpu_lookup.php?cpu=AMD+Athlon+II+X4+555", "4069", "112", "", ""],
"AMD Athlon II X4 600e":["AMD Athlon II X4 600e","cpu_lookup.php?cpu=AMD+Athlon+II+X4+600e", "2619", "235", "21.84", "$119.92*"],
"AMD Athlon II X4 605e":["AMD Athlon II X4 605e","cpu_lookup.php?cpu=AMD+Athlon+II+X4+605e", "2664", "228", "18.89", "$140.99**"],
"AMD Athlon II X4 610e":["AMD Athlon II X4 610e","cpu_lookup.php?cpu=AMD+Athlon+II+X4+610e", "2793", "212", "19.81", "$140.99*"],
"AMD Athlon II X4 615e":["AMD Athlon II X4 615e","cpu_lookup.php?cpu=AMD+Athlon+II+X4+615e", "2970", "201", "17.68", "$167.95*"],
"AMD Athlon II X4 620":["AMD Athlon II X4 620","cpu_lookup.php?cpu=AMD+Athlon+II+X4+620", "2985", "199", "33.54", "$89.00**"],
"AMD Athlon II X4 630":["AMD Athlon II X4 630","cpu_lookup.php?cpu=AMD+Athlon+II+X4+630", "3254", "178", "36.16", "$89.99*"],
"AMD Athlon II X4 635":["AMD Athlon II X4 635","cpu_lookup.php?cpu=AMD+Athlon+II+X4+635", "3349", "170", "40.85", "$81.99*"],
"AMD Athlon II X4 640":["AMD Athlon II X4 640","cpu_lookup.php?cpu=AMD+Athlon+II+X4+640", "3474", "159", "34.74", "$99.99*"],
"AMD Athlon II X4 6400e":["AMD Athlon II X4 6400e","cpu_lookup.php?cpu=AMD+Athlon+II+X4+6400e", "2497", "245", "", ""],
"AMD Athlon II X4 645":["AMD Athlon II X4 645","cpu_lookup.php?cpu=AMD+Athlon+II+X4+645", "3660", "141", "33.28", "$109.99*"],
"AMD Athlon L110":["AMD Athlon L110","cpu_lookup.php?cpu=AMD+Athlon+L110", "301", "1006", "", ""],
"AMD Athlon LE-1600":["AMD Athlon LE-1600","cpu_lookup.php?cpu=AMD+Athlon+LE-1600", "594", "749", "", ""],
"AMD Athlon LE-1620":["AMD Athlon LE-1620","cpu_lookup.php?cpu=AMD+Athlon+LE-1620", "641", "733", "", ""],
"AMD Athlon LE-1640":["AMD Athlon LE-1640","cpu_lookup.php?cpu=AMD+Athlon+LE-1640", "700", "710", "", ""],
"AMD Athlon LE-1660":["AMD Athlon LE-1660","cpu_lookup.php?cpu=AMD+Athlon+LE-1660", "752", "703", "", ""],
"AMD Athlon MP":["AMD Athlon MP","cpu_lookup.php?cpu=AMD+Athlon+MP", "230", "1076", "", ""],
"AMD Athlon MP 1700+":["AMD Athlon MP 1700+","cpu_lookup.php?cpu=AMD+Athlon+MP+1700%2B", "343", "954", "", ""],
"AMD Athlon MP 1800+":["AMD Athlon MP 1800+","cpu_lookup.php?cpu=AMD+Athlon+MP+1800%2B", "306", "1001", "", ""],
"AMD Athlon Neo MV-40":["AMD Athlon Neo MV-40","cpu_lookup.php?cpu=AMD+Athlon+Neo+MV-40", "388", "915", "", ""],
"AMD Athlon Neo X2 Dual Core 6850e":["AMD Athlon Neo X2 Dual Core 6850e","cpu_lookup.php?cpu=AMD+Athlon+Neo+X2+Dual+Core+6850e", "1014", "600", "", ""],
"AMD Athlon Neo X2 Dual Core L325":["AMD Athlon Neo X2 Dual Core L325","cpu_lookup.php?cpu=AMD+Athlon+Neo+X2+Dual+Core+L325", "823", "675", "", ""],
"AMD Athlon Neo X2 Dual Core L335":["AMD Athlon Neo X2 Dual Core L335","cpu_lookup.php?cpu=AMD+Athlon+Neo+X2+Dual+Core+L335", "856", "664", "", ""],
"AMD Athlon Prosowwor":["AMD Athlon Prosowwor","cpu_lookup.php?cpu=AMD+Athlon+Prosowwor", "277", "1035", "", ""],
"AMD Athlon prosussor":["AMD Athlon prosussor","cpu_lookup.php?cpu=AMD+Athlon+prosussor", "433", "863", "", ""],
"AMD Athlon Proswssor":["AMD Athlon Proswssor","cpu_lookup.php?cpu=AMD+Athlon+Proswssor", "396", "905", "", ""],
"AMD Athlon Pros],ssor":["AMD Athlon Pros],ssor","cpu_lookup.php?cpu=AMD+Athlon+Pros%7Dssor", "391", "911", "", ""],
"AMD Athlon QI-46":["AMD Athlon QI-46","cpu_lookup.php?cpu=AMD+Athlon+QI-46", "473", "828", "", ""],
"AMD Athlon TF-20":["AMD Athlon TF-20","cpu_lookup.php?cpu=AMD+Athlon+TF-20", "398", "902", "", ""],
"AMD Athlon TF-36":["AMD Athlon TF-36","cpu_lookup.php?cpu=AMD+Athlon+TF-36", "530", "784", "", ""],
"AMD Athlon X2 215":["AMD Athlon X2 215","cpu_lookup.php?cpu=AMD+Athlon+X2+215", "1651", "392", "", ""],
"AMD Athlon X2 Dual Core 3250e":["AMD Athlon X2 Dual Core 3250e","cpu_lookup.php?cpu=AMD+Athlon+X2+Dual+Core+3250e", "813", "678", "", ""],
"AMD Athlon X2 Dual Core 6850e":["AMD Athlon X2 Dual Core 6850e","cpu_lookup.php?cpu=AMD+Athlon+X2+Dual+Core+6850e", "889", "652", "", ""],
"AMD Athlon X2 Dual Core BE-2300":["AMD Athlon X2 Dual Core BE-2300","cpu_lookup.php?cpu=AMD+Athlon+X2+Dual+Core+BE-2300", "1035", "594", "", ""],
"AMD Athlon X2 Dual Core BE-2350":["AMD Athlon X2 Dual Core BE-2350","cpu_lookup.php?cpu=AMD+Athlon+X2+Dual+Core+BE-2350", "1099", "571", "", ""],
"AMD Athlon X2 Dual Core BE-2400":["AMD Athlon X2 Dual Core BE-2400","cpu_lookup.php?cpu=AMD+Athlon+X2+Dual+Core+BE-2400", "1219", "525", "", ""],
"AMD Athlon X2 Dual Core L310":["AMD Athlon X2 Dual Core L310","cpu_lookup.php?cpu=AMD+Athlon+X2+Dual+Core+L310", "673", "721", "", ""],
"AMD Athlon X2 Dual-Core QL-60":["AMD Athlon X2 Dual-Core QL-60","cpu_lookup.php?cpu=AMD+Athlon+X2+Dual-Core+QL-60", "908", "642", "", ""],
"AMD Athlon X2 Dual-Core QL-62":["AMD Athlon X2 Dual-Core QL-62","cpu_lookup.php?cpu=AMD+Athlon+X2+Dual-Core+QL-62", "990", "610", "", ""],
"AMD Athlon X2 Dual-Core QL-64":["AMD Athlon X2 Dual-Core QL-64","cpu_lookup.php?cpu=AMD+Athlon+X2+Dual-Core+QL-64", "1039", "593", "", ""],
"AMD Athlon X2 Dual-Core QL-65":["AMD Athlon X2 Dual-Core QL-65","cpu_lookup.php?cpu=AMD+Athlon+X2+Dual-Core+QL-65", "1081", "583", "", ""],
"AMD Athlon X2 Dual-Core QL-66":["AMD Athlon X2 Dual-Core QL-66","cpu_lookup.php?cpu=AMD+Athlon+X2+Dual-Core+QL-66", "1098", "575", "", ""],
"AMD Athlon X3 440":["AMD Athlon X3 440","cpu_lookup.php?cpu=AMD+Athlon+X3+440", "2382", "257", "27.07", "$87.99**"],
"AMD Athlon X3 450":["AMD Athlon X3 450","cpu_lookup.php?cpu=AMD+Athlon+X3+450", "3064", "193", "38.79", "$78.99**"],
"AMD Athlon X4 640":["AMD Athlon X4 640","cpu_lookup.php?cpu=AMD+Athlon+X4+640", "3741", "134", "", ""],
"AMD Athlon XP":["AMD Athlon XP","cpu_lookup.php?cpu=AMD+Athlon+XP", "342", "955", "", ""],
"AMD Athlon XP 1500":["AMD Athlon XP 1500","cpu_lookup.php?cpu=AMD+Athlon+XP+1500", "282", "1023", "", ""],
"AMD Athlon XP 1500+":["AMD Athlon XP 1500+","cpu_lookup.php?cpu=AMD+Athlon+XP+1500%2B", "280", "1029", "", ""],
"AMD Athlon XP 1600+":["AMD Athlon XP 1600+","cpu_lookup.php?cpu=AMD+Athlon+XP+1600%2B", "294", "1010", "", ""],
"AMD Athlon XP 1700":["AMD Athlon XP 1700","cpu_lookup.php?cpu=AMD+Athlon+XP+1700", "344", "953", "", ""],
"AMD Athlon XP 1700+":["AMD Athlon XP 1700+","cpu_lookup.php?cpu=AMD+Athlon+XP+1700%2B", "311", "993", "", ""],
"AMD Athlon XP 1800+":["AMD Athlon XP 1800+","cpu_lookup.php?cpu=AMD+Athlon+XP+1800%2B", "331", "967", "5.61", "$58.95**"],
"AMD Athlon XP 1900+":["AMD Athlon XP 1900+","cpu_lookup.php?cpu=AMD+Athlon+XP+1900%2B", "345", "951", "", ""],
"AMD Athlon XP 2000+":["AMD Athlon XP 2000+","cpu_lookup.php?cpu=AMD+Athlon+XP+2000%2B", "361", "940", "", ""],
"AMD Athlon XP 2100+":["AMD Athlon XP 2100+","cpu_lookup.php?cpu=AMD+Athlon+XP+2100%2B", "371", "927", "", ""],
"AMD Athlon XP 2200+":["AMD Athlon XP 2200+","cpu_lookup.php?cpu=AMD+Athlon+XP+2200%2B", "387", "917", "", ""],
"AMD Athlon XP 2400+":["AMD Athlon XP 2400+","cpu_lookup.php?cpu=AMD+Athlon+XP+2400%2B", "430", "865", "", ""],
"AMD Athlon XP 2500+":["AMD Athlon XP 2500+","cpu_lookup.php?cpu=AMD+Athlon+XP+2500%2B", "409", "886", "", ""],
"AMD Athlon XP 2600+":["AMD Athlon XP 2600+","cpu_lookup.php?cpu=AMD+Athlon+XP+2600%2B", "443", "855", "12.02", "$36.87*"],
"AMD Athlon XP 2700+":["AMD Athlon XP 2700+","cpu_lookup.php?cpu=AMD+Athlon+XP+2700%2B", "471", "831", "5.13", "$91.79*"],
"AMD Athlon XP 2800+":["AMD Athlon XP 2800+","cpu_lookup.php?cpu=AMD+Athlon+XP+2800%2B", "462", "838", "", ""],
"AMD Athlon XP 2900+":["AMD Athlon XP 2900+","cpu_lookup.php?cpu=AMD+Athlon+XP+2900%2B", "465", "836", "", ""],
"AMD Athlon XP 3000+":["AMD Athlon XP 3000+","cpu_lookup.php?cpu=AMD+Athlon+XP+3000%2B", "468", "834", "", ""],
"AMD Athlon XP 3100+":["AMD Athlon XP 3100+","cpu_lookup.php?cpu=AMD+Athlon+XP+3100%2B", "477", "823", "", ""],
"AMD Athlon XP 3200+":["AMD Athlon XP 3200+","cpu_lookup.php?cpu=AMD+Athlon+XP+3200%2B", "499", "806", "", ""],
"AMD Athlon XP rrsossor":["AMD Athlon XP rrsossor","cpu_lookup.php?cpu=AMD+Athlon+XP+rr%7Fsossor", "369", "929", "", ""],
"AMD Athlon XP-M":["AMD Athlon XP-M","cpu_lookup.php?cpu=AMD+Athlon+XP-M", "539", "777", "", ""],
"AMD Athlon64 X2 Dual Core 4800+":["AMD Athlon64 X2 Dual Core 4800+","cpu_lookup.php?cpu=AMD+Athlon64+X2+Dual+Core+4800%2B", "1258", "516", "", ""],
"AMD C-50":["AMD C-50","cpu_lookup.php?cpu=AMD+C-50", "455", "844", "", ""],
"AMD Duron":["AMD Duron","cpu_lookup.php?cpu=AMD+Duron", "272", "1039", "", ""],
"AMD Duron p":["AMD Duron p","cpu_lookup.php?cpu=AMD+Duron+p", "414", "883", "", ""],
"AMD E-350":["AMD E-350","cpu_lookup.php?cpu=AMD+E-350", "744", "704", "", ""],
"AMD Engineering Sample":["AMD Engineering Sample","cpu_lookup.php?cpu=AMD+Engineering+Sample", "3224", "180", "", ""],
"AMD Engineering Sample xx":["AMD Engineering Sample xx","cpu_lookup.php?cpu=AMD+Engineering+Sample+xx", "430", "866", "", ""],
"AMD Geode NX 1750":["AMD Geode NX 1750","cpu_lookup.php?cpu=AMD+Geode+NX+1750", "291", "1013", "", ""],
"AMD K7":["AMD K7","cpu_lookup.php?cpu=AMD+K7", "381", "922", "", ""],
"AMD K7 processo":["AMD K7 processo","cpu_lookup.php?cpu=AMD+K7+processo", "512", "799", "", ""],
"AMD Opteron 144":["AMD Opteron 144","cpu_lookup.php?cpu=AMD+Opteron+144", "514", "797", "", ""],
"AMD Opteron 146":["AMD Opteron 146","cpu_lookup.php?cpu=AMD+Opteron+146", "530", "785", "8.83", "$59.99**"],
"AMD Opteron 148":["AMD Opteron 148","cpu_lookup.php?cpu=AMD+Opteron+148", "596", "748", "", ""],
"AMD Opteron 150":["AMD Opteron 150","cpu_lookup.php?cpu=AMD+Opteron+150", "624", "739", "", ""],
"AMD Opteron 246":["AMD Opteron 246","cpu_lookup.php?cpu=AMD+Opteron+246", "663", "723", "", ""],
"AMD Opteron 252":["AMD Opteron 252","cpu_lookup.php?cpu=AMD+Opteron+252", "733", "706", "", ""],
"AMD Opteron 6128":["AMD Opteron 6128","cpu_lookup.php?cpu=AMD+Opteron+6128", "5147", "67", "18.65", "$276.00*"],
"AMD Opteron 6176 SE":["AMD Opteron 6176 SE","cpu_lookup.php?cpu=AMD+Opteron+6176+SE", "4508", "92", "3.25", "$1,386.00**"],
"AMD Phenom 8250 Triple-Core":["AMD Phenom 8250 Triple-Core","cpu_lookup.php?cpu=AMD+Phenom+8250+Triple-Core", "1953", "319", "", ""],
"AMD Phenom 8250e Triple-Core":["AMD Phenom 8250e Triple-Core","cpu_lookup.php?cpu=AMD+Phenom+8250e+Triple-Core", "1622", "398", "34.52", "$46.99**"],
"AMD Phenom 8400 Triple-Core":["AMD Phenom 8400 Triple-Core","cpu_lookup.php?cpu=AMD+Phenom+8400+Triple-Core", "1601", "407", "", ""],
"AMD Phenom 8450 Triple-Core":["AMD Phenom 8450 Triple-Core","cpu_lookup.php?cpu=AMD+Phenom+8450+Triple-Core", "1773", "356", "34.77", "$50.99**"],
"AMD Phenom 8450e Triple-Core":["AMD Phenom 8450e Triple-Core","cpu_lookup.php?cpu=AMD+Phenom+8450e+Triple-Core", "1807", "348", "", ""],
"AMD Phenom 8550 Triple-Core":["AMD Phenom 8550 Triple-Core","cpu_lookup.php?cpu=AMD+Phenom+8550+Triple-Core", "1864", "339", "", ""],
"AMD Phenom 8600 Triple-Core":["AMD Phenom 8600 Triple-Core","cpu_lookup.php?cpu=AMD+Phenom+8600+Triple-Core", "1783", "355", "33.65", "$52.99**"],
"AMD Phenom 8600B Triple-Core":["AMD Phenom 8600B Triple-Core","cpu_lookup.php?cpu=AMD+Phenom+8600B+Triple-Core", "1877", "338", "35.42", "$52.99**"],
"AMD Phenom 8650 Triple-Core":["AMD Phenom 8650 Triple-Core","cpu_lookup.php?cpu=AMD+Phenom+8650+Triple-Core", "1940", "325", "38.81", "$49.99**"],
"AMD Phenom 8750B Triple-Core":["AMD Phenom 8750B Triple-Core","cpu_lookup.php?cpu=AMD+Phenom+8750B+Triple-Core", "1944", "322", "", ""],
"AMD Phenom 8850B Triple-Core":["AMD Phenom 8850B Triple-Core","cpu_lookup.php?cpu=AMD+Phenom+8850B+Triple-Core", "2174", "284", "", ""],
"AMD Phenom 9100e Quad-Core":["AMD Phenom 9100e Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+9100e+Quad-Core", "1950", "320", "", ""],
"AMD Phenom 9150e Quad-Core":["AMD Phenom 9150e Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+9150e+Quad-Core", "2173", "285", "", ""],
"AMD Phenom 9350e Quad-Core":["AMD Phenom 9350e Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+9350e+Quad-Core", "2301", "268", "11.80", "$194.99**"],
"AMD Phenom 9450e Quad-Core":["AMD Phenom 9450e Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+9450e+Quad-Core", "2469", "251", "29.05", "$85.00**"],
"AMD Phenom 9500 Quad-Core":["AMD Phenom 9500 Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+9500+Quad-Core", "2305", "266", "25.62", "$89.96**"],
"AMD Phenom 9550 Quad-Core":["AMD Phenom 9550 Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+9550+Quad-Core", "2547", "242", "25.48", "$99.97**"],
"AMD Phenom 9600 Quad-Core":["AMD Phenom 9600 Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+9600+Quad-Core", "2447", "254", "25.76", "$95.00**"],
"AMD Phenom 9600B Quad-Core":["AMD Phenom 9600B Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+9600B+Quad-Core", "2498", "244", "16.97", "$147.19**"],
"AMD Phenom 9650 Quad-Core":["AMD Phenom 9650 Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+9650+Quad-Core", "2648", "230", "24.07", "$110.00**"],
"AMD Phenom 9750 Quad-Core":["AMD Phenom 9750 Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+9750+Quad-Core", "2787", "215", "28.15", "$99.00*"],
"AMD Phenom 9750B Quad-Core":["AMD Phenom 9750B Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+9750B+Quad-Core", "2684", "226", "", ""],
"AMD Phenom 9850 Quad-Core":["AMD Phenom 9850 Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+9850+Quad-Core", "2960", "202", "26.91", "$110.00*"],
"AMD Phenom 9850B Quad-Core":["AMD Phenom 9850B Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+9850B+Quad-Core", "3218", "181", "", ""],
"AMD Phenom 9950 Quad-Core":["AMD Phenom 9950 Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+9950+Quad-Core", "3062", "194", "19.50", "$156.99**"],
"AMD Phenom FX-5000 Quad-Core":["AMD Phenom FX-5000 Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+FX-5000+Quad-Core", "3034", "197", "", ""],
"AMD Phenom FX-5200 Quad-Core":["AMD Phenom FX-5200 Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+FX-5200+Quad-Core", "3548", "153", "", ""],
"AMD Phenom II N620 Dual-Core":["AMD Phenom II N620 Dual-Core","cpu_lookup.php?cpu=AMD+Phenom+II+N620+Dual-Core", "1719", "368", "", ""],
"AMD Phenom II N640 Dual-Core":["AMD Phenom II N640 Dual-Core","cpu_lookup.php?cpu=AMD+Phenom+II+N640+Dual-Core", "1911", "331", "", ""],
"AMD Phenom II N660 Dual-Core":["AMD Phenom II N660 Dual-Core","cpu_lookup.php?cpu=AMD+Phenom+II+N660+Dual-Core", "1809", "347", "", ""],
"AMD Phenom II N830 Triple-Core":["AMD Phenom II N830 Triple-Core","cpu_lookup.php?cpu=AMD+Phenom+II+N830+Triple-Core", "1942", "324", "", ""],
"AMD Phenom II N850 Triple-Core":["AMD Phenom II N850 Triple-Core","cpu_lookup.php?cpu=AMD+Phenom+II+N850+Triple-Core", "2089", "295", "", ""],
"AMD Phenom II N870 Triple-Core":["AMD Phenom II N870 Triple-Core","cpu_lookup.php?cpu=AMD+Phenom+II+N870+Triple-Core", "2104", "293", "", ""],
"AMD Phenom II N930 Quad-Core":["AMD Phenom II N930 Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+II+N930+Quad-Core", "2480", "249", "", ""],
"AMD Phenom II N950 Quad-Core":["AMD Phenom II N950 Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+II+N950+Quad-Core", "2556", "241", "", ""],
"AMD Phenom II N970 Quad-Core":["AMD Phenom II N970 Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+II+N970+Quad-Core", "2814", "210", "", ""],
"AMD Phenom II P650 Dual-Core":["AMD Phenom II P650 Dual-Core","cpu_lookup.php?cpu=AMD+Phenom+II+P650+Dual-Core", "1702", "373", "", ""],
"AMD Phenom II P820 Triple-Core":["AMD Phenom II P820 Triple-Core","cpu_lookup.php?cpu=AMD+Phenom+II+P820+Triple-Core", "1654", "390", "", ""],
"AMD Phenom II P840 Triple-Core":["AMD Phenom II P840 Triple-Core","cpu_lookup.php?cpu=AMD+Phenom+II+P840+Triple-Core", "1783", "354", "", ""],
"AMD Phenom II P860 Triple-Core":["AMD Phenom II P860 Triple-Core","cpu_lookup.php?cpu=AMD+Phenom+II+P860+Triple-Core", "1797", "349", "", ""],
"AMD Phenom II P920 Quad-Core":["AMD Phenom II P920 Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+II+P920+Quad-Core", "1962", "317", "", ""],
"AMD Phenom II P940 Quad-Core":["AMD Phenom II P940 Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+II+P940+Quad-Core", "2090", "294", "", ""],
"AMD Phenom II P960 Quad-Core":["AMD Phenom II P960 Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+II+P960+Quad-Core", "2221", "279", "", ""],
"AMD Phenom II X2 511":["AMD Phenom II X2 511","cpu_lookup.php?cpu=AMD+Phenom+II+X2+511", "2161", "289", "", ""],
"AMD Phenom II X2 545":["AMD Phenom II X2 545","cpu_lookup.php?cpu=AMD+Phenom+II+X2+545", "1763", "359", "23.20", "$75.99**"],
"AMD Phenom II X2 550":["AMD Phenom II X2 550","cpu_lookup.php?cpu=AMD+Phenom+II+X2+550", "1890", "336", "17.07", "$110.69*"],
"AMD Phenom II X2 555":["AMD Phenom II X2 555","cpu_lookup.php?cpu=AMD+Phenom+II+X2+555", "1976", "313", "22.46", "$87.99*"],
"AMD Phenom II X2 560":["AMD Phenom II X2 560","cpu_lookup.php?cpu=AMD+Phenom+II+X2+560", "2171", "286", "20.10", "$107.99*"],
"AMD Phenom II X2 565":["AMD Phenom II X2 565","cpu_lookup.php?cpu=AMD+Phenom+II+X2+565", "2182", "283", "17.46", "$124.99*"],
"AMD Phenom II X2 B53":["AMD Phenom II X2 B53","cpu_lookup.php?cpu=AMD+Phenom+II+X2+B53", "1697", "377", "", ""],
"AMD Phenom II X2 B55":["AMD Phenom II X2 B55","cpu_lookup.php?cpu=AMD+Phenom+II+X2+B55", "1768", "357", "", ""],
"AMD Phenom II X3 700e":["AMD Phenom II X3 700e","cpu_lookup.php?cpu=AMD+Phenom+II+X3+700e", "2480", "248", "", ""],
"AMD Phenom II X3 705e":["AMD Phenom II X3 705e","cpu_lookup.php?cpu=AMD+Phenom+II+X3+705e", "2273", "271", "14.92", "$152.34**"],
"AMD Phenom II X3 710":["AMD Phenom II X3 710","cpu_lookup.php?cpu=AMD+Phenom+II+X3+710", "2262", "272", "24.86", "$90.99**"],
"AMD Phenom II X3 715":["AMD Phenom II X3 715","cpu_lookup.php?cpu=AMD+Phenom+II+X3+715", "2568", "238", "30.22", "$84.99**"],
"AMD Phenom II X3 720":["AMD Phenom II X3 720","cpu_lookup.php?cpu=AMD+Phenom+II+X3+720", "2601", "236", "26.27", "$99.00**"],
"AMD Phenom II X3 740":["AMD Phenom II X3 740","cpu_lookup.php?cpu=AMD+Phenom+II+X3+740", "2904", "207", "32.63", "$88.99**"],
"AMD Phenom II X3 B73":["AMD Phenom II X3 B73","cpu_lookup.php?cpu=AMD+Phenom+II+X3+B73", "2489", "247", "", ""],
"AMD Phenom II X3 B75":["AMD Phenom II X3 B75","cpu_lookup.php?cpu=AMD+Phenom+II+X3+B75", "2410", "256", "", ""],
"AMD Phenom II X4 05e":["AMD Phenom II X4 05e","cpu_lookup.php?cpu=AMD+Phenom+II+X4+05e", "3379", "168", "", ""],
"AMD Phenom II X4 15":["AMD Phenom II X4 15","cpu_lookup.php?cpu=AMD+Phenom+II+X4+15", "4064", "113", "", ""],
"AMD Phenom II X4 40":["AMD Phenom II X4 40","cpu_lookup.php?cpu=AMD+Phenom+II+X4+40", "4116", "109", "", ""],
"AMD Phenom II X4 805":["AMD Phenom II X4 805","cpu_lookup.php?cpu=AMD+Phenom+II+X4+805", "3041", "196", "17.48", "$173.99**"],
"AMD Phenom II X4 810":["AMD Phenom II X4 810","cpu_lookup.php?cpu=AMD+Phenom+II+X4+810", "3117", "187", "26.87", "$115.99**"],
"AMD Phenom II X4 820":["AMD Phenom II X4 820","cpu_lookup.php?cpu=AMD+Phenom+II+X4+820", "3506", "157", "38.96", "$89.99**"],
"AMD Phenom II X4 830":["AMD Phenom II X4 830","cpu_lookup.php?cpu=AMD+Phenom+II+X4+830", "3462", "161", "", ""],
"AMD Phenom II X4 840":["AMD Phenom II X4 840","cpu_lookup.php?cpu=AMD+Phenom+II+X4+840", "3747", "133", "35.69", "$104.99*"],
"AMD Phenom II X4 840T":["AMD Phenom II X4 840T","cpu_lookup.php?cpu=AMD+Phenom+II+X4+840T", "3749", "132", "", ""],
"AMD Phenom II X4 900e":["AMD Phenom II X4 900e","cpu_lookup.php?cpu=AMD+Phenom+II+X4+900e", "2945", "203", "", ""],
"AMD Phenom II X4 905e":["AMD Phenom II X4 905e","cpu_lookup.php?cpu=AMD+Phenom+II+X4+905e", "2911", "205", "15.15", "$192.13*"],
"AMD Phenom II X4 910":["AMD Phenom II X4 910","cpu_lookup.php?cpu=AMD+Phenom+II+X4+910", "3248", "179", "15.91", "$204.19**"],
"AMD Phenom II X4 910e":["AMD Phenom II X4 910e","cpu_lookup.php?cpu=AMD+Phenom+II+X4+910e", "3108", "189", "16.89", "$183.99*"],
"AMD Phenom II X4 920":["AMD Phenom II X4 920","cpu_lookup.php?cpu=AMD+Phenom+II+X4+920", "3310", "174", "30.09", "$109.99**"],
"AMD Phenom II X4 925":["AMD Phenom II X4 925","cpu_lookup.php?cpu=AMD+Phenom+II+X4+925", "3454", "162", "30.04", "$114.99*"],
"AMD Phenom II X4 940":["AMD Phenom II X4 940","cpu_lookup.php?cpu=AMD+Phenom+II+X4+940", "3682", "137", "27.08", "$135.99**"],
"AMD Phenom II X4 945":["AMD Phenom II X4 945","cpu_lookup.php?cpu=AMD+Phenom+II+X4+945", "3614", "144", "27.80", "$129.99*"],
"AMD Phenom II X4 955":["AMD Phenom II X4 955","cpu_lookup.php?cpu=AMD+Phenom+II+X4+955", "3945", "119", "28.18", "$139.99*"],
"AMD Phenom II X4 965":["AMD Phenom II X4 965","cpu_lookup.php?cpu=AMD+Phenom+II+X4+965", "4283", "102", "26.94", "$158.99*"],
"AMD Phenom II X4 970":["AMD Phenom II X4 970","cpu_lookup.php?cpu=AMD+Phenom+II+X4+970", "4429", "93", "26.05", "$169.99*"],
"AMD Phenom II X4 973":["AMD Phenom II X4 973","cpu_lookup.php?cpu=AMD+Phenom+II+X4+973", "3047", "195", "", ""],
"AMD Phenom II X4 975":["AMD Phenom II X4 975","cpu_lookup.php?cpu=AMD+Phenom+II+X4+975", "4292", "101", "22.59", "$189.99*"],
"AMD Phenom II X4 B15e":["AMD Phenom II X4 B15e","cpu_lookup.php?cpu=AMD+Phenom+II+X4+B15e", "2744", "220", "", ""],
"AMD Phenom II X4 B25":["AMD Phenom II X4 B25","cpu_lookup.php?cpu=AMD+Phenom+II+X4+B25", "3423", "165", "", ""],
"AMD Phenom II X4 B35":["AMD Phenom II X4 B35","cpu_lookup.php?cpu=AMD+Phenom+II+X4+B35", "3568", "151", "", ""],
"AMD Phenom II X4 B40":["AMD Phenom II X4 B40","cpu_lookup.php?cpu=AMD+Phenom+II+X4+B40", "3447", "163", "", ""],
"AMD Phenom II X4 B45":["AMD Phenom II X4 B45","cpu_lookup.php?cpu=AMD+Phenom+II+X4+B45", "3627", "142", "", ""],
"AMD Phenom II X4 B50":["AMD Phenom II X4 B50","cpu_lookup.php?cpu=AMD+Phenom+II+X4+B50", "3731", "135", "", ""],
"AMD Phenom II X4 B55":["AMD Phenom II X4 B55","cpu_lookup.php?cpu=AMD+Phenom+II+X4+B55", "4106", "110", "", ""],
"AMD Phenom II X4 B60":["AMD Phenom II X4 B60","cpu_lookup.php?cpu=AMD+Phenom+II+X4+B60", "4312", "99", "", ""],
"AMD Phenom II X4 B65":["AMD Phenom II X4 B65","cpu_lookup.php?cpu=AMD+Phenom+II+X4+B65", "4220", "105", "", ""],
"AMD Phenom II X4 B93":["AMD Phenom II X4 B93","cpu_lookup.php?cpu=AMD+Phenom+II+X4+B93", "3342", "171", "", ""],
"AMD Phenom II X4 B95":["AMD Phenom II X4 B95","cpu_lookup.php?cpu=AMD+Phenom+II+X4+B95", "3884", "123", "17.26", "$225.00**"],
"AMD Phenom II X4 B97":["AMD Phenom II X4 B97","cpu_lookup.php?cpu=AMD+Phenom+II+X4+B97", "4323", "98", "", ""],
"AMD Phenom II X6 1035T":["AMD Phenom II X6 1035T","cpu_lookup.php?cpu=AMD+Phenom+II+X6+1035T", "4944", "77", "", ""],
"AMD Phenom II X6 1045T":["AMD Phenom II X6 1045T","cpu_lookup.php?cpu=AMD+Phenom+II+X6+1045T", "5109", "69", "", ""],
"AMD Phenom II X6 1055T":["AMD Phenom II X6 1055T","cpu_lookup.php?cpu=AMD+Phenom+II+X6+1055T", "5197", "66", "30.57", "$169.99*"],
"AMD Phenom II X6 1065T":["AMD Phenom II X6 1065T","cpu_lookup.php?cpu=AMD+Phenom+II+X6+1065T", "5074", "71", "", ""],
"AMD Phenom II X6 1075T":["AMD Phenom II X6 1075T","cpu_lookup.php?cpu=AMD+Phenom+II+X6+1075T", "5831", "49", "30.69", "$189.99*"],
"AMD Phenom II X6 1090T":["AMD Phenom II X6 1090T","cpu_lookup.php?cpu=AMD+Phenom+II+X6+1090T", "6063", "45", "30.32", "$199.99*"],
"AMD Phenom II X6 1100T":["AMD Phenom II X6 1100T","cpu_lookup.php?cpu=AMD+Phenom+II+X6+1100T", "6313", "39", "27.45", "$229.99*"],
"AMD Phenom II X920 Quad-Core":["AMD Phenom II X920 Quad-Core","cpu_lookup.php?cpu=AMD+Phenom+II+X920+Quad-Core", "2790", "214", "", ""],
"AMD Phenom X2 Dual-Core GP-7730":["AMD Phenom X2 Dual-Core GP-7730","cpu_lookup.php?cpu=AMD+Phenom+X2+Dual-Core+GP-7730", "1388", "469", "", ""],
"AMD Phenom X3 8750":["AMD Phenom X3 8750","cpu_lookup.php?cpu=AMD+Phenom+X3+8750", "2083", "296", "34.72", "$59.99**"],
"AMD Phenom X4 Quad-Core GP-9500":["AMD Phenom X4 Quad-Core GP-9500","cpu_lookup.php?cpu=AMD+Phenom+X4+Quad-Core+GP-9500", "2152", "290", "", ""],
"AMD Phenom X4 Quad-Core GP-9600":["AMD Phenom X4 Quad-Core GP-9600","cpu_lookup.php?cpu=AMD+Phenom+X4+Quad-Core+GP-9600", "2456", "252", "", ""],
"AMD Sempron":["AMD Sempron","cpu_lookup.php?cpu=AMD+Sempron", "368", "931", "", ""],
"AMD Sempron 140":["AMD Sempron 140","cpu_lookup.php?cpu=AMD+Sempron+140", "765", "695", "19.62", "$38.99*"],
"AMD Sempron 145":["AMD Sempron 145","cpu_lookup.php?cpu=AMD+Sempron+145", "900", "647", "23.31", "$38.61*"],
"AMD Sempron 210U":["AMD Sempron 210U","cpu_lookup.php?cpu=AMD+Sempron+210U", "376", "925", "", ""],
"AMD Sempron 2200+":["AMD Sempron 2200+","cpu_lookup.php?cpu=AMD+Sempron+2200%2B", "334", "964", "11.14", "$29.99*"],
"AMD Sempron 2300+":["AMD Sempron 2300+","cpu_lookup.php?cpu=AMD+Sempron+2300%2B", "335", "962", "", ""],
"AMD Sempron 2400+":["AMD Sempron 2400+","cpu_lookup.php?cpu=AMD+Sempron+2400%2B", "367", "933", "", ""],
"AMD Sempron 2500+":["AMD Sempron 2500+","cpu_lookup.php?cpu=AMD+Sempron+2500%2B", "365", "934", "", ""],
"AMD Sempron 2600+":["AMD Sempron 2600+","cpu_lookup.php?cpu=AMD+Sempron+2600%2B", "406", "893", "10.15", "$39.99*"],
"AMD Sempron 2800+":["AMD Sempron 2800+","cpu_lookup.php?cpu=AMD+Sempron+2800%2B", "423", "871", "", ""],
"AMD Sempron 3000+":["AMD Sempron 3000+","cpu_lookup.php?cpu=AMD+Sempron+3000%2B", "443", "854", "", ""],
"AMD Sempron 3100+":["AMD Sempron 3100+","cpu_lookup.php?cpu=AMD+Sempron+3100%2B", "460", "842", "", ""],
"AMD Sempron 3200+":["AMD Sempron 3200+","cpu_lookup.php?cpu=AMD+Sempron+3200%2B", "449", "850", "", ""],
"AMD Sempron 3300+":["AMD Sempron 3300+","cpu_lookup.php?cpu=AMD+Sempron+3300%2B", "513", "798", "", ""],
"AMD Sempron 3400+":["AMD Sempron 3400+","cpu_lookup.php?cpu=AMD+Sempron+3400%2B", "477", "824", "19.88", "$24.00*"],
"AMD Sempron 3500+":["AMD Sempron 3500+","cpu_lookup.php?cpu=AMD+Sempron+3500%2B", "498", "807", "", ""],
"AMD Sempron 3600+":["AMD Sempron 3600+","cpu_lookup.php?cpu=AMD+Sempron+3600%2B", "506", "803", "", ""],
"AMD Sempron 3800+":["AMD Sempron 3800+","cpu_lookup.php?cpu=AMD+Sempron+3800%2B", "470", "832", "", ""],
"AMD Sempron Dual Core 2100":["AMD Sempron Dual Core 2100","cpu_lookup.php?cpu=AMD+Sempron+Dual+Core+2100", "875", "659", "", ""],
"AMD Sempron Dual Core 2300":["AMD Sempron Dual Core 2300","cpu_lookup.php?cpu=AMD+Sempron+Dual+Core+2300", "1183", "538", "35.86", "$32.99**"],
"AMD Sempron LE-1100":["AMD Sempron LE-1100","cpu_lookup.php?cpu=AMD+Sempron+LE-1100", "450", "848", "", ""],
"AMD Sempron LE-1150":["AMD Sempron LE-1150","cpu_lookup.php?cpu=AMD+Sempron+LE-1150", "488", "816", "", ""],
"AMD Sempron LE-1200":["AMD Sempron LE-1200","cpu_lookup.php?cpu=AMD+Sempron+LE-1200", "518", "793", "", ""],
"AMD Sempron LE-1250":["AMD Sempron LE-1250","cpu_lookup.php?cpu=AMD+Sempron+LE-1250", "549", "772", "18.94", "$28.99**"],
"AMD Sempron LE-1300":["AMD Sempron LE-1300","cpu_lookup.php?cpu=AMD+Sempron+LE-1300", "611", "741", "24.45", "$24.99**"],
"AMD Sempron M100":["AMD Sempron M100","cpu_lookup.php?cpu=AMD+Sempron+M100", "568", "761", "", ""],
"AMD Sempron M120":["AMD Sempron M120","cpu_lookup.php?cpu=AMD+Sempron+M120", "610", "743", "", ""],
"AMD Sempron SI-40":["AMD Sempron SI-40","cpu_lookup.php?cpu=AMD+Sempron+SI-40", "455", "845", "", ""],
"AMD Sempron SI-42":["AMD Sempron SI-42","cpu_lookup.php?cpu=AMD+Sempron+SI-42", "508", "802", "", ""],
"AMD Turion 64":["AMD Turion 64","cpu_lookup.php?cpu=AMD+Turion+64", "527", "788", "", ""],
"AMD Turion 64 Mobile MK-36":["AMD Turion 64 Mobile MK-36","cpu_lookup.php?cpu=AMD+Turion+64+Mobile+MK-36", "479", "821", "", ""],
"AMD Turion 64 Mobile MK-38":["AMD Turion 64 Mobile MK-38","cpu_lookup.php?cpu=AMD+Turion+64+Mobile+MK-38", "525", "789", "", ""],
"AMD Turion 64 Mobile ML-28":["AMD Turion 64 Mobile ML-28","cpu_lookup.php?cpu=AMD+Turion+64+Mobile+ML-28", "386", "919", "", ""],
"AMD Turion 64 Mobile ML-30":["AMD Turion 64 Mobile ML-30","cpu_lookup.php?cpu=AMD+Turion+64+Mobile+ML-30", "406", "891", "", ""],
"AMD Turion 64 Mobile ML-32":["AMD Turion 64 Mobile ML-32","cpu_lookup.php?cpu=AMD+Turion+64+Mobile+ML-32", "435", "862", "", ""],
"AMD Turion 64 Mobile ML-34":["AMD Turion 64 Mobile ML-34","cpu_lookup.php?cpu=AMD+Turion+64+Mobile+ML-34", "450", "847", "", ""],
"AMD Turion 64 Mobile ML-37":["AMD Turion 64 Mobile ML-37","cpu_lookup.php?cpu=AMD+Turion+64+Mobile+ML-37", "495", "808", "", ""],
"AMD Turion 64 Mobile ML-40":["AMD Turion 64 Mobile ML-40","cpu_lookup.php?cpu=AMD+Turion+64+Mobile+ML-40", "528", "786", "", ""],
"AMD Turion 64 Mobile ML-42":["AMD Turion 64 Mobile ML-42","cpu_lookup.php?cpu=AMD+Turion+64+Mobile+ML-42", "564", "765", "", ""],
"AMD Turion 64 Mobile ML-44":["AMD Turion 64 Mobile ML-44","cpu_lookup.php?cpu=AMD+Turion+64+Mobile+ML-44", "568", "762", "", ""],
"AMD Turion 64 Mobile MT-28":["AMD Turion 64 Mobile MT-28","cpu_lookup.php?cpu=AMD+Turion+64+Mobile+MT-28", "419", "873", "", ""],
"AMD Turion 64 Mobile MT-30":["AMD Turion 64 Mobile MT-30","cpu_lookup.php?cpu=AMD+Turion+64+Mobile+MT-30", "416", "879", "", ""],
"AMD Turion 64 Mobile MT-32":["AMD Turion 64 Mobile MT-32","cpu_lookup.php?cpu=AMD+Turion+64+Mobile+MT-32", "467", "835", "", ""],
"AMD Turion 64 Mobile MT-34":["AMD Turion 64 Mobile MT-34","cpu_lookup.php?cpu=AMD+Turion+64+Mobile+MT-34", "392", "910", "", ""],
"AMD Turion 64 Mobile MT-37":["AMD Turion 64 Mobile MT-37","cpu_lookup.php?cpu=AMD+Turion+64+Mobile+MT-37", "514", "796", "", ""],
"AMD Turion 64 Mobile MT-40":["AMD Turion 64 Mobile MT-40","cpu_lookup.php?cpu=AMD+Turion+64+Mobile+MT-40", "527", "787", "", ""],
"AMD Turion 64 X2":["AMD Turion 64 X2","cpu_lookup.php?cpu=AMD+Turion+64+X2", "837", "669", "", ""],
"AMD Turion 64 X2 Mobile TL-50":["AMD Turion 64 X2 Mobile TL-50","cpu_lookup.php?cpu=AMD+Turion+64+X2+Mobile+TL-50", "771", "693", "", ""],
"AMD Turion 64 X2 Mobile TL-52":["AMD Turion 64 X2 Mobile TL-52","cpu_lookup.php?cpu=AMD+Turion+64+X2+Mobile+TL-52", "789", "688", "", ""],
"AMD Turion 64 X2 Mobile TL-56":["AMD Turion 64 X2 Mobile TL-56","cpu_lookup.php?cpu=AMD+Turion+64+X2+Mobile+TL-56", "889", "651", "10.58", "$83.99**"],
"AMD Turion 64 X2 Mobile TL-58":["AMD Turion 64 X2 Mobile TL-58","cpu_lookup.php?cpu=AMD+Turion+64+X2+Mobile+TL-58", "935", "632", "", ""],
"AMD Turion 64 X2 Mobile TL-60":["AMD Turion 64 X2 Mobile TL-60","cpu_lookup.php?cpu=AMD+Turion+64+X2+Mobile+TL-60", "988", "612", "65.87", "$15.00*"],
"AMD Turion 64 X2 Mobile TL-62":["AMD Turion 64 X2 Mobile TL-62","cpu_lookup.php?cpu=AMD+Turion+64+X2+Mobile+TL-62", "1030", "595", "", ""],
"AMD Turion 64 X2 Mobile TL-64":["AMD Turion 64 X2 Mobile TL-64","cpu_lookup.php?cpu=AMD+Turion+64+X2+Mobile+TL-64", "1054", "589", "", ""],
"AMD Turion 64 X2 Mobile TL-66":["AMD Turion 64 X2 Mobile TL-66","cpu_lookup.php?cpu=AMD+Turion+64+X2+Mobile+TL-66", "1193", "536", "", ""],
"AMD Turion 64 X2 Mobile TL-68":["AMD Turion 64 X2 Mobile TL-68","cpu_lookup.php?cpu=AMD+Turion+64+X2+Mobile+TL-68", "1283", "498", "", ""],
"AMD Turion 64 X2 TL-58":["AMD Turion 64 X2 TL-58","cpu_lookup.php?cpu=AMD+Turion+64+X2+TL-58", "862", "662", "", ""],
"AMD Turion 64 X2 TL-60":["AMD Turion 64 X2 TL-60","cpu_lookup.php?cpu=AMD+Turion+64+X2+TL-60", "978", "616", "", ""],
"AMD Turion 64 X2 TL-62":["AMD Turion 64 X2 TL-62","cpu_lookup.php?cpu=AMD+Turion+64+X2+TL-62", "1116", "562", "", ""],
"AMD Turion Dual-Core RM-75":["AMD Turion Dual-Core RM-75","cpu_lookup.php?cpu=AMD+Turion+Dual-Core+RM-75", "1094", "580", "", ""],
"AMD Turion Dual-Core ZM-80":["AMD Turion Dual-Core ZM-80","cpu_lookup.php?cpu=AMD+Turion+Dual-Core+ZM-80", "1197", "533", "", ""],
"AMD Turion II Dual-Core Mobile M500":["AMD Turion II Dual-Core Mobile M500","cpu_lookup.php?cpu=AMD+Turion+II+Dual-Core+Mobile+M500", "1307", "491", "", ""],
"AMD Turion II Dual-Core Mobile M520":["AMD Turion II Dual-Core Mobile M520","cpu_lookup.php?cpu=AMD+Turion+II+Dual-Core+Mobile+M520", "1366", "476", "", ""],
"AMD Turion II N530 Dual-Core":["AMD Turion II N530 Dual-Core","cpu_lookup.php?cpu=AMD+Turion+II+N530+Dual-Core", "1445", "452", "", ""],
"AMD Turion II Neo K625 Dual-Core":["AMD Turion II Neo K625 Dual-Core","cpu_lookup.php?cpu=AMD+Turion+II+Neo+K625+Dual-Core", "940", "630", "", ""],
"AMD Turion II P520 Dual-Core":["AMD Turion II P520 Dual-Core","cpu_lookup.php?cpu=AMD+Turion+II+P520+Dual-Core", "1425", "458", "", ""],
"AMD Turion II P540 Dual-Core":["AMD Turion II P540 Dual-Core","cpu_lookup.php?cpu=AMD+Turion+II+P540+Dual-Core", "1494", "438", "", ""],
"AMD Turion II P560 Dual-Core":["AMD Turion II P560 Dual-Core","cpu_lookup.php?cpu=AMD+Turion+II+P560+Dual-Core", "1534", "425", "", ""],
"AMD Turion II Ultra Dual-Core Mobile M600":["AMD Turion II Ultra Dual-Core Mobile M600","cpu_lookup.php?cpu=AMD+Turion+II+Ultra+Dual-Core+Mobile+M600", "1492", "439", "", ""],
"AMD Turion II Ultra Dual-Core Mobile M620":["AMD Turion II Ultra Dual-Core Mobile M620","cpu_lookup.php?cpu=AMD+Turion+II+Ultra+Dual-Core+Mobile+M620", "1530", "427", "", ""],
"AMD Turion II Ultra Dual-Core Mobile M640":["AMD Turion II Ultra Dual-Core Mobile M640","cpu_lookup.php?cpu=AMD+Turion+II+Ultra+Dual-Core+Mobile+M640", "1627", "397", "", ""],
"AMD Turion II Ultra Dual-Core Mobile M660":["AMD Turion II Ultra Dual-Core Mobile M660","cpu_lookup.php?cpu=AMD+Turion+II+Ultra+Dual-Core+Mobile+M660", "1653", "391", "", ""],
"AMD Turion Neo X2 Dual Core L625":["AMD Turion Neo X2 Dual Core L625","cpu_lookup.php?cpu=AMD+Turion+Neo+X2+Dual+Core+L625", "836", "670", "", ""],
"AMD Turion X2 Dual Core L510":["AMD Turion X2 Dual Core L510","cpu_lookup.php?cpu=AMD+Turion+X2+Dual+Core+L510", "871", "660", "", ""],
"AMD Turion X2 Dual Core Mobile RM-70":["AMD Turion X2 Dual Core Mobile RM-70","cpu_lookup.php?cpu=AMD+Turion+X2+Dual+Core+Mobile+RM-70", "1106", "567", "", ""],
"AMD Turion X2 Dual Core Mobile RM-74":["AMD Turion X2 Dual Core Mobile RM-74","cpu_lookup.php?cpu=AMD+Turion+X2+Dual+Core+Mobile+RM-74", "1096", "578", "", ""],
"AMD Turion X2 Dual Core Mobile RM-76":["AMD Turion X2 Dual Core Mobile RM-76","cpu_lookup.php?cpu=AMD+Turion+X2+Dual+Core+Mobile+RM-76", "1175", "539", "", ""],
"AMD Turion X2 Dual-Core Mobile RM-70":["AMD Turion X2 Dual-Core Mobile RM-70","cpu_lookup.php?cpu=AMD+Turion+X2+Dual-Core+Mobile+RM-70", "956", "623", "", ""],
"AMD Turion X2 Dual-Core Mobile RM-72":["AMD Turion X2 Dual-Core Mobile RM-72","cpu_lookup.php?cpu=AMD+Turion+X2+Dual-Core+Mobile+RM-72", "1039", "592", "", ""],
"AMD Turion X2 Dual-Core Mobile RM-74":["AMD Turion X2 Dual-Core Mobile RM-74","cpu_lookup.php?cpu=AMD+Turion+X2+Dual-Core+Mobile+RM-74", "1111", "565", "", ""],
"AMD Turion X2 Dual-Core Mobile RM-75":["AMD Turion X2 Dual-Core Mobile RM-75","cpu_lookup.php?cpu=AMD+Turion+X2+Dual-Core+Mobile+RM-75", "1098", "572", "", ""],
"AMD Turion X2 Dual-Core Mobile RM-77":["AMD Turion X2 Dual-Core Mobile RM-77","cpu_lookup.php?cpu=AMD+Turion+X2+Dual-Core+Mobile+RM-77", "1064", "585", "", ""],
"AMD Turion X2 Ultra Dual-Core Mobile ZM-80":["AMD Turion X2 Ultra Dual-Core Mobile ZM-80","cpu_lookup.php?cpu=AMD+Turion+X2+Ultra+Dual-Core+Mobile+ZM-80", "1063", "586", "", ""],
"AMD Turion X2 Ultra Dual-Core Mobile ZM-82":["AMD Turion X2 Ultra Dual-Core Mobile ZM-82","cpu_lookup.php?cpu=AMD+Turion+X2+Ultra+Dual-Core+Mobile+ZM-82", "1086", "582", "", ""],
"AMD Turion X2 Ultra Dual-Core Mobile ZM-84":["AMD Turion X2 Ultra Dual-Core Mobile ZM-84","cpu_lookup.php?cpu=AMD+Turion+X2+Ultra+Dual-Core+Mobile+ZM-84", "1155", "548", "", ""],
"AMD Turion X2 Ultra Dual-Core Mobile ZM-85":["AMD Turion X2 Ultra Dual-Core Mobile ZM-85","cpu_lookup.php?cpu=AMD+Turion+X2+Ultra+Dual-Core+Mobile+ZM-85", "1266", "510", "", ""],
"AMD Turion X2 Ultra Dual-Core Mobile ZM-86":["AMD Turion X2 Ultra Dual-Core Mobile ZM-86","cpu_lookup.php?cpu=AMD+Turion+X2+Ultra+Dual-Core+Mobile+ZM-86", "1170", "542", "", ""],
"AMD Turion X2 Ultra Dual-Core Mobile ZM-87":["AMD Turion X2 Ultra Dual-Core Mobile ZM-87","cpu_lookup.php?cpu=AMD+Turion+X2+Ultra+Dual-Core+Mobile+ZM-87", "1298", "493", "", ""],
"AMD TurionX2 Ultra DualCore Mobile ZM-80":["AMD TurionX2 Ultra DualCore Mobile ZM-80","cpu_lookup.php?cpu=AMD+TurionX2+Ultra+DualCore+Mobile+ZM-80", "956", "624", "", ""],
"AMD TurionX2 Ultra DualCore Mobile ZM-84":["AMD TurionX2 Ultra DualCore Mobile ZM-84","cpu_lookup.php?cpu=AMD+TurionX2+Ultra+DualCore+Mobile+ZM-84", "1212", "526", "", ""],
"AMD TurionX2 Ultra DualCore Mobile ZM-86":["AMD TurionX2 Ultra DualCore Mobile ZM-86","cpu_lookup.php?cpu=AMD+TurionX2+Ultra+DualCore+Mobile+ZM-86", "1185", "537", "", ""],
"AMD V105":["AMD V105","cpu_lookup.php?cpu=AMD+V105", "324", "977", "", ""],
"AMD V120":["AMD V120","cpu_lookup.php?cpu=AMD+V120", "643", "730", "", ""],
"AMD V140":["AMD V140","cpu_lookup.php?cpu=AMD+V140", "674", "720", "", ""],
"AMD V160":["AMD V160","cpu_lookup.php?cpu=AMD+V160", "683", "717", "", ""],
"AMD-K7":["AMD-K7","cpu_lookup.php?cpu=AMD-K7", "516", "794", "", ""],
"Athlon 64 Dual Core 4400+":["Athlon 64 Dual Core 4400+","cpu_lookup.php?cpu=Athlon+64+Dual+Core+4400%2B", "1282", "499", "", ""],
"Athlon 64 Dual Core 5000+":["Athlon 64 Dual Core 5000+","cpu_lookup.php?cpu=Athlon+64+Dual+Core+5000%2B", "1546", "423", "", ""],
"Athlon 64 Dual Core 5400+":["Athlon 64 Dual Core 5400+","cpu_lookup.php?cpu=Athlon+64+Dual+Core+5400%2B", "1614", "400", "", ""],
"Athlon Dual Core 4050e":["Athlon Dual Core 4050e","cpu_lookup.php?cpu=Athlon+Dual+Core+4050e", "1154", "550", "", ""],
"Athlon Dual Core 4450e":["Athlon Dual Core 4450e","cpu_lookup.php?cpu=Athlon+Dual+Core+4450e", "1088", "581", "", ""],
"Athlon Dual Core 4850e":["Athlon Dual Core 4850e","cpu_lookup.php?cpu=Athlon+Dual+Core+4850e", "1296", "494", "", ""],
"Celeron Dual-Core T3000 @ 1.80GHz":["Celeron Dual-Core T3000 @ 1.80GHz","cpu_lookup.php?cpu=Celeron+Dual-Core+T3000+%40+1.80GHz", "1162", "546", "", ""],
"Celeron Dual-Core T3100 @ 1.90GHz":["Celeron Dual-Core T3100 @ 1.90GHz","cpu_lookup.php?cpu=Celeron+Dual-Core+T3100+%40+1.90GHz", "1260", "514", "", ""],
"Celeron Dual-Core T3300 @ 2.00GHz":["Celeron Dual-Core T3300 @ 2.00GHz","cpu_lookup.php?cpu=Celeron+Dual-Core+T3300+%40+2.00GHz", "1398", "465", "", ""],
"Celeron Dual-Core T3500 @ 2.10GHz":["Celeron Dual-Core T3500 @ 2.10GHz","cpu_lookup.php?cpu=Celeron+Dual-Core+T3500+%40+2.10GHz", "1456", "447", "", ""],
"Dual Core AMD Opteron 165":["Dual Core AMD Opteron 165","cpu_lookup.php?cpu=Dual+Core+AMD+Opteron+165", "976", "618", "", ""],
"Dual Core AMD Opteron 170":["Dual Core AMD Opteron 170","cpu_lookup.php?cpu=Dual+Core+AMD+Opteron+170", "1098", "573", "", ""],
"Dual Core AMD Opteron 175":["Dual Core AMD Opteron 175","cpu_lookup.php?cpu=Dual+Core+AMD+Opteron+175", "1164", "545", "", ""],
"Dual Core AMD Opteron 180":["Dual Core AMD Opteron 180","cpu_lookup.php?cpu=Dual+Core+AMD+Opteron+180", "1327", "486", "7.37", "$180.00*"],
"Dual Core AMD Opteron 185":["Dual Core AMD Opteron 185","cpu_lookup.php?cpu=Dual+Core+AMD+Opteron+185", "1454", "448", "", ""],
"Dual Core AMD Opteron 265":["Dual Core AMD Opteron 265","cpu_lookup.php?cpu=Dual+Core+AMD+Opteron+265", "963", "621", "", ""],
"Dual Core AMD Opteron 280":["Dual Core AMD Opteron 280","cpu_lookup.php?cpu=Dual+Core+AMD+Opteron+280", "1292", "495", "", ""],
"Dual Core AMD Opteron 290":["Dual Core AMD Opteron 290","cpu_lookup.php?cpu=Dual+Core+AMD+Opteron+290", "1790", "352", "13.26", "$135.00**"],
"Dual-Core AMD Opteron 1210":["Dual-Core AMD Opteron 1210","cpu_lookup.php?cpu=Dual-Core+AMD+Opteron+1210", "788", "689", "", ""],
"Dual-Core AMD Opteron 1212":["Dual-Core AMD Opteron 1212","cpu_lookup.php?cpu=Dual-Core+AMD+Opteron+1212", "1078", "584", "", ""],
"Dual-Core AMD Opteron 1214":["Dual-Core AMD Opteron 1214","cpu_lookup.php?cpu=Dual-Core+AMD+Opteron+1214", "1220", "524", "", ""],
"Dual-Core AMD Opteron 1216":["Dual-Core AMD Opteron 1216","cpu_lookup.php?cpu=Dual-Core+AMD+Opteron+1216", "1368", "475", "", ""],
"Dual-Core AMD Opteron 1218":["Dual-Core AMD Opteron 1218","cpu_lookup.php?cpu=Dual-Core+AMD+Opteron+1218", "1533", "426", "", ""],
"Dual-Core AMD Opteron 1220":["Dual-Core AMD Opteron 1220","cpu_lookup.php?cpu=Dual-Core+AMD+Opteron+1220", "1452", "450", "", ""],
"Dual-Core AMD Opteron 1222":["Dual-Core AMD Opteron 1222","cpu_lookup.php?cpu=Dual-Core+AMD+Opteron+1222", "1892", "335", "", ""],
"Dual-Core AMD Opteron 2212":["Dual-Core AMD Opteron 2212","cpu_lookup.php?cpu=Dual-Core+AMD+Opteron+2212", "1270", "507", "", ""],
"Dual-Core AMD Opteron 2214":["Dual-Core AMD Opteron 2214","cpu_lookup.php?cpu=Dual-Core+AMD+Opteron+2214", "1358", "479", "", ""],
"Dual-Core AMD Opteron 2218":["Dual-Core AMD Opteron 2218","cpu_lookup.php?cpu=Dual-Core+AMD+Opteron+2218", "1471", "444", "", ""],
"Dual-Core AMD Opteron 2220":["Dual-Core AMD Opteron 2220","cpu_lookup.php?cpu=Dual-Core+AMD+Opteron+2220", "1677", "382", "", ""],
"Intel 1300":["Intel 1300 @ 1.66GHz","cpu_lookup.php?cpu=Intel+1300+%40+1.66GHz", "857", "663", "", ""],
"Intel 1500":["Intel 1500 @ 2.00GHz","cpu_lookup.php?cpu=Intel+1500+%40+2.00GHz", "1024", "598", "", ""],
"Intel @ 3.00GHz":["Intel @ 3.00GHz","cpu_lookup.php?cpu=Intel+3.00GHz", "834", "671", "", ""],
"Intel @ 3.20GHz":["Intel @ 3.20GHz","cpu_lookup.php?cpu=Intel+3.20GHz", "887", "654", "", ""],
"Intel @ 3.33GHz":["Intel @ 3.33GHz","cpu_lookup.php?cpu=Intel+3.33GHz", "391", "912", "", ""],
"Intel @ 3.40GHz":["Intel @ 3.40GHz","cpu_lookup.php?cpu=Intel+3.40GHz", "953", "626", "", ""],
"Intel @ 3.46GHz":["Intel @ 3.46GHz","cpu_lookup.php?cpu=Intel+3.46GHz", "1245", "519", "", ""],
"Intel @ 3.60GHz":["Intel @ 3.60GHz","cpu_lookup.php?cpu=Intel+3.60GHz", "601", "746", "", ""],
"Intel @ 3.73GHz":["Intel @ 3.73GHz","cpu_lookup.php?cpu=Intel+3.73GHz", "1262", "513", "", ""],
"Intel @ 3.80GHz":["Intel @ 3.80GHz","cpu_lookup.php?cpu=Intel+3.80GHz", "661", "724", "", ""],
"Intel @ 600MHz":["Intel 600MHz","cpu_lookup.php?cpu=Intel+600MHz", "90", "1121", "", ""],
"Intel @ 800MHz":["Intel 800MHz","cpu_lookup.php?cpu=Intel+800MHz", "164", "1116", "", ""],
"Intel Atom 230":["Intel Atom 230 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Atom+230+%40+1.60GHz", "315", "986", "", ""],
"Intel Atom 330":["Intel Atom 330 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Atom+330+%40+1.60GHz", "633", "735", "", ""],
"Intel Atom D410":["Intel Atom D410 @ 1.66GHz","cpu_lookup.php?cpu=Intel+Atom+D410+%40+1.66GHz", "344", "952", "0.54", "$635.99**"],
"Intel Atom D425":["Intel Atom D425 @ 1.80GHz","cpu_lookup.php?cpu=Intel+Atom+D425+%40+1.80GHz", "283", "1022", "", ""],
"Intel Atom D510":["Intel Atom D510 @ 1.66GHz","cpu_lookup.php?cpu=Intel+Atom+D510+%40+1.66GHz", "660", "725", "", ""],
"Intel Atom D525":["Intel Atom D525 @ 1.80GHz","cpu_lookup.php?cpu=Intel+Atom+D525+%40+1.80GHz", "714", "709", "", ""],
"Intel Atom K510":["Intel Atom K510 @ 1.66GHz","cpu_lookup.php?cpu=Intel+Atom+K510+%40+1.66GHz", "658", "726", "", ""],
"Intel Atom N270":["Intel Atom N270 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Atom+N270+%40+1.60GHz", "303", "1003", "", ""],
"Intel Atom N280":["Intel Atom N280 @ 1.66GHz","cpu_lookup.php?cpu=Intel+Atom+N280+%40+1.66GHz", "314", "990", "", ""],
"Intel Atom N450":["Intel Atom N450 @ 1.66GHz","cpu_lookup.php?cpu=Intel+Atom+N450+%40+1.66GHz", "319", "982", "", ""],
"Intel Atom N455":["Intel Atom N455 @ 1.66GHz","cpu_lookup.php?cpu=Intel+Atom+N455+%40+1.66GHz", "317", "984", "", ""],
"Intel Atom N470":["Intel Atom N470 @ 1.83GHz","cpu_lookup.php?cpu=Intel+Atom+N470+%40+1.83GHz", "356", "943", "", ""],
"Intel Atom N475":["Intel Atom N475 @ 1.83GHz","cpu_lookup.php?cpu=Intel+Atom+N475+%40+1.83GHz", "342", "957", "", ""],
"Intel Atom N550":["Intel Atom N550 @ 1.50GHz","cpu_lookup.php?cpu=Intel+Atom+N550+%40+1.50GHz", "559", "768", "", ""],
"Intel Atom N570":["Intel Atom N570 @ 1.66GHz","cpu_lookup.php?cpu=Intel+Atom+N570+%40+1.66GHz", "642", "731", "", ""],
"Intel Atom Z510":["Intel Atom Z510 @ 1.10GHz","cpu_lookup.php?cpu=Intel+Atom+Z510+%40+1.10GHz", "186", "1107", "4.13", "$45.00**"],
"Intel Atom Z515":["Intel Atom Z515 @ 1.20GHz","cpu_lookup.php?cpu=Intel+Atom+Z515+%40+1.20GHz", "218", "1086", "", ""],
"Intel Atom Z520":["Intel Atom Z520 @ 1.33GHz","cpu_lookup.php?cpu=Intel+Atom+Z520+%40+1.33GHz", "248", "1061", "", ""],
"Intel Atom Z530":["Intel Atom Z530 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Atom+Z530+%40+1.60GHz", "299", "1007", "", ""],
"Intel Atom Z540":["Intel Atom Z540 @ 1.86GHz","cpu_lookup.php?cpu=Intel+Atom+Z540+%40+1.86GHz", "348", "949", "", ""],
"Intel Atom Z550":["Intel Atom Z550 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Atom+Z550+%40+2.00GHz", "386", "918", "", ""],
"Intel Celeron @ 1.70GHz":["Intel Celeron @ 1.70GHz","cpu_lookup.php?cpu=Intel+Celeron+1.70GHz", "194", "1104", "", ""],
"Intel Celeron @ 1.80GHz":["Intel Celeron @ 1.80GHz","cpu_lookup.php?cpu=Intel+Celeron+1.80GHz", "207", "1094", "", ""],
"Intel Celeron @ 1000MHz":["Intel Celeron 1000MHz","cpu_lookup.php?cpu=Intel+Celeron+1000MHz", "254", "1059", "", ""],
"Intel Celeron @ 1066MHz":["Intel Celeron 1066MHz","cpu_lookup.php?cpu=Intel+Celeron+1066MHz", "261", "1053", "", ""],
"Intel Celeron @ 1100MHz":["Intel Celeron 1100MHz","cpu_lookup.php?cpu=Intel+Celeron+1100MHz", "238", "1071", "", ""],
"Intel Celeron @ 1133MHz":["Intel Celeron 1133MHz","cpu_lookup.php?cpu=Intel+Celeron+1133MHz", "281", "1027", "", ""],
"Intel Celeron @ 1200MHz":["Intel Celeron 1200MHz","cpu_lookup.php?cpu=Intel+Celeron+1200MHz", "269", "1043", "", ""],
"Intel Celeron @ 1300MHz":["Intel Celeron 1300MHz","cpu_lookup.php?cpu=Intel+Celeron+1300MHz", "285", "1020", "", ""],
"Intel Celeron @ 1333MHz":["Intel Celeron 1333MHz","cpu_lookup.php?cpu=Intel+Celeron+1333MHz", "290", "1015", "", ""],
"Intel Celeron @ 1400MHz":["Intel Celeron 1400MHz","cpu_lookup.php?cpu=Intel+Celeron+1400MHz", "308", "998", "", ""],
"Intel Celeron @ 2.00GHz":["Intel Celeron @ 2.00GHz","cpu_lookup.php?cpu=Intel+Celeron+2.00GHz", "233", "1074", "", ""],
"Intel Celeron @ 2.10GHz":["Intel Celeron @ 2.10GHz","cpu_lookup.php?cpu=Intel+Celeron+2.10GHz", "234", "1073", "", ""],
"Intel Celeron @ 2.13GHz":["Intel Celeron @ 2.13GHz","cpu_lookup.php?cpu=Intel+Celeron+2.13GHz", "256", "1058", "", ""],
"Intel Celeron @ 2.20GHz":["Intel Celeron @ 2.20GHz","cpu_lookup.php?cpu=Intel+Celeron+2.20GHz", "256", "1056", "", ""],
"Intel Celeron @ 2.26GHz":["Intel Celeron @ 2.26GHz","cpu_lookup.php?cpu=Intel+Celeron+2.26GHz", "272", "1040", "", ""],
"Intel Celeron @ 2.30GHz":["Intel Celeron @ 2.30GHz","cpu_lookup.php?cpu=Intel+Celeron+2.30GHz", "241", "1069", "", ""],
"Intel Celeron @ 2.40GHz":["Intel Celeron @ 2.40GHz","cpu_lookup.php?cpu=Intel+Celeron+2.40GHz", "281", "1025", "", ""],
"Intel Celeron @ 2.50GHz":["Intel Celeron @ 2.50GHz","cpu_lookup.php?cpu=Intel+Celeron+2.50GHz", "282", "1024", "", ""],
"Intel Celeron @ 2.53GHz":["Intel Celeron @ 2.53GHz","cpu_lookup.php?cpu=Intel+Celeron+2.53GHz", "321", "978", "", ""],
"Intel Celeron @ 2.60GHz":["Intel Celeron @ 2.60GHz","cpu_lookup.php?cpu=Intel+Celeron+2.60GHz", "291", "1012", "", ""],
"Intel Celeron @ 2.66GHz":["Intel Celeron @ 2.66GHz","cpu_lookup.php?cpu=Intel+Celeron+2.66GHz", "327", "972", "", ""],
"Intel Celeron @ 2.70GHz":["Intel Celeron @ 2.70GHz","cpu_lookup.php?cpu=Intel+Celeron+2.70GHz", "302", "1005", "", ""],
"Intel Celeron @ 2.80GHz":["Intel Celeron @ 2.80GHz","cpu_lookup.php?cpu=Intel+Celeron+2.80GHz", "337", "960", "", ""],
"Intel Celeron @ 2.93GHz":["Intel Celeron @ 2.93GHz","cpu_lookup.php?cpu=Intel+Celeron+2.93GHz", "368", "932", "", ""],
"Intel Celeron 215 @ 1.33GHz":["Intel Celeron 215 @ 1.33GHz","cpu_lookup.php?cpu=Intel+Celeron+215+%40+1.33GHz", "349", "947", "", ""],
"Intel Celeron 220 @ 1.20GHz":["Intel Celeron 220 @ 1.20GHz","cpu_lookup.php?cpu=Intel+Celeron+220+%40+1.20GHz", "331", "968", "", ""],
"Intel Celeron @ 3.06GHz":["Intel Celeron @ 3.06GHz","cpu_lookup.php?cpu=Intel+Celeron+3.06GHz", "369", "930", "", ""],
"Intel Celeron @ 3.20GHz":["Intel Celeron @ 3.20GHz","cpu_lookup.php?cpu=Intel+Celeron+3.20GHz", "399", "901", "", ""],
"Intel Celeron @ 3.33GHz":["Intel Celeron @ 3.33GHz","cpu_lookup.php?cpu=Intel+Celeron+3.33GHz", "417", "877", "", ""],
"Intel Celeron 420 @ 1.60GHz":["Intel Celeron 420 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Celeron+420+%40+1.60GHz", "456", "843", "3.26", "$139.99**"],
"Intel Celeron 430 @ 1.80GHz":["Intel Celeron 430 @ 1.80GHz","cpu_lookup.php?cpu=Intel+Celeron+430+%40+1.80GHz", "515", "795", "13.23", "$38.94*"],
"Intel Celeron 440 @ 2.00GHz":["Intel Celeron 440 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Celeron+440+%40+2.00GHz", "560", "767", "", ""],
"Intel Celeron 450 @ 2.20GHz":["Intel Celeron 450 @ 2.20GHz","cpu_lookup.php?cpu=Intel+Celeron+450+%40+2.20GHz", "626", "738", "", ""],
"Intel Celeron 530 @ 1.73GHz":["Intel Celeron 530 @ 1.73GHz","cpu_lookup.php?cpu=Intel+Celeron+530+%40+1.73GHz", "488", "817", "7.28", "$67.00**"],
"Intel Celeron 540 @ 1.86GHz":["Intel Celeron 540 @ 1.86GHz","cpu_lookup.php?cpu=Intel+Celeron+540+%40+1.86GHz", "509", "801", "", ""],
"Intel Celeron 550 @ 2.00GHz":["Intel Celeron 550 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Celeron+550+%40+2.00GHz", "543", "775", "", ""],
"Intel Celeron 560 @ 2.13GHz":["Intel Celeron 560 @ 2.13GHz","cpu_lookup.php?cpu=Intel+Celeron+560+%40+2.13GHz", "586", "755", "8.75", "$67.00**"],
"Intel Celeron 570 @ 2.26GHz":["Intel Celeron 570 @ 2.26GHz","cpu_lookup.php?cpu=Intel+Celeron+570+%40+2.26GHz", "633", "734", "", ""],
"Intel Celeron 723 @ 1.20GHz":["Intel Celeron 723 @ 1.20GHz","cpu_lookup.php?cpu=Intel+Celeron+723+%40+1.20GHz", "441", "857", "", ""],
"Intel Celeron 743 @ 1.30GHz":["Intel Celeron 743 @ 1.30GHz","cpu_lookup.php?cpu=Intel+Celeron+743+%40+1.30GHz", "469", "833", "", ""],
"Intel Celeron 900 @ 2.20GHz":["Intel Celeron 900 @ 2.20GHz","cpu_lookup.php?cpu=Intel+Celeron+900+%40+2.20GHz", "760", "698", "", ""],
"Intel Celeron 925 @ 2.30GHz":["Intel Celeron 925 @ 2.30GHz","cpu_lookup.php?cpu=Intel+Celeron+925+%40+2.30GHz", "878", "658", "", ""],
"Intel Celeron D 220 @ 1.20GHz":["Intel Celeron D 220 @ 1.20GHz","cpu_lookup.php?cpu=Intel+Celeron+D+220+%40+1.20GHz", "407", "890", "", ""],
"Intel Celeron D @ 3.06GHz":["Intel Celeron D @ 3.06GHz","cpu_lookup.php?cpu=Intel+Celeron+D+3.06GHz", "376", "924", "", ""],
"Intel Celeron D @ 3.20GHz":["Intel Celeron D @ 3.20GHz","cpu_lookup.php?cpu=Intel+Celeron+D+3.20GHz", "395", "906", "", ""],
"Intel Celeron D @ 3.33GHz":["Intel Celeron D @ 3.33GHz","cpu_lookup.php?cpu=Intel+Celeron+D+3.33GHz", "410", "885", "", ""],
"Intel Celeron D @ 3.46GHz":["Intel Celeron D @ 3.46GHz","cpu_lookup.php?cpu=Intel+Celeron+D+3.46GHz", "424", "870", "", ""],
"Intel Celeron D @ 3.60GHz":["Intel Celeron D @ 3.60GHz","cpu_lookup.php?cpu=Intel+Celeron+D+3.60GHz", "396", "904", "6.09", "$64.99*"],
"Intel Celeron D 420 @ 1.60GHz":["Intel Celeron D 420 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Celeron+D+420+%40+1.60GHz", "474", "827", "", ""],
"Intel Celeron D 430 @ 1.80GHz":["Intel Celeron D 430 @ 1.80GHz","cpu_lookup.php?cpu=Intel+Celeron+D+430+%40+1.80GHz", "585", "757", "", ""],
"Intel Celeron E1200":["Intel Celeron E1200 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Celeron+E1200+%40+1.60GHz", "894", "649", "12.59", "$70.99**"],
"Intel Celeron E1400":["Intel Celeron E1400 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Celeron+E1400+%40+2.00GHz", "1134", "558", "11.01", "$102.99**"],
"Intel Celeron E1500":["Intel Celeron E1500 @ 2.20GHz","cpu_lookup.php?cpu=Intel+Celeron+E1500+%40+2.20GHz", "1225", "523", "24.52", "$49.96**"],
"Intel Celeron E1600":["Intel Celeron E1600 @ 2.40GHz","cpu_lookup.php?cpu=Intel+Celeron+E1600+%40+2.40GHz", "1096", "577", "", ""],
"Intel Celeron E3200":["Intel Celeron E3200 @ 2.40GHz","cpu_lookup.php?cpu=Intel+Celeron+E3200+%40+2.40GHz", "1603", "406", "30.83", "$51.99**"],
"Intel Celeron E3300":["Intel Celeron E3300 @ 2.50GHz","cpu_lookup.php?cpu=Intel+Celeron+E3300+%40+2.50GHz", "1676", "383", "33.53", "$49.99*"],
"Intel Celeron E3400":["Intel Celeron E3400 @ 2.60GHz","cpu_lookup.php?cpu=Intel+Celeron+E3400+%40+2.60GHz", "1729", "364", "34.59", "$49.99*"],
"Intel Celeron E3500":["Intel Celeron E3500 @ 2.70GHz","cpu_lookup.php?cpu=Intel+Celeron+E3500+%40+2.70GHz", "1660", "386", "26.35", "$62.99*"],
"Intel Celeron G1101":["Intel Celeron G1101 @ 2.27GHz","cpu_lookup.php?cpu=Intel+Celeron+G1101+%40+2.27GHz", "1486", "443", "", ""],
"Intel Celeron M @ 1.00GHz":["Intel Celeron M @ 1.00GHz","cpu_lookup.php?cpu=Intel+Celeron+M+1.00GHz", "221", "1083", "", ""],
"Intel Celeron M @ 1.30GHz":["Intel Celeron M @ 1.30GHz","cpu_lookup.php?cpu=Intel+Celeron+M+1.30GHz", "342", "956", "", ""],
"Intel Celeron M @ 1.40GHz":["Intel Celeron M @ 1.40GHz","cpu_lookup.php?cpu=Intel+Celeron+M+1.40GHz", "363", "937", "", ""],
"Intel Celeron M @ 1.50GHz":["Intel Celeron M @ 1.50GHz","cpu_lookup.php?cpu=Intel+Celeron+M+1.50GHz", "388", "916", "", ""],
"Intel Celeron M @ 1.60GHz":["Intel Celeron M @ 1.60GHz","cpu_lookup.php?cpu=Intel+Celeron+M+1.60GHz", "404", "896", "", ""],
"Intel Celeron M @ 1.70GHz":["Intel Celeron M @ 1.70GHz","cpu_lookup.php?cpu=Intel+Celeron+M+1.70GHz", "419", "874", "", ""],
"Intel Celeron M @ 1200MHz":["Intel Celeron M 1200MHz","cpu_lookup.php?cpu=Intel+Celeron+M+1200MHz", "280", "1028", "", ""],
"Intel Celeron M @ 1300MHz":["Intel Celeron M 1300MHz","cpu_lookup.php?cpu=Intel+Celeron+M+1300MHz", "311", "995", "", ""],
"Intel Celeron M @ 1400MHz":["Intel Celeron M 1400MHz","cpu_lookup.php?cpu=Intel+Celeron+M+1400MHz", "328", "970", "", ""],
"Intel Celeron M @ 1500MHz":["Intel Celeron M 1500MHz","cpu_lookup.php?cpu=Intel+Celeron+M+1500MHz", "353", "944", "", ""],
"Intel Celeron M 410":["Intel Celeron M 410 @ 1.46GHz","cpu_lookup.php?cpu=Intel+Celeron+M+410+%40+1.46GHz", "365", "935", "", ""],
"Intel Celeron M 420":["Intel Celeron M 420 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Celeron+M+420+%40+1.60GHz", "403", "899", "", ""],
"Intel Celeron M 430":["Intel Celeron M 430 @ 1.73GHz","cpu_lookup.php?cpu=Intel+Celeron+M+430+%40+1.73GHz", "405", "895", "", ""],
"Intel Celeron M 440":["Intel Celeron M 440 @ 1.86GHz","cpu_lookup.php?cpu=Intel+Celeron+M+440+%40+1.86GHz", "440", "858", "", ""],
"Intel Celeron M 450":["Intel Celeron M 450 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Celeron+M+450+%40+2.00GHz", "493", "809", "", ""],
"Intel Celeron M 520":["Intel Celeron M 520 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Celeron+M+520+%40+1.60GHz", "423", "872", "", ""],
"Intel Celeron M 530":["Intel Celeron M 530 @ 1.73GHz","cpu_lookup.php?cpu=Intel+Celeron+M+530+%40+1.73GHz", "448", "851", "", ""],
"Intel Celeron M 540":["Intel Celeron M 540 @ 1.86GHz","cpu_lookup.php?cpu=Intel+Celeron+M+540+%40+1.86GHz", "542", "776", "", ""],
"Intel Celeron M 575":["Intel Celeron M 575 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Celeron+M+575+%40+2.00GHz", "554", "769", "", ""],
"Intel Celeron M 585":["Intel Celeron M 585 @ 2.16GHz","cpu_lookup.php?cpu=Intel+Celeron+M+585+%40+2.16GHz", "628", "737", "", ""],
"Intel Celeron M @ 600MHz":["Intel Celeron M 600MHz","cpu_lookup.php?cpu=Intel+Celeron+M+600MHz", "151", "1118", "", ""],
"Intel Celeron M 723":["Intel Celeron M 723 @ 1.20GHz","cpu_lookup.php?cpu=Intel+Celeron+M+723+%40+1.20GHz", "433", "864", "", ""],
"Intel Celeron M @ 800MHz":["Intel Celeron M 800MHz","cpu_lookup.php?cpu=Intel+Celeron+M+800MHz", "184", "1109", "", ""],
"Intel Celeron M @ 900MHz":["Intel Celeron M 900MHz","cpu_lookup.php?cpu=Intel+Celeron+M+900MHz", "232", "1075", "", ""],
"Intel Celeron P4500":["Intel Celeron P4500 @ 1.87GHz","cpu_lookup.php?cpu=Intel+Celeron+P4500+%40+1.87GHz", "1205", "529", "", ""],
"Intel Celeron P4600":["Intel Celeron P4600 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Celeron+P4600+%40+2.00GHz", "1606", "405", "", ""],
"Intel Celeron U3400":["Intel Celeron U3400 @ 1.07GHz","cpu_lookup.php?cpu=Intel+Celeron+U3400+%40+1.07GHz", "941", "629", "", ""],
"Intel Celeron U3600":["Intel Celeron U3600 @ 1.20GHz","cpu_lookup.php?cpu=Intel+Celeron+U3600+%40+1.20GHz", "1011", "602", "", ""],
"Intel Core Duo L2400":["Intel Core Duo L2400 @ 1.66GHz","cpu_lookup.php?cpu=Intel+Core+Duo+L2400+%40+1.66GHz", "792", "684", "", ""],
"Intel Core Duo L2500":["Intel Core Duo L2500 @ 1.83GHz","cpu_lookup.php?cpu=Intel+Core+Duo+L2500+%40+1.83GHz", "843", "667", "", ""],
"Intel Core Duo T2250":["Intel Core Duo T2250 @ 1.73GHz","cpu_lookup.php?cpu=Intel+Core+Duo+T2250+%40+1.73GHz", "793", "683", "", ""],
"Intel Core Duo T2300":["Intel Core Duo T2300 @ 1.66GHz","cpu_lookup.php?cpu=Intel+Core+Duo+T2300+%40+1.66GHz", "791", "685", "", ""],
"Intel Core Duo T2350":["Intel Core Duo T2350 @ 1.86GHz","cpu_lookup.php?cpu=Intel+Core+Duo+T2350+%40+1.86GHz", "852", "666", "", ""],
"Intel Core Duo T2400":["Intel Core Duo T2400 @ 1.83GHz","cpu_lookup.php?cpu=Intel+Core+Duo+T2400+%40+1.83GHz", "881", "657", "55.06", "$16.00**"],
"Intel Core Duo T2450":["Intel Core Duo T2450 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Core+Duo+T2450+%40+2.00GHz", "889", "653", "", ""],
"Intel Core Duo T2500":["Intel Core Duo T2500 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Core+Duo+T2500+%40+2.00GHz", "961", "622", "8.01", "$119.99**"],
"Intel Core Duo T2600":["Intel Core Duo T2600 @ 2.16GHz","cpu_lookup.php?cpu=Intel+Core+Duo+T2600+%40+2.16GHz", "983", "613", "", ""],
"Intel Core Duo T2700":["Intel Core Duo T2700 @ 2.33GHz","cpu_lookup.php?cpu=Intel+Core+Duo+T2700+%40+2.33GHz", "1144", "553", "", ""],
"Intel Core Duo U2400":["Intel Core Duo U2400 @ 1.06GHz","cpu_lookup.php?cpu=Intel+Core+Duo+U2400+%40+1.06GHz", "535", "780", "", ""],
"Intel Core Duo U2500":["Intel Core Duo U2500 @ 1.20GHz","cpu_lookup.php?cpu=Intel+Core+Duo+U2500+%40+1.20GHz", "591", "751", "", ""],
"Intel Core i3 330M":["Intel Core i3 330M @ 2.13GHz","cpu_lookup.php?cpu=Intel+Core+i3+330M+%40+2.13GHz", "1966", "315", "", ""],
"Intel Core i3 330UM":["Intel Core i3 330UM @ 1.20GHz","cpu_lookup.php?cpu=Intel+Core+i3+330UM+%40+1.20GHz", "1199", "532", "", ""],
"Intel Core i3 350M":["Intel Core i3 350M @ 2.27GHz","cpu_lookup.php?cpu=Intel+Core+i3+350M+%40+2.27GHz", "2057", "300", "", ""],
"Intel Core i3 370M":["Intel Core i3 370M @ 2.40GHz","cpu_lookup.php?cpu=Intel+Core+i3+370M+%40+2.40GHz", "2231", "277", "", ""],
"Intel Core i3 380M":["Intel Core i3 380M @ 2.53GHz","cpu_lookup.php?cpu=Intel+Core+i3+380M+%40+2.53GHz", "2332", "262", "", ""],
"Intel Core i3 380UM":["Intel Core i3 380UM @ 1.33GHz","cpu_lookup.php?cpu=Intel+Core+i3+380UM+%40+1.33GHz", "1287", "496", "", ""],
"Intel Core i3 530":["Intel Core i3 530 @ 2.93GHz","cpu_lookup.php?cpu=Intel+Core+i3+530+%40+2.93GHz", "2728", "221", "18.56", "$146.95*"],
"Intel Core i3 540":["Intel Core i3 540 @ 3.07GHz","cpu_lookup.php?cpu=Intel+Core+i3+540+%40+3.07GHz", "2840", "209", "25.24", "$112.50*"],
"Intel Core i3 550":["Intel Core i3 550 @ 3.20GHz","cpu_lookup.php?cpu=Intel+Core+i3+550+%40+3.20GHz", "3088", "190", "24.71", "$124.99*"],
"Intel Core i3 560":["Intel Core i3 560 @ 3.33GHz","cpu_lookup.php?cpu=Intel+Core+i3+560+%40+3.33GHz", "3112", "188", "20.75", "$149.99*"],
"Intel Core i3 M 390":["Intel Core i3 M 390 @ 2.67GHz","cpu_lookup.php?cpu=Intel+Core+i3+M+390+%40+2.67GHz", "2759", "219", "", ""],
"Intel Core i3-2100":["Intel Core i3-2100 @ 3.10GHz","cpu_lookup.php?cpu=Intel+Core+i3-2100+%40+3.10GHz", "3866", "125", "30.93", "$124.99*"],
"Intel Core i3-2100T":["Intel Core i3-2100T @ 2.50GHz","cpu_lookup.php?cpu=Intel+Core+i3-2100T+%40+2.50GHz", "3325", "173", "24.63", "$134.99*"],
"Intel Core i3-2120":["Intel Core i3-2120 @ 3.30GHz","cpu_lookup.php?cpu=Intel+Core+i3-2120+%40+3.30GHz", "3965", "118", "27.35", "$144.99*"],
"Intel Core i3-2310M":["Intel Core i3-2310M @ 2.10GHz","cpu_lookup.php?cpu=Intel+Core+i3-2310M+%40+2.10GHz", "2708", "224", "", ""],
"Intel Core i5 430M":["Intel Core i5 430M @ 2.27GHz","cpu_lookup.php?cpu=Intel+Core+i5+430M+%40+2.27GHz", "2359", "259", "29.86", "$79.00**"],
"Intel Core i5 430UM":["Intel Core i5 430UM @ 1.20GHz","cpu_lookup.php?cpu=Intel+Core+i5+430UM+%40+1.20GHz", "1430", "456", "", ""],
"Intel Core i5 450M":["Intel Core i5 450M @ 2.40GHz","cpu_lookup.php?cpu=Intel+Core+i5+450M+%40+2.40GHz", "2477", "250", "", ""],
"Intel Core i5 460M":["Intel Core i5 460M @ 2.53GHz","cpu_lookup.php?cpu=Intel+Core+i5+460M+%40+2.53GHz", "2629", "234", "", ""],
"Intel Core i5 520M":["Intel Core i5 520M @ 2.40GHz","cpu_lookup.php?cpu=Intel+Core+i5+520M+%40+2.40GHz", "2356", "261", "9.62", "$244.99**"],
"Intel Core i5 520UM":["Intel Core i5 520UM @ 1.07GHz","cpu_lookup.php?cpu=Intel+Core+i5+520UM+%40+1.07GHz", "1499", "436", "", ""],
"Intel Core i5 540M":["Intel Core i5 540M @ 2.53GHz","cpu_lookup.php?cpu=Intel+Core+i5+540M+%40+2.53GHz", "2489", "246", "8.89", "$279.99**"],
"Intel Core i5 560M":["Intel Core i5 560M @ 2.67GHz","cpu_lookup.php?cpu=Intel+Core+i5+560M+%40+2.67GHz", "2726", "223", "11.18", "$243.78*"],
"Intel Core i5 580M":["Intel Core i5 580M @ 2.67GHz","cpu_lookup.php?cpu=Intel+Core+i5+580M+%40+2.67GHz", "2868", "208", "10.27", "$279.27*"],
"Intel Core i5 650":["Intel Core i5 650 @ 3.20GHz","cpu_lookup.php?cpu=Intel+Core+i5+650+%40+3.20GHz", "3152", "185", "16.59", "$189.99*"],
"Intel Core i5 655K":["Intel Core i5 655K @ 3.20GHz","cpu_lookup.php?cpu=Intel+Core+i5+655K+%40+3.20GHz", "3580", "150", "15.77", "$226.99*"],
"Intel Core i5 660":["Intel Core i5 660 @ 3.33GHz","cpu_lookup.php?cpu=Intel+Core+i5+660+%40+3.33GHz", "3172", "183", "14.03", "$226.16*"],
"Intel Core i5 661":["Intel Core i5 661 @ 3.33GHz","cpu_lookup.php?cpu=Intel+Core+i5+661+%40+3.33GHz", "3301", "175", "14.88", "$221.89*"],
"Intel Core i5 670":["Intel Core i5 670 @ 3.47GHz","cpu_lookup.php?cpu=Intel+Core+i5+670+%40+3.47GHz", "3167", "184", "10.32", "$306.99*"],
"Intel Core i5 680":["Intel Core i5 680 @ 3.60GHz","cpu_lookup.php?cpu=Intel+Core+i5+680+%40+3.60GHz", "3584", "148", "11.67", "$306.99*"],
"Intel Core i5 750":["Intel Core i5 750 @ 2.67GHz","cpu_lookup.php?cpu=Intel+Core+i5+750+%40+2.67GHz", "4269", "103", "18.79", "$227.19*"],
"Intel Core i5 760":["Intel Core i5 760 @ 2.80GHz","cpu_lookup.php?cpu=Intel+Core+i5+760+%40+2.80GHz", "4573", "89", "21.78", "$209.99*"],
"Intel Core i5 M 480":["Intel Core i5 M 480 @ 2.67GHz","cpu_lookup.php?cpu=Intel+Core+i5+M+480+%40+2.67GHz", "2770", "218", "", ""],
"Intel Core i5 U 470":["Intel Core i5 U 470 @ 1.33GHz","cpu_lookup.php?cpu=Intel+Core+i5+U+470+%40+1.33GHz", "1582", "411", "", ""],
"Intel Core i5-2300":["Intel Core i5-2300 @ 2.80GHz","cpu_lookup.php?cpu=Intel+Core+i5-2300+%40+2.80GHz", "5444", "58", "29.43", "$184.99**"],
"Intel Core i5-2400":["Intel Core i5-2400 @ 3.10GHz","cpu_lookup.php?cpu=Intel+Core+i5-2400+%40+3.10GHz", "6087", "43", "32.38", "$187.99*"],
"Intel Core i5-2400S":["Intel Core i5-2400S @ 2.50GHz","cpu_lookup.php?cpu=Intel+Core+i5-2400S+%40+2.50GHz", "5231", "63", "26.16", "$199.99*"],
"Intel Core i5-2410M":["Intel Core i5-2410M @ 2.30GHz","cpu_lookup.php?cpu=Intel+Core+i5-2410M+%40+2.30GHz", "3325", "172", "", ""],
"Intel Core i5-2415M":["Intel Core i5-2415M @ 2.30GHz","cpu_lookup.php?cpu=Intel+Core+i5-2415M+%40+2.30GHz", "2162", "288", "", ""],
"Intel Core i5-2500":["Intel Core i5-2500 @ 3.30GHz","cpu_lookup.php?cpu=Intel+Core+i5-2500+%40+3.30GHz", "6492", "33", "30.93", "$209.88*"],
"Intel Core i5-2500K":["Intel Core i5-2500K @ 3.30GHz","cpu_lookup.php?cpu=Intel+Core+i5-2500K+%40+3.30GHz", "6720", "29", "30.83", "$217.99*"],
"Intel Core i5-2520M":["Intel Core i5-2520M @ 2.50GHz","cpu_lookup.php?cpu=Intel+Core+i5-2520M+%40+2.50GHz", "3842", "126", "15.37", "$249.99*"],
"Intel Core i5-2537M":["Intel Core i5-2537M @ 1.40GHz","cpu_lookup.php?cpu=Intel+Core+i5-2537M+%40+1.40GHz", "1100", "570", "", ""],
"Intel Core i5-2540M":["Intel Core i5-2540M @ 2.60GHz","cpu_lookup.php?cpu=Intel+Core+i5-2540M+%40+2.60GHz", "3598", "146", "12.85", "$279.99*"],
"Intel Core i7 610":["Intel Core i7 610 @ 2.53GHz","cpu_lookup.php?cpu=Intel+Core+i7+610+%40+2.53GHz", "1969", "314", "", ""],
"Intel Core i7 620LM":["Intel Core i7 620LM @ 2.00GHz","cpu_lookup.php?cpu=Intel+Core+i7+620LM+%40+2.00GHz", "1566", "418", "", ""],
"Intel Core i7 620M":["Intel Core i7 620M @ 2.67GHz","cpu_lookup.php?cpu=Intel+Core+i7+620M+%40+2.67GHz", "2786", "216", "8.39", "$332.00**"],
"Intel Core i7 640LM":["Intel Core i7 640LM @ 2.13GHz","cpu_lookup.php?cpu=Intel+Core+i7+640LM+%40+2.13GHz", "2198", "280", "6.62", "$332.00**"],
"Intel Core i7 640M":["Intel Core i7 640M @ 2.80GHz","cpu_lookup.php?cpu=Intel+Core+i7+640M+%40+2.80GHz", "2798", "211", "", ""],
"Intel Core i7 640UM":["Intel Core i7 640UM @ 1.20GHz","cpu_lookup.php?cpu=Intel+Core+i7+640UM+%40+1.20GHz", "1576", "414", "", ""],
"Intel Core i7 720QM":["Intel Core i7 720QM @ 1.60GHz","cpu_lookup.php?cpu=Intel+Core+i7+720QM+%40+1.60GHz", "3276", "176", "8.40", "$389.99**"],
"Intel Core i7 740QM":["Intel Core i7 740QM @ 1.73GHz","cpu_lookup.php?cpu=Intel+Core+i7+740QM+%40+1.73GHz", "3584", "147", "8.62", "$415.93*"],
"Intel Core i7 820QM":["Intel Core i7 820QM @ 1.73GHz","cpu_lookup.php?cpu=Intel+Core+i7+820QM+%40+1.73GHz", "3538", "155", "6.48", "$546.00**"],
"Intel Core i7 840QM":["Intel Core i7 840QM @ 1.87GHz","cpu_lookup.php?cpu=Intel+Core+i7+840QM+%40+1.87GHz", "3840", "127", "6.49", "$592.11**"],
"Intel Core i7 860":["Intel Core i7 860 @ 2.80GHz","cpu_lookup.php?cpu=Intel+Core+i7+860+%40+2.80GHz", "5565", "53", "15.29", "$363.93*"],
"Intel Core i7 870":["Intel Core i7 870 @ 2.93GHz","cpu_lookup.php?cpu=Intel+Core+i7+870+%40+2.93GHz", "6101", "42", "21.04", "$289.98*"],
"Intel Core i7 870S":["Intel Core i7 870S @ 2.67GHz","cpu_lookup.php?cpu=Intel+Core+i7+870S+%40+2.67GHz", "5520", "56", "", ""],
"Intel Core i7 875K":["Intel Core i7 875K @ 2.93GHz","cpu_lookup.php?cpu=Intel+Core+i7+875K+%40+2.93GHz", "6524", "32", "19.19", "$340.00*"],
"Intel Core i7 880":["Intel Core i7 880 @ 3.07GHz","cpu_lookup.php?cpu=Intel+Core+i7+880+%40+3.07GHz", "6461", "34", "11.08", "$583.00**"],
"Intel Core i7 920":["Intel Core i7 920 @ 2.67GHz","cpu_lookup.php?cpu=Intel+Core+i7+920+%40+2.67GHz", "5564", "54", "18.55", "$299.99*"],
"Intel Core i7 920XM":["Intel Core i7 920XM @ 2.00GHz","cpu_lookup.php?cpu=Intel+Core+i7+920XM+%40+2.00GHz", "4398", "95", "3.84", "$1,144.69**"],
"Intel Core i7 930":["Intel Core i7 930 @ 2.80GHz","cpu_lookup.php?cpu=Intel+Core+i7+930+%40+2.80GHz", "5838", "48", "17.07", "$341.99*"],
"Intel Core i7 940":["Intel Core i7 940 @ 2.93GHz","cpu_lookup.php?cpu=Intel+Core+i7+940+%40+2.93GHz", "6152", "41", "23.66", "$259.99*"],
"Intel Core i7 940XM":["Intel Core i7 940XM @ 2.13GHz","cpu_lookup.php?cpu=Intel+Core+i7+940XM+%40+2.13GHz", "4509", "91", "3.92", "$1,149.99**"],
"Intel Core i7 950":["Intel Core i7 950 @ 3.07GHz","cpu_lookup.php?cpu=Intel+Core+i7+950+%40+3.07GHz", "6370", "36", "23.59", "$269.99*"],
"Intel Core i7 960":["Intel Core i7 960 @ 3.20GHz","cpu_lookup.php?cpu=Intel+Core+i7+960+%40+3.20GHz", "6701", "30", "23.93", "$279.99*"],
"Intel Core i7 965":["Intel Core i7 965 @ 3.20GHz","cpu_lookup.php?cpu=Intel+Core+i7+965+%40+3.20GHz", "6823", "25", "6.89", "$990.00*"],
"Intel Core i7 970":["Intel Core i7 970 @ 3.20GHz","cpu_lookup.php?cpu=Intel+Core+i7+970+%40+3.20GHz", "9991", "6", "16.79", "$594.99*"],
"Intel Core i7 975":["Intel Core i7 975 @ 3.33GHz","cpu_lookup.php?cpu=Intel+Core+i7+975+%40+3.33GHz", "7034", "22", "6.73", "$1,044.49*"],
"Intel Core i7 980X":["Intel Core i7 980X @ 3.33GHz","cpu_lookup.php?cpu=Intel+Core+i7+980X+%40+3.33GHz", "10618", "4", "10.11", "$1,049.99*"],
"Intel Core i7 990X":["Intel Core i7 990X @ 3.47GHz","cpu_lookup.php?cpu=Intel+Core+i7+990X+%40+3.47GHz", "10691", "3", "10.69", "$999.99*"],
"Intel Core i7 995X":["Intel Core i7 995X @ 3.60GHz","cpu_lookup.php?cpu=Intel+Core+i7+995X+%40+3.60GHz", "10809", "2", "", ""],
"Intel Core i7 9600":["Intel Core i7 @ 9600 @ 3.20GHz","cpu_lookup.php?cpu=Intel+Core+i7+%40+9600+%40+3.20GHz", "1991", "309", "", ""],
"Intel Core i7 S 860":["Intel Core i7 S 860 @ 2.53GHz","cpu_lookup.php?cpu=Intel+Core+i7+S+860+%40+2.53GHz", "5137", "68", "14.27", "$359.99*"],
"Intel Core i7 X 880":["Intel Core i7 X 880 @ 3.07GHz","cpu_lookup.php?cpu=Intel+Core+i7+X+880+%40+3.07GHz", "7442", "19", "", ""],
"Intel Core i7-2600":["Intel Core i7-2600 @ 3.40GHz","cpu_lookup.php?cpu=Intel+Core+i7-2600+%40+3.40GHz", "8859", "13", "29.73", "$297.99*"],
"Intel Core i7-2600K":["Intel Core i7-2600K @ 3.40GHz","cpu_lookup.php?cpu=Intel+Core+i7-2600K+%40+3.40GHz", "9181", "12", "29.15", "$314.95*"],
"Intel Core i7-2620M":["Intel Core i7-2620M @ 2.70GHz","cpu_lookup.php?cpu=Intel+Core+i7-2620M+%40+2.70GHz", "3361", "169", "", ""],
"Intel Core i7-2630QM":["Intel Core i7-2630QM @ 2.00GHz","cpu_lookup.php?cpu=Intel+Core+i7-2630QM+%40+2.00GHz", "6336", "38", "", ""],
"Intel Core i7-2635QM":["Intel Core i7-2635QM @ 2.00GHz","cpu_lookup.php?cpu=Intel+Core+i7-2635QM+%40+2.00GHz", "6798", "26", "", ""],
"Intel Core i7-2655LE":["Intel Core i7-2655LE @ 2.20GHz","cpu_lookup.php?cpu=Intel+Core+i7-2655LE+%40+2.20GHz", "2452", "253", "", ""],
"Intel Core i7-2720QM":["Intel Core i7-2720QM @ 2.20GHz","cpu_lookup.php?cpu=Intel+Core+i7-2720QM+%40+2.20GHz", "7394", "20", "18.49", "$399.99*"],
"Intel Core i7-2820QM":["Intel Core i7-2820QM @ 2.30GHz","cpu_lookup.php?cpu=Intel+Core+i7-2820QM+%40+2.30GHz", "7656", "18", "12.76", "$599.99*"],
"Intel Core i7-2920XM":["Intel Core i7-2920XM @ 2.50GHz","cpu_lookup.php?cpu=Intel+Core+i7-2920XM+%40+2.50GHz", "8044", "16", "", ""],
"Intel Core Solo U1400":["Intel Core Solo U1400 @ 1.20GHz","cpu_lookup.php?cpu=Intel+Core+Solo+U1400+%40+1.20GHz", "265", "1047", "", ""],
"Intel Core Solo U1500":["Intel Core Solo U1500 @ 1.33GHz","cpu_lookup.php?cpu=Intel+Core+Solo+U1500+%40+1.33GHz", "327", "971", "", ""],
"Intel Core2 Duo @ 2.53GHz":["Intel Core2 Duo @ 2.53GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+%40+2.53GHz", "1913", "330", "", ""],
"Intel Core2 Duo @ 2.66GHz":["Intel Core2 Duo @ 2.66GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+%40+2.66GHz", "1606", "404", "", ""],
"Intel Core2 Duo @ 3.00GHz":["Intel Core2 Duo @ 3.00GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+%40+3.00GHz", "1730", "363", "", ""],
"Intel Core2 Duo E4300":["Intel Core2 Duo E4300 @ 1.80GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E4300+%40+1.80GHz", "1059", "588", "", ""],
"Intel Core2 Duo E4400":["Intel Core2 Duo E4400 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E4400+%40+2.00GHz", "1174", "540", "5.90", "$198.95**"],
"Intel Core2 Duo E4500":["Intel Core2 Duo E4500 @ 2.20GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E4500+%40+2.20GHz", "1275", "503", "11.59", "$110.00*"],
"Intel Core2 Duo E4600":["Intel Core2 Duo E4600 @ 2.40GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E4600+%40+2.40GHz", "1380", "473", "6.94", "$198.95*"],
"Intel Core2 Duo E4700":["Intel Core2 Duo E4700 @ 2.60GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E4700+%40+2.60GHz", "1499", "435", "14.99", "$100.00*"],
"Intel Core2 Duo E6300":["Intel Core2 Duo E6300 @ 1.86GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E6300+%40+1.86GHz", "1116", "563", "7.11", "$157.00*"],
"Intel Core2 Duo E6320":["Intel Core2 Duo E6320 @ 1.86GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E6320+%40+1.86GHz", "1158", "547", "4.63", "$249.95**"],
"Intel Core2 Duo E6400":["Intel Core2 Duo E6400 @ 2.13GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E6400+%40+2.13GHz", "1273", "505", "4.26", "$298.95*"],
"Intel Core2 Duo E6420":["Intel Core2 Duo E6420 @ 2.13GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E6420+%40+2.13GHz", "1320", "487", "8.31", "$158.88*"],
"Intel Core2 Duo E6540":["Intel Core2 Duo E6540 @ 2.33GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E6540+%40+2.33GHz", "1233", "522", "", ""],
"Intel Core2 Duo E6550":["Intel Core2 Duo E6550 @ 2.33GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E6550+%40+2.33GHz", "1453", "449", "12.14", "$119.66*"],
"Intel Core2 Duo E6600":["Intel Core2 Duo E6600 @ 2.40GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E6600+%40+2.40GHz", "1507", "434", "4.43", "$339.95**"],
"Intel Core2 Duo E6700":["Intel Core2 Duo E6700 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E6700+%40+2.66GHz", "1654", "389", "19.46", "$84.99*"],
"Intel Core2 Duo E6750":["Intel Core2 Duo E6750 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E6750+%40+2.66GHz", "1688", "379", "13.72", "$123.00*"],
"Intel Core2 Duo E6850":["Intel Core2 Duo E6850 @ 3.00GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E6850+%40+3.00GHz", "1919", "327", "15.60", "$123.00*"],
"Intel Core2 Duo E7200":["Intel Core2 Duo E7200 @ 2.53GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E7200+%40+2.53GHz", "1722", "367", "13.25", "$129.95**"],
"Intel Core2 Duo E7300":["Intel Core2 Duo E7300 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E7300+%40+2.66GHz", "1818", "345", "", ""],
"Intel Core2 Duo E7400":["Intel Core2 Duo E7400 @ 2.80GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E7400+%40+2.80GHz", "1918", "328", "11.84", "$161.99**"],
"Intel Core2 Duo E7500":["Intel Core2 Duo E7500 @ 2.93GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E7500+%40+2.93GHz", "2012", "308", "19.16", "$104.99*"],
"Intel Core2 Duo E7600":["Intel Core2 Duo E7600 @ 3.06GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E7600+%40+3.06GHz", "2127", "291", "15.18", "$140.10*"],
"Intel Core2 Duo E8135":["Intel Core2 Duo E8135 @ 2.40GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E8135+%40+2.40GHz", "1696", "378", "", ""],
"Intel Core2 Duo E8135":["Intel Core2 Duo E8135 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E8135+%40+2.66GHz", "1814", "346", "", ""],
"Intel Core2 Duo E8200":["Intel Core2 Duo E8200 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E8200+%40+2.66GHz", "1943", "323", "", ""],
"Intel Core2 Duo E8235":["Intel Core2 Duo E8235 @ 2.80GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E8235+%40+2.80GHz", "1963", "316", "", ""],
"Intel Core2 Duo E8300":["Intel Core2 Duo E8300 @ 2.83GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E8300+%40+2.83GHz", "1977", "312", "", ""],
"Intel Core2 Duo E8335":["Intel Core2 Duo E8335 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E8335+%40+2.66GHz", "1862", "340", "", ""],
"Intel Core2 Duo E8335":["Intel Core2 Duo E8335 @ 2.93GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E8335+%40+2.93GHz", "2059", "299", "", ""],
"Intel Core2 Duo E8400":["Intel Core2 Duo E8400 @ 3.00GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E8400+%40+3.00GHz", "2250", "274", "13.24", "$169.99*"],
"Intel Core2 Duo E8435":["Intel Core2 Duo E8435 @ 3.06GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E8435+%40+3.06GHz", "2275", "270", "", ""],
"Intel Core2 Duo E8500":["Intel Core2 Duo E8500 @ 3.16GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E8500+%40+3.16GHz", "2418", "255", "12.09", "$199.99*"],
"Intel Core2 Duo E8600":["Intel Core2 Duo E8600 @ 3.33GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+E8600+%40+3.33GHz", "2664", "229", "8.78", "$303.32*"],
"Intel Core2 Duo L7100":["Intel Core2 Duo L7100 @ 1.20GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+L7100+%40+1.20GHz", "675", "718", "", ""],
"Intel Core2 Duo L7300":["Intel Core2 Duo L7300 @ 1.40GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+L7300+%40+1.40GHz", "693", "713", "", ""],
"Intel Core2 Duo L7500":["Intel Core2 Duo L7500 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+L7500+%40+1.60GHz", "913", "639", "", ""],
"Intel Core2 Duo L7700":["Intel Core2 Duo L7700 @ 1.80GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+L7700+%40+1.80GHz", "1100", "569", "", ""],
"Intel Core2 Duo L9300":["Intel Core2 Duo L9300 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+L9300+%40+1.60GHz", "1010", "604", "", ""],
"Intel Core2 Duo L9400":["Intel Core2 Duo L9400 @ 1.86GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+L9400+%40+1.86GHz", "1241", "520", "", ""],
"Intel Core2 Duo L9600":["Intel Core2 Duo L9600 @ 2.13GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+L9600+%40+2.13GHz", "1510", "433", "", ""],
"Intel Core2 Duo P7350":["Intel Core2 Duo P7350 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+P7350+%40+2.00GHz", "1397", "466", "", ""],
"Intel Core2 Duo P7370":["Intel Core2 Duo P7370 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+P7370+%40+2.00GHz", "1337", "483", "", ""],
"Intel Core2 Duo P7450":["Intel Core2 Duo P7450 @ 2.13GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+P7450+%40+2.13GHz", "1568", "417", "", ""],
"Intel Core2 Duo P7500":["Intel Core2 Duo P7500 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+P7500+%40+1.60GHz", "914", "638", "", ""],
"Intel Core2 Duo P7550":["Intel Core2 Duo P7550 @ 2.26GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+P7550+%40+2.26GHz", "1627", "396", "", ""],
"Intel Core2 Duo P7570":["Intel Core2 Duo P7570 @ 2.26GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+P7570+%40+2.26GHz", "1573", "415", "", ""],
"Intel Core2 Duo P8400":["Intel Core2 Duo P8400 @ 2.26GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+P8400+%40+2.26GHz", "1549", "422", "7.83", "$197.79**"],
"Intel Core2 Duo P8600":["Intel Core2 Duo P8600 @ 2.40GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+P8600+%40+2.40GHz", "1618", "399", "7.53", "$214.99*"],
"Intel Core2 Duo P8700":["Intel Core2 Duo P8700 @ 2.53GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+P8700+%40+2.53GHz", "1794", "350", "6.23", "$287.91*"],
"Intel Core2 Duo P8800":["Intel Core2 Duo P8800 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+P8800+%40+2.66GHz", "1877", "337", "7.17", "$261.67**"],
"Intel Core2 Duo P9300":["Intel Core2 Duo P9300 @ 2.26GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+P9300+%40+2.26GHz", "1579", "413", "", ""],
"Intel Core2 Duo P9400":["Intel Core2 Duo P9400 @ 2.40GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+P9400+%40+2.40GHz", "1599", "409", "", ""],
"Intel Core2 Duo P9500":["Intel Core2 Duo P9500 @ 2.53GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+P9500+%40+2.53GHz", "1766", "358", "5.19", "$340.00*"],
"Intel Core2 Duo P9600":["Intel Core2 Duo P9600 @ 2.53GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+P9600+%40+2.53GHz", "1714", "370", "6.08", "$281.89**"],
"Intel Core2 Duo P9600":["Intel Core2 Duo P9600 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+P9600+%40+2.66GHz", "1957", "318", "", ""],
"Intel Core2 Duo P9700":["Intel Core2 Duo P9700 @ 2.80GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+P9700+%40+2.80GHz", "2122", "292", "", ""],
"Intel Core2 Duo T5200":["Intel Core2 Duo T5200 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T5200+%40+1.60GHz", "832", "673", "", ""],
"Intel Core2 Duo T5250":["Intel Core2 Duo T5250 @ 1.50GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T5250+%40+1.50GHz", "834", "672", "", ""],
"Intel Core2 Duo T5270":["Intel Core2 Duo T5270 @ 1.40GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T5270+%40+1.40GHz", "790", "687", "", ""],
"Intel Core2 Duo T5300":["Intel Core2 Duo T5300 @ 1.73GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T5300+%40+1.73GHz", "881", "656", "", ""],
"Intel Core2 Duo T5450":["Intel Core2 Duo T5450 @ 1.66GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T5450+%40+1.66GHz", "941", "628", "", ""],
"Intel Core2 Duo T5470":["Intel Core2 Duo T5470 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T5470+%40+1.60GHz", "903", "646", "", ""],
"Intel Core2 Duo T5500":["Intel Core2 Duo T5500 @ 1.66GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T5500+%40+1.66GHz", "921", "636", "4.68", "$197.00**"],
"Intel Core2 Duo T5550":["Intel Core2 Duo T5550 @ 1.83GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T5550+%40+1.83GHz", "1016", "599", "", ""],
"Intel Core2 Duo T5600":["Intel Core2 Duo T5600 @ 1.83GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T5600+%40+1.83GHz", "1006", "606", "3.73", "$269.99**"],
"Intel Core2 Duo T5670":["Intel Core2 Duo T5670 @ 1.80GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T5670+%40+1.80GHz", "996", "608", "", ""],
"Intel Core2 Duo T5750":["Intel Core2 Duo T5750 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T5750+%40+2.00GHz", "1114", "564", "", ""],
"Intel Core2 Duo T5800":["Intel Core2 Duo T5800 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T5800+%40+2.00GHz", "1140", "556", "", ""],
"Intel Core2 Duo T5850":["Intel Core2 Duo T5850 @ 2.16GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T5850+%40+2.16GHz", "1204", "530", "", ""],
"Intel Core2 Duo T5870":["Intel Core2 Duo T5870 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T5870+%40+2.00GHz", "1132", "559", "", ""],
"Intel Core2 Duo T5900":["Intel Core2 Duo T5900 @ 2.20GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T5900+%40+2.20GHz", "1207", "527", "", ""],
"Intel Core2 Duo T6400":["Intel Core2 Duo T6400 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T6400+%40+2.00GHz", "1338", "482", "14.66", "$91.29**"],
"Intel Core2 Duo T6500":["Intel Core2 Duo T6500 @ 2.10GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T6500+%40+2.10GHz", "1431", "454", "", ""],
"Intel Core2 Duo T6570":["Intel Core2 Duo T6570 @ 2.10GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T6570+%40+2.10GHz", "1353", "480", "", ""],
"Intel Core2 Duo T6600":["Intel Core2 Duo T6600 @ 2.20GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T6600+%40+2.20GHz", "1554", "420", "", ""],
"Intel Core2 Duo T6670":["Intel Core2 Duo T6670 @ 2.20GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T6670+%40+2.20GHz", "1445", "451", "", ""],
"Intel Core2 Duo T7100":["Intel Core2 Duo T7100 @ 1.80GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T7100+%40+1.80GHz", "1003", "607", "10.03", "$99.99*"],
"Intel Core2 Duo T7200":["Intel Core2 Duo T7200 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T7200+%40+2.00GHz", "1146", "552", "2.30", "$498.95**"],
"Intel Core2 Duo T7250":["Intel Core2 Duo T7250 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T7250+%40+2.00GHz", "1097", "576", "", ""],
"Intel Core2 Duo T7300":["Intel Core2 Duo T7300 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T7300+%40+2.00GHz", "1147", "551", "", ""],
"Intel Core2 Duo T7400":["Intel Core2 Duo T7400 @ 2.16GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T7400+%40+2.16GHz", "1239", "521", "", ""],
"Intel Core2 Duo T7500":["Intel Core2 Duo T7500 @ 2.20GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T7500+%40+2.20GHz", "1275", "504", "7.62", "$167.39**"],
"Intel Core2 Duo T7600":["Intel Core2 Duo T7600 @ 2.33GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T7600+%40+2.33GHz", "1341", "481", "", ""],
"Intel Core2 Duo T7700":["Intel Core2 Duo T7700 @ 2.40GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T7700+%40+2.40GHz", "1394", "467", "4.51", "$309.00*"],
"Intel Core2 Duo T7800":["Intel Core2 Duo T7800 @ 2.60GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T7800+%40+2.60GHz", "1491", "440", "2.45", "$607.99*"],
"Intel Core2 Duo T8100":["Intel Core2 Duo T8100 @ 2.10GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T8100+%40+2.10GHz", "1361", "478", "7.64", "$178.24*"],
"Intel Core2 Duo T8300":["Intel Core2 Duo T8300 @ 2.40GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T8300+%40+2.40GHz", "1529", "428", "6.48", "$236.00**"],
"Intel Core2 Duo T9300":["Intel Core2 Duo T9300 @ 2.50GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T9300+%40+2.50GHz", "1698", "375", "5.53", "$307.00*"],
"Intel Core2 Duo T9400":["Intel Core2 Duo T9400 @ 2.53GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T9400+%40+2.53GHz", "1761", "360", "4.96", "$354.94**"],
"Intel Core2 Duo T9500":["Intel Core2 Duo T9500 @ 2.60GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T9500+%40+2.60GHz", "1855", "341", "", ""],
"Intel Core2 Duo T9550":["Intel Core2 Duo T9550 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T9550+%40+2.66GHz", "1897", "333", "5.28", "$359.19*"],
"Intel Core2 Duo T9600":["Intel Core2 Duo T9600 @ 2.80GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T9600+%40+2.80GHz", "2030", "305", "5.99", "$338.99*"],
"Intel Core2 Duo T9800":["Intel Core2 Duo T9800 @ 2.93GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T9800+%40+2.93GHz", "2196", "281", "5.18", "$423.89**"],
"Intel Core2 Duo T9900":["Intel Core2 Duo T9900 @ 3.06GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+T9900+%40+3.06GHz", "2309", "265", "4.36", "$530.00**"],
"Intel Core2 Duo U7500":["Intel Core2 Duo U7500 @ 1.06GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+U7500+%40+1.06GHz", "606", "745", "", ""],
"Intel Core2 Duo U7600":["Intel Core2 Duo U7600 @ 1.20GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+U7600+%40+1.20GHz", "691", "714", "", ""],
"Intel Core2 Duo U7700":["Intel Core2 Duo U7700 @ 1.33GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+U7700+%40+1.33GHz", "754", "702", "", ""],
"Intel Core2 Duo U9300":["Intel Core2 Duo U9300 @ 1.20GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+U9300+%40+1.20GHz", "783", "690", "", ""],
"Intel Core2 Duo U9400":["Intel Core2 Duo U9400 @ 1.40GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+U9400+%40+1.40GHz", "969", "620", "", ""],
"Intel Core2 Duo U9600":["Intel Core2 Duo U9600 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Core2+Duo+U9600+%40+1.60GHz", "1131", "560", "", ""],
"Intel Core2 E6700 @ 2.66GHz":["Intel Core2 E6700 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Core2+E6700+%40+2.66GHz", "1583", "410", "", ""],
"Intel Core2 Extreme @ 2.26GHz":["Intel Core2 Extreme @ 2.26GHz","cpu_lookup.php?cpu=Intel+Core2+Extreme+%40+2.26GHz", "3518", "156", "", ""],
"Intel Core2 Extreme @ 2.40GHz":["Intel Core2 Extreme @ 2.40GHz","cpu_lookup.php?cpu=Intel+Core2+Extreme+%40+2.40GHz", "3871", "124", "", ""],
"Intel Core2 Extreme Q6800":["Intel Core2 Extreme Q6800 @ 2.93GHz","cpu_lookup.php?cpu=Intel+Core2+Extreme+Q6800+%40+2.93GHz", "3666", "140", "3.26", "$1,125.00**"],
"Intel Core2 Extreme Q6850":["Intel Core2 Extreme Q6850 @ 3.00GHz","cpu_lookup.php?cpu=Intel+Core2+Extreme+Q6850+%40+3.00GHz", "3896", "121", "", ""],
"Intel Core2 Extreme Q9300":["Intel Core2 Extreme Q9300 @ 2.53GHz","cpu_lookup.php?cpu=Intel+Core2+Extreme+Q9300+%40+2.53GHz", "3785", "130", "", ""],
"Intel Core2 Extreme X7800":["Intel Core2 Extreme X7800 @ 2.60GHz","cpu_lookup.php?cpu=Intel+Core2+Extreme+X7800+%40+2.60GHz", "1558", "419", "", ""],
"Intel Core2 Extreme X7900":["Intel Core2 Extreme X7900 @ 2.80GHz","cpu_lookup.php?cpu=Intel+Core2+Extreme+X7900+%40+2.80GHz", "1733", "362", "", ""],
"Intel Core2 Extreme X9000":["Intel Core2 Extreme X9000 @ 2.80GHz","cpu_lookup.php?cpu=Intel+Core2+Extreme+X9000+%40+2.80GHz", "1894", "334", "", ""],
"Intel Core2 Extreme X9100":["Intel Core2 Extreme X9100 @ 3.06GHz","cpu_lookup.php?cpu=Intel+Core2+Extreme+X9100+%40+3.06GHz", "2301", "267", "2.70", "$851.00**"],
"Intel Core2 Extreme X9650":["Intel Core2 Extreme X9650 @ 3.00GHz","cpu_lookup.php?cpu=Intel+Core2+Extreme+X9650+%40+3.00GHz", "4622", "85", "4.63", "$999.00**"],
"Intel Core2 Extreme X9750":["Intel Core2 Extreme X9750 @ 3.16GHz","cpu_lookup.php?cpu=Intel+Core2+Extreme+X9750+%40+3.16GHz", "5090", "70", "", ""],
"Intel Core2 Extreme X9770":["Intel Core2 Extreme X9770 @ 3.20GHz","cpu_lookup.php?cpu=Intel+Core2+Extreme+X9770+%40+3.20GHz", "5027", "74", "3.59", "$1,400.00**"],
"Intel Core2 Extreme X9775":["Intel Core2 Extreme X9775 @ 3.20GHz","cpu_lookup.php?cpu=Intel+Core2+Extreme+X9775+%40+3.20GHz", "3810", "129", "2.46", "$1,550.00*"],
"Intel Core2 L7400":["Intel Core2 L7400 @ 1.50GHz","cpu_lookup.php?cpu=Intel+Core2+L7400+%40+1.50GHz", "868", "661", "", ""],
"Intel Core2 Quad Q6600":["Intel Core2 Quad Q6600 @ 2.40GHz","cpu_lookup.php?cpu=Intel+Core2+Quad+Q6600+%40+2.40GHz", "2981", "200", "7.47", "$398.95*"],
"Intel Core2 Quad Q6700":["Intel Core2 Quad Q6700 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Core2+Quad+Q6700+%40+2.66GHz", "3385", "167", "4.24", "$798.95**"],
"Intel Core2 Quad Q8200":["Intel Core2 Quad Q8200 @ 2.33GHz","cpu_lookup.php?cpu=Intel+Core2+Quad+Q8200+%40+2.33GHz", "3268", "177", "20.74", "$157.59*"],
"Intel Core2 Quad Q8300":["Intel Core2 Quad Q8300 @ 2.50GHz","cpu_lookup.php?cpu=Intel+Core2+Quad+Q8300+%40+2.50GHz", "3552", "152", "23.68", "$149.99*"],
"Intel Core2 Quad Q8400":["Intel Core2 Quad Q8400 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Core2+Quad+Q8400+%40+2.66GHz", "3679", "138", "21.64", "$169.99*"],
"Intel Core2 Quad Q9000":["Intel Core2 Quad Q9000 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Core2+Quad+Q9000+%40+2.00GHz", "3014", "198", "7.72", "$390.35*"],
"Intel Core2 Quad Q9100":["Intel Core2 Quad Q9100 @ 2.26GHz","cpu_lookup.php?cpu=Intel+Core2+Quad+Q9100+%40+2.26GHz", "3466", "160", "8.98", "$385.89**"],
"Intel Core2 Quad Q9300":["Intel Core2 Quad Q9300 @ 2.50GHz","cpu_lookup.php?cpu=Intel+Core2+Quad+Q9300+%40+2.50GHz", "3582", "149", "15.78", "$226.99*"],
"Intel Core2 Quad Q9400":["Intel Core2 Quad Q9400 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Core2+Quad+Q9400+%40+2.66GHz", "3817", "128", "17.91", "$213.14*"],
"Intel Core2 Quad Q9450":["Intel Core2 Quad Q9450 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Core2+Quad+Q9450+%40+2.66GHz", "4032", "114", "10.11", "$398.95**"],
"Intel Core2 Quad Q9500":["Intel Core2 Quad Q9500 @ 2.83GHz","cpu_lookup.php?cpu=Intel+Core2+Quad+Q9500+%40+2.83GHz", "4032", "115", "22.03", "$183.00**"],
"Intel Core2 Quad Q9505":["Intel Core2 Quad Q9505 @ 2.83GHz","cpu_lookup.php?cpu=Intel+Core2+Quad+Q9505+%40+2.83GHz", "4081", "111", "17.00", "$239.99*"],
"Intel Core2 Quad Q9550":["Intel Core2 Quad Q9550 @ 2.83GHz","cpu_lookup.php?cpu=Intel+Core2+Quad+Q9550+%40+2.83GHz", "4374", "97", "15.24", "$286.99*"],
"Intel Core2 Quad Q9650":["Intel Core2 Quad Q9650 @ 3.00GHz","cpu_lookup.php?cpu=Intel+Core2+Quad+Q9650+%40+3.00GHz", "4621", "86", "13.59", "$339.99*"],
"Intel Core2 Solo U2100 @ 1.06GHz":["Intel Core2 Solo U2100 @ 1.06GHz","cpu_lookup.php?cpu=Intel+Core2+Solo+U2100+%40+1.06GHz", "320", "979", "", ""],
"Intel Core2 Solo U2200 @ 1.20GHz":["Intel Core2 Solo U2200 @ 1.20GHz","cpu_lookup.php?cpu=Intel+Core2+Solo+U2200+%40+1.20GHz", "311", "994", "", ""],
"Intel Core2 Solo U3500 @ 1.40GHz":["Intel Core2 Solo U3500 @ 1.40GHz","cpu_lookup.php?cpu=Intel+Core2+Solo+U3500+%40+1.40GHz", "503", "804", "", ""],
"Intel Core2 T6600":["Intel Core2 T6600 @ 2.20GHz","cpu_lookup.php?cpu=Intel+Core2+T6600+%40+2.20GHz", "1385", "472", "", ""],
"Intel Core2 T9550":["Intel Core2 T9550 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Core2+T9550+%40+2.66GHz", "2235", "276", "", ""],
"Intel Core2 U7500":["Intel Core2 U7500 @ 1.06GHz","cpu_lookup.php?cpu=Intel+Core2+U7500+%40+1.06GHz", "566", "764", "", ""],
"Intel Core2 U7600":["Intel Core2 U7600 @ 1.20GHz","cpu_lookup.php?cpu=Intel+Core2+U7600+%40+1.20GHz", "670", "722", "", ""],
"Intel Core2 U7700":["Intel Core2 U7700 @ 1.33GHz","cpu_lookup.php?cpu=Intel+Core2+U7700+%40+1.33GHz", "700", "711", "", ""],
"Intel Core2 X6800":["Intel Core2 X6800 @ 2.93GHz","cpu_lookup.php?cpu=Intel+Core2+X6800+%40+2.93GHz", "1833", "344", "3.67", "$498.95**"],
"Intel Core2 Extreme X6800":["Intel Core2 X6800 @ 2.93GHz","cpu_lookup.php?cpu=Intel+Core2+X6800+%40+2.93GHz", "1833", "344", "3.67", "$498.95**"],
"Intel L2300":["Intel L2300 @ 1.50GHz","cpu_lookup.php?cpu=Intel+L2300+%40+1.50GHz", "724", "707", "", ""],
"Intel L2400":["Intel L2400 @ 1.66GHz","cpu_lookup.php?cpu=Intel+L2400+%40+1.66GHz", "783", "691", "", ""],
"Intel Pentium 4 @ 1.40GHz":["Intel Pentium 4 @ 1.40GHz","cpu_lookup.php?cpu=Intel+Pentium+4+1.40GHz", "165", "1115", "", ""],
"Intel Pentium 4 @ 1.50GHz":["Intel Pentium 4 @ 1.50GHz","cpu_lookup.php?cpu=Intel+Pentium+4+1.50GHz", "171", "1112", "", ""],
"Intel Pentium 4 @ 1.60GHz":["Intel Pentium 4 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Pentium+4+1.60GHz", "190", "1105", "", ""],
"Intel Pentium 4 @ 1.70GHz":["Intel Pentium 4 @ 1.70GHz","cpu_lookup.php?cpu=Intel+Pentium+4+1.70GHz", "202", "1098", "", ""],
"Intel Pentium 4 @ 1.80GHz":["Intel Pentium 4 @ 1.80GHz","cpu_lookup.php?cpu=Intel+Pentium+4+1.80GHz", "216", "1087", "", ""],
"Intel Pentium 4 @ 1.90GHz":["Intel Pentium 4 @ 1.90GHz","cpu_lookup.php?cpu=Intel+Pentium+4+1.90GHz", "229", "1077", "", ""],
"Intel Pentium 4 @ 1300MHz":["Intel Pentium 4 1300MHz","cpu_lookup.php?cpu=Intel+Pentium+4+1300MHz", "164", "1117", "", ""],
"Intel Pentium 4 @ 1400MHz":["Intel Pentium 4 1400MHz","cpu_lookup.php?cpu=Intel+Pentium+4+1400MHz", "166", "1114", "", ""],
"Intel Pentium 4 @ 1500MHz":["Intel Pentium 4 1500MHz","cpu_lookup.php?cpu=Intel+Pentium+4+1500MHz", "175", "1111", "", ""],
"Intel Pentium 4 @ 1600MHz":["Intel Pentium 4 1600MHz","cpu_lookup.php?cpu=Intel+Pentium+4+1600MHz", "195", "1103", "", ""],
"Intel Pentium 4 @ 1700MHz":["Intel Pentium 4 1700MHz","cpu_lookup.php?cpu=Intel+Pentium+4+1700MHz", "203", "1097", "", ""],
"Intel Pentium 4 @ 1800MHz":["Intel Pentium 4 1800MHz","cpu_lookup.php?cpu=Intel+Pentium+4+1800MHz", "212", "1090", "", ""],
"Intel Pentium 4 @ 2.00GHz":["Intel Pentium 4 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Pentium+4+2.00GHz", "247", "1063", "", ""],
"Intel Pentium 4 @ 2.20GHz":["Intel Pentium 4 @ 2.20GHz","cpu_lookup.php?cpu=Intel+Pentium+4+2.20GHz", "279", "1030", "", ""],
"Intel Pentium 4 @ 2.26GHz":["Intel Pentium 4 @ 2.26GHz","cpu_lookup.php?cpu=Intel+Pentium+4+2.26GHz", "281", "1026", "", ""],
"Intel Pentium 4 @ 2.40GHz":["Intel Pentium 4 @ 2.40GHz","cpu_lookup.php?cpu=Intel+Pentium+4+2.40GHz", "314", "988", "", ""],
"Intel Pentium 4 @ 2.50GHz":["Intel Pentium 4 @ 2.50GHz","cpu_lookup.php?cpu=Intel+Pentium+4+2.50GHz", "304", "1002", "", ""],
"Intel Pentium 4 @ 2.53GHz":["Intel Pentium 4 @ 2.53GHz","cpu_lookup.php?cpu=Intel+Pentium+4+2.53GHz", "314", "991", "", ""],
"Intel Pentium 4 @ 2.60GHz":["Intel Pentium 4 @ 2.60GHz","cpu_lookup.php?cpu=Intel+Pentium+4+2.60GHz", "408", "887", "", ""],
"Intel Pentium 4 @ 2.66GHz":["Intel Pentium 4 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Pentium+4+2.66GHz", "336", "961", "", ""],
"Intel Pentium 4 @ 2.80GHz":["Intel Pentium 4 @ 2.80GHz","cpu_lookup.php?cpu=Intel+Pentium+4+2.80GHz", "415", "880", "", ""],
"Intel Pentium 4 @ 2.93GHz":["Intel Pentium 4 @ 2.93GHz","cpu_lookup.php?cpu=Intel+Pentium+4+2.93GHz", "404", "897", "", ""],
"Intel Pentium 4 @ 3.00GHz":["Intel Pentium 4 @ 3.00GHz","cpu_lookup.php?cpu=Intel+Pentium+4+3.00GHz", "491", "810", "", ""],
"Intel Pentium 4 @ 3.06GHz":["Intel Pentium 4 @ 3.06GHz","cpu_lookup.php?cpu=Intel+Pentium+4+3.06GHz", "472", "830", "", ""],
"Intel Pentium 4 @ 3.20GHz":["Intel Pentium 4 @ 3.20GHz","cpu_lookup.php?cpu=Intel+Pentium+4+3.20GHz", "524", "790", "", ""],
"Intel Pentium 4 @ 3.40GHz":["Intel Pentium 4 @ 3.40GHz","cpu_lookup.php?cpu=Intel+Pentium+4+3.40GHz", "548", "773", "", ""],
"Intel Pentium 4 @ 3.46GHz":["Intel Pentium 4 @ 3.46GHz","cpu_lookup.php?cpu=Intel+Pentium+4+3.46GHz", "610", "742", "", ""],
"Intel Pentium 4 @ 3.60GHz":["Intel Pentium 4 @ 3.60GHz","cpu_lookup.php?cpu=Intel+Pentium+4+3.60GHz", "586", "756", "", ""],
"Intel Pentium 4 @ 3.73GHz":["Intel Pentium 4 @ 3.73GHz","cpu_lookup.php?cpu=Intel+Pentium+4+3.73GHz", "696", "712", "", ""],
"Intel Pentium 4 @ 3.80GHz":["Intel Pentium 4 @ 3.80GHz","cpu_lookup.php?cpu=Intel+Pentium+4+3.80GHz", "642", "732", "", ""],
"Intel Pentium 4 M @ 1.40GHz":["Intel Pentium 4 Mobile @ 1.40GHz","cpu_lookup.php?cpu=Intel+Pentium+4+Mobile+1.40GHz", "148", "1119", "", ""],
"Intel Pentium 4 M @ 1.50GHz":["Intel Pentium 4 Mobile @ 1.50GHz","cpu_lookup.php?cpu=Intel+Pentium+4+Mobile+1.50GHz", "196", "1100", "", ""],
"Intel Pentium 4 M @ 1.60GHz":["Intel Pentium 4 Mobile @ 1.60GHz","cpu_lookup.php?cpu=Intel+Pentium+4+Mobile+1.60GHz", "204", "1096", "", ""],
"Intel Pentium 4 M @ 1.70GHz":["Intel Pentium 4 Mobile @ 1.70GHz","cpu_lookup.php?cpu=Intel+Pentium+4+Mobile+1.70GHz", "207", "1095", "", ""],
"Intel Pentium 4 M @ 1.80GHz":["Intel Pentium 4 Mobile @ 1.80GHz","cpu_lookup.php?cpu=Intel+Pentium+4+Mobile+1.80GHz", "218", "1085", "", ""],
"Intel Pentium 4 M @ 1.90GHz":["Intel Pentium 4 Mobile @ 1.90GHz","cpu_lookup.php?cpu=Intel+Pentium+4+Mobile+1.90GHz", "234", "1072", "", ""],
"Intel Pentium 4 M @ 2.00GHz":["Intel Pentium 4 Mobile @ 2.00GHz","cpu_lookup.php?cpu=Intel+Pentium+4+Mobile+2.00GHz", "249", "1060", "", ""],
"Intel Pentium D @ 2.66GHz":["Intel Pentium D @ 2.66GHz","cpu_lookup.php?cpu=Intel+Pentium+D+2.66GHz", "675", "719", "", ""],
"Intel Pentium D @ 2.80GHz":["Intel Pentium D @ 2.80GHz","cpu_lookup.php?cpu=Intel+Pentium+D+2.80GHz", "741", "705", "", ""],
"Intel Pentium D @ 3.00GHz":["Intel Pentium D @ 3.00GHz","cpu_lookup.php?cpu=Intel+Pentium+D+3.00GHz", "812", "679", "", ""],
"Intel Pentium D @ 3.20GHz":["Intel Pentium D @ 3.20GHz","cpu_lookup.php?cpu=Intel+Pentium+D+3.20GHz", "892", "650", "", ""],
"Intel Pentium D @ 3.40GHz":["Intel Pentium D @ 3.40GHz","cpu_lookup.php?cpu=Intel+Pentium+D+3.40GHz", "929", "633", "", ""],
"Intel Pentium D @ 3.46GHz":["Intel Pentium D @ 3.46GHz","cpu_lookup.php?cpu=Intel+Pentium+D+3.46GHz", "1273", "506", "", ""],
"Intel Pentium D @ 3.60GHz":["Intel Pentium D @ 3.60GHz","cpu_lookup.php?cpu=Intel+Pentium+D+3.60GHz", "995", "609", "", ""],
"Intel Pentium D @ 3.73GHz":["Intel Pentium D @ 3.73GHz","cpu_lookup.php?cpu=Intel+Pentium+D+3.73GHz", "1312", "489", "", ""],
"Intel Pentium Dual E2140":["Intel Pentium Dual E2140 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Pentium+Dual+E2140+%40+1.60GHz", "905", "645", "8.30", "$108.99**"],
"Intel Pentium Dual E2160":["Intel Pentium Dual E2160 @ 1.80GHz","cpu_lookup.php?cpu=Intel+Pentium+Dual+E2160+%40+1.80GHz", "1027", "597", "8.49", "$120.99**"],
"Intel Pentium Dual E2180":["Intel Pentium Dual E2180 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Pentium+Dual+E2180+%40+2.00GHz", "1129", "561", "6.27", "$179.95**"],
"Intel Pentium Dual E2200":["Intel Pentium Dual E2200 @ 2.20GHz","cpu_lookup.php?cpu=Intel+Pentium+Dual+E2200+%40+2.20GHz", "1249", "518", "13.58", "$91.99**"],
"Intel Pentium Dual E2220":["Intel Pentium Dual E2220 @ 2.40GHz","cpu_lookup.php?cpu=Intel+Pentium+Dual+E2220+%40+2.40GHz", "1387", "470", "15.24", "$90.99**"],
"Intel Pentium Dual T2310":["Intel Pentium Dual T2310 @ 1.46GHz","cpu_lookup.php?cpu=Intel+Pentium+Dual+T2310+%40+1.46GHz", "770", "694", "", ""],
"Intel Pentium Dual T2330":["Intel Pentium Dual T2330 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Pentium+Dual+T2330+%40+1.60GHz", "829", "674", "", ""],
"Intel Pentium Dual T2370":["Intel Pentium Dual T2370 @ 1.73GHz","cpu_lookup.php?cpu=Intel+Pentium+Dual+T2370+%40+1.73GHz", "895", "648", "", ""],
"Intel Pentium Dual T2390":["Intel Pentium Dual T2390 @ 1.86GHz","cpu_lookup.php?cpu=Intel+Pentium+Dual+T2390+%40+1.86GHz", "950", "627", "", ""],
"Intel Pentium Dual T2410":["Intel Pentium Dual T2410 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Pentium+Dual+T2410+%40+2.00GHz", "1030", "596", "", ""],
"Intel Pentium Dual T3200":["Intel Pentium Dual T3200 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Pentium+Dual+T3200+%40+2.00GHz", "1048", "591", "", ""],
"Intel Pentium Dual T3400":["Intel Pentium Dual T3400 @ 2.16GHz","cpu_lookup.php?cpu=Intel+Pentium+Dual+T3400+%40+2.16GHz", "1143", "554", "", ""],
"Intel Pentium E5500":["Intel Pentium E5500 @ 2.80GHz","cpu_lookup.php?cpu=Intel+Pentium+E5500+%40+2.80GHz", "1200", "531", "18.01", "$66.63*"],
"Intel Pentium E5700":["Intel Pentium E5700 @ 3.00GHz","cpu_lookup.php?cpu=Intel+Pentium+E5700+%40+3.00GHz", "1140", "555", "16.29", "$69.99*"],
"Intel Pentium E6600":["Intel Pentium E6600 @ 3.06GHz","cpu_lookup.php?cpu=Intel+Pentium+E6600+%40+3.06GHz", "1013", "601", "", ""],
"Intel Pentium E6700":["Intel Pentium E6700 @ 3.20GHz","cpu_lookup.php?cpu=Intel+Pentium+E6700+%40+3.20GHz", "2022", "306", "", ""],
"Intel Pentium G6950":["Intel Pentium G6950 @ 2.80GHz","cpu_lookup.php?cpu=Intel+Pentium+G6950+%40+2.80GHz", "2015", "307", "21.21", "$94.99*"],
"Intel Pentium G6960":["Intel Pentium G6960 @ 2.93GHz","cpu_lookup.php?cpu=Intel+Pentium+G6960+%40+2.93GHz", "2358", "260", "", ""],
"Intel Pentium III - S 1266MHz":["Intel Pentium III - S 1266MHz","cpu_lookup.php?cpu=Intel+Pentium+III+-+S+1266MHz", "303", "1004", "", ""],
"Intel Pentium III - S 1400MHz":["Intel Pentium III - S 1400MHz","cpu_lookup.php?cpu=Intel+Pentium+III+-+S+1400MHz", "351", "946", "", ""],
"Intel Pentium III 1200MHz":["Intel Pentium III 1200MHz","cpu_lookup.php?cpu=Intel+Pentium+III+1200MHz", "289", "1016", "", ""],
"Intel Pentium III family 1133MHz":["Intel Pentium III family 1133MHz","cpu_lookup.php?cpu=Intel+Pentium+III+family+1133MHz", "296", "1009", "", ""],
"Intel Pentium III family 1400MHz":["Intel Pentium III family 1400MHz","cpu_lookup.php?cpu=Intel+Pentium+III+family+1400MHz", "335", "963", "", ""],
"Intel Pentium III Mobile 1000MHz":["Intel Pentium III Mobile 1000MHz","cpu_lookup.php?cpu=Intel+Pentium+III+Mobile+1000MHz", "242", "1068", "", ""],
"Intel Pentium III Mobile 1066MHz":["Intel Pentium III Mobile 1066MHz","cpu_lookup.php?cpu=Intel+Pentium+III+Mobile+1066MHz", "265", "1045", "", ""],
"Intel Pentium III Mobile 1133MHz":["Intel Pentium III Mobile 1133MHz","cpu_lookup.php?cpu=Intel+Pentium+III+Mobile+1133MHz", "262", "1051", "", ""],
"Intel Pentium III Mobile 1200MHz":["Intel Pentium III Mobile 1200MHz","cpu_lookup.php?cpu=Intel+Pentium+III+Mobile+1200MHz", "278", "1033", "", ""],
"Intel Pentium III Mobile 750MHz":["Intel Pentium III Mobile 750MHz","cpu_lookup.php?cpu=Intel+Pentium+III+Mobile+750MHz", "103", "1120", "", ""],
"Intel Pentium III Mobile 866MHz":["Intel Pentium III Mobile 866MHz","cpu_lookup.php?cpu=Intel+Pentium+III+Mobile+866MHz", "214", "1088", "", ""],
"Intel Pentium III Mobile 933MHz":["Intel Pentium III Mobile 933MHz","cpu_lookup.php?cpu=Intel+Pentium+III+Mobile+933MHz", "221", "1082", "", ""],
"Intel Pentium M @ 1.10GHz":["Intel Pentium M @ 1.10GHz","cpu_lookup.php?cpu=Intel+Pentium+M+1.10GHz", "294", "1011", "", ""],
"Intel Pentium M @ 1.20GHz":["Intel Pentium M @ 1.20GHz","cpu_lookup.php?cpu=Intel+Pentium+M+1.20GHz", "319", "981", "", ""],
"Intel Pentium M @ 1.30GHz":["Intel Pentium M @ 1.30GHz","cpu_lookup.php?cpu=Intel+Pentium+M+1.30GHz", "326", "974", "", ""],
"Intel Pentium M @ 1.40GHz":["Intel Pentium M @ 1.40GHz","cpu_lookup.php?cpu=Intel+Pentium+M+1.40GHz", "364", "936", "", ""],
"Intel Pentium M @ 1.50GHz":["Intel Pentium M @ 1.50GHz","cpu_lookup.php?cpu=Intel+Pentium+M+1.50GHz", "393", "908", "", ""],
"Intel Pentium M @ 1.60GHz":["Intel Pentium M @ 1.60GHz","cpu_lookup.php?cpu=Intel+Pentium+M+1.60GHz", "407", "889", "", ""],
"Intel Pentium M @ 1.70GHz":["Intel Pentium M @ 1.70GHz","cpu_lookup.php?cpu=Intel+Pentium+M+1.70GHz", "436", "861", "", ""],
"Intel Pentium M @ 1.73GHz":["Intel Pentium M @ 1.73GHz","cpu_lookup.php?cpu=Intel+Pentium+M+1.73GHz", "447", "852", "", ""],
"Intel Pentium M @ 1.80GHz":["Intel Pentium M @ 1.80GHz","cpu_lookup.php?cpu=Intel+Pentium+M+1.80GHz", "462", "839", "", ""],
"Intel Pentium M @ 1.86GHz":["Intel Pentium M @ 1.86GHz","cpu_lookup.php?cpu=Intel+Pentium+M+1.86GHz", "478", "822", "", ""],
"Intel Pentium M @ 1000MHz":["Intel Pentium M 1000MHz","cpu_lookup.php?cpu=Intel+Pentium+M+1000MHz", "246", "1065", "", ""],
"Intel Pentium M @ 1100MHz":["Intel Pentium M 1100MHz","cpu_lookup.php?cpu=Intel+Pentium+M+1100MHz", "266", "1044", "", ""],
"Intel Pentium M @ 1200MHz":["Intel Pentium M 1200MHz","cpu_lookup.php?cpu=Intel+Pentium+M+1200MHz", "277", "1034", "", ""],
"Intel Pentium M @ 1300MHz":["Intel Pentium M 1300MHz","cpu_lookup.php?cpu=Intel+Pentium+M+1300MHz", "306", "1000", "", ""],
"Intel Pentium M @ 1400MHz":["Intel Pentium M 1400MHz","cpu_lookup.php?cpu=Intel+Pentium+M+1400MHz", "319", "980", "", ""],
"Intel Pentium M @ 1500MHz":["Intel Pentium M 1500MHz","cpu_lookup.php?cpu=Intel+Pentium+M+1500MHz", "349", "948", "", ""],
"Intel Pentium M @ 1600MHz":["Intel Pentium M 1600MHz","cpu_lookup.php?cpu=Intel+Pentium+M+1600MHz", "360", "941", "", ""],
"Intel Pentium M @ 1700MHz":["Intel Pentium M 1700MHz","cpu_lookup.php?cpu=Intel+Pentium+M+1700MHz", "383", "920", "", ""],
"Intel Pentium M @ 2.00GHz":["Intel Pentium M @ 2.00GHz","cpu_lookup.php?cpu=Intel+Pentium+M+2.00GHz", "503", "805", "", ""],
"Intel Pentium M @ 2.10GHz":["Intel Pentium M @ 2.10GHz","cpu_lookup.php?cpu=Intel+Pentium+M+2.10GHz", "536", "779", "", ""],
"Intel Pentium M @ 2.13GHz":["Intel Pentium M @ 2.13GHz","cpu_lookup.php?cpu=Intel+Pentium+M+2.13GHz", "532", "782", "", ""],
"Intel Pentium M @ 2.26GHz":["Intel Pentium M @ 2.26GHz","cpu_lookup.php?cpu=Intel+Pentium+M+2.26GHz", "588", "753", "", ""],
"Intel Pentium M @ 900MHz":["Intel Pentium M 900MHz","cpu_lookup.php?cpu=Intel+Pentium+M+900MHz", "226", "1080", "", ""],
"Intel Pentium P6000 @ 1.87GHz":["Intel Pentium P6000 @ 1.87GHz","cpu_lookup.php?cpu=Intel+Pentium+P6000+%40+1.87GHz", "1409", "462", "", ""],
"Intel Pentium P6100 @ 2.00GHz":["Intel Pentium P6100 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Pentium+P6100+%40+2.00GHz", "1528", "430", "", ""],
"Intel Pentium P6200 @ 2.13GHz":["Intel Pentium P6200 @ 2.13GHz","cpu_lookup.php?cpu=Intel+Pentium+P6200+%40+2.13GHz", "1661", "385", "", ""],
"Intel Pentium U5400 @ 1.20GHz":["Intel Pentium U5400 @ 1.20GHz","cpu_lookup.php?cpu=Intel+Pentium+U5400+%40+1.20GHz", "926", "634", "", ""],
"Intel Pentium U5600 @ 1.33GHz":["Intel Pentium U5600 @ 1.33GHz","cpu_lookup.php?cpu=Intel+Pentium+U5600+%40+1.33GHz", "1164", "544", "", ""],
"Intel SU1300":["Intel SU1300 @ 1.06GHz","cpu_lookup.php?cpu=Intel+SU1300+%40+1.06GHz", "245", "1066", "", ""],
"Intel SU2300":["Intel SU2300 @ 1.20GHz","cpu_lookup.php?cpu=Intel+SU2300+%40+1.20GHz", "909", "641", "", ""],
"Intel SU2500":["Intel SU2500 @ 1.20GHz","cpu_lookup.php?cpu=Intel+SU2500+%40+1.20GHz", "587", "754", "", ""],
"Intel SU2700":["Intel SU2700 @ 1.30GHz","cpu_lookup.php?cpu=Intel+SU2700+%40+1.30GHz", "442", "856", "", ""],
"Intel SU4100":["Intel SU4100 @ 1.30GHz","cpu_lookup.php?cpu=Intel+SU4100+%40+1.30GHz", "982", "614", "", ""],
"Intel SU7300":["Intel SU7300 @ 1.30GHz","cpu_lookup.php?cpu=Intel+SU7300+%40+1.30GHz", "977", "617", "", ""],
"Intel T1300":["Intel T1300 @ 1.66GHz","cpu_lookup.php?cpu=Intel+T1300+%40+1.66GHz", "408", "888", "", ""],
"Intel T1350":["Intel T1350 @ 1.86GHz","cpu_lookup.php?cpu=Intel+T1350+%40+1.86GHz", "462", "840", "", ""],
"Intel T1400":["Intel T1400 @ 1.73GHz","cpu_lookup.php?cpu=Intel+T1400+%40+1.73GHz", "910", "640", "", ""],
"Intel T1400":["Intel T1400 @ 1.83GHz","cpu_lookup.php?cpu=Intel+T1400+%40+1.83GHz", "519", "791", "", ""],
"Intel T1500":["Intel T1500 @ 1.86GHz","cpu_lookup.php?cpu=Intel+T1500+%40+1.86GHz", "989", "611", "", ""],
"Intel T1600":["Intel T1600 @ 1.66GHz","cpu_lookup.php?cpu=Intel+T1600+%40+1.66GHz", "924", "635", "", ""],
"Intel T1700":["Intel T1700 @ 1.83GHz","cpu_lookup.php?cpu=Intel+T1700+%40+1.83GHz", "1059", "587", "", ""],
"Intel T2050":["Intel T2050 @ 1.60GHz","cpu_lookup.php?cpu=Intel+T2050+%40+1.60GHz", "759", "700", "", ""],
"Intel T2060":["Intel T2060 @ 1.60GHz","cpu_lookup.php?cpu=Intel+T2060+%40+1.60GHz", "717", "708", "", ""],
"Intel T2080":["Intel T2080 @ 1.73GHz","cpu_lookup.php?cpu=Intel+T2080+%40+1.73GHz", "759", "699", "", ""],
"Intel T2130":["Intel T2130 @ 1.86GHz","cpu_lookup.php?cpu=Intel+T2130+%40+1.86GHz", "814", "677", "", ""],
"Intel T2250":["Intel T2250 @ 1.73GHz","cpu_lookup.php?cpu=Intel+T2250+%40+1.73GHz", "791", "686", "", ""],
"Intel T2300":["Intel T2300 @ 1.66GHz","cpu_lookup.php?cpu=Intel+T2300+%40+1.66GHz", "804", "681", "", ""],
"Intel T2400":["Intel T2400 @ 1.83GHz","cpu_lookup.php?cpu=Intel+T2400+%40+1.83GHz", "883", "655", "31.54", "$28.00**"],
"Intel T2500":["Intel T2500 @ 2.00GHz","cpu_lookup.php?cpu=Intel+T2500+%40+2.00GHz", "937", "631", "", ""],
"Intel T2600":["Intel T2600 @ 2.16GHz","cpu_lookup.php?cpu=Intel+T2600+%40+2.16GHz", "1006", "605", "", ""],
"Intel U1400":["Intel U1400 @ 1.20GHz","cpu_lookup.php?cpu=Intel+U1400+%40+1.20GHz", "314", "989", "", ""],
"Intel U2400":["Intel U2400 @ 1.06GHz","cpu_lookup.php?cpu=Intel+U2400+%40+1.06GHz", "550", "771", "", ""],
"Intel Xeon @ 2.00GHz":["Intel Xeon @ 2.00GHz","cpu_lookup.php?cpu=Intel+Xeon+2.00GHz", "272", "1041", "", ""],
"Intel Xeon @ 2.40GHz":["Intel Xeon @ 2.40GHz","cpu_lookup.php?cpu=Intel+Xeon+2.40GHz", "380", "923", "41.99", "$9.05**"],
"Intel Xeon @ 2.66GHz":["Intel Xeon @ 2.66GHz","cpu_lookup.php?cpu=Intel+Xeon+2.66GHz", "417", "878", "", ""],
"Intel Xeon @ 2.80GHz":["Intel Xeon @ 2.80GHz","cpu_lookup.php?cpu=Intel+Xeon+2.80GHz", "510", "800", "", ""],
"Intel Xeon @ 3.00GHz":["Intel Xeon @ 3.00GHz","cpu_lookup.php?cpu=Intel+Xeon+3.00GHz", "653", "729", "", ""],
"Intel Xeon @ 3.06GHz":["Intel Xeon @ 3.06GHz","cpu_lookup.php?cpu=Intel+Xeon+3.06GHz", "490", "814", "", ""],
"Intel Xeon @ 3.20GHz":["Intel Xeon @ 3.20GHz","cpu_lookup.php?cpu=Intel+Xeon+3.20GHz", "797", "682", "", ""],
"Intel Xeon @ 3.40GHz":["Intel Xeon @ 3.40GHz","cpu_lookup.php?cpu=Intel+Xeon+3.40GHz", "562", "766", "", ""],
"Intel Xeon @ 3.60GHz":["Intel Xeon @ 3.60GHz","cpu_lookup.php?cpu=Intel+Xeon+3.60GHz", "589", "752", "", ""],
"Intel Xeon @ 3.73GHz":["Intel Xeon @ 3.73GHz","cpu_lookup.php?cpu=Intel+Xeon+3.73GHz", "1335", "484", "", ""],
"Intel Xeon @ 3.80GHz":["Intel Xeon @ 3.80GHz","cpu_lookup.php?cpu=Intel+Xeon+3.80GHz", "764", "696", "", ""],
"Intel Xeon 3040":["Intel Xeon 3040 @ 1.86GHz","cpu_lookup.php?cpu=Intel+Xeon+3040+%40+1.86GHz", "1137", "557", "8.12", "$140.00*"],
"Intel Xeon 3050":["Intel Xeon 3050 @ 2.13GHz","cpu_lookup.php?cpu=Intel+Xeon+3050+%40+2.13GHz", "1278", "500", "3.65", "$349.95**"],
"Intel Xeon 3060":["Intel Xeon 3060 @ 2.40GHz","cpu_lookup.php?cpu=Intel+Xeon+3060+%40+2.40GHz", "1430", "455", "4.78", "$298.95**"],
"Intel Xeon 3065":["Intel Xeon 3065 @ 2.33GHz","cpu_lookup.php?cpu=Intel+Xeon+3065+%40+2.33GHz", "1658", "387", "", ""],
"Intel Xeon 3070":["Intel Xeon 3070 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Xeon+3070+%40+2.66GHz", "1705", "371", "2.85", "$598.95**"],
"Intel Xeon 5110":["Intel Xeon 5110 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Xeon+5110+%40+1.60GHz", "955", "625", "6.41", "$149.00**"],
"Intel Xeon 5120":["Intel Xeon 5120 @ 1.86GHz","cpu_lookup.php?cpu=Intel+Xeon+5120+%40+1.86GHz", "1206", "528", "4.55", "$265.00**"],
"Intel Xeon 5130":["Intel Xeon 5130 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Xeon+5130+%40+2.00GHz", "1287", "497", "3.58", "$359.99**"],
"Intel Xeon 5140":["Intel Xeon 5140 @ 2.33GHz","cpu_lookup.php?cpu=Intel+Xeon+5140+%40+2.33GHz", "1518", "432", "", ""],
"Intel Xeon 5148":["Intel Xeon 5148 @ 2.33GHz","cpu_lookup.php?cpu=Intel+Xeon+5148+%40+2.33GHz", "1642", "394", "3.26", "$504.00**"],
"Intel Xeon 5150":["Intel Xeon 5150 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Xeon+5150+%40+2.66GHz", "1704", "372", "2.21", "$770.10**"],
"Intel Xeon 5160":["Intel Xeon 5160 @ 3.00GHz","cpu_lookup.php?cpu=Intel+Xeon+5160+%40+3.00GHz", "1979", "311", "", ""],
"Intel Xeon E3110":["Intel Xeon E3110 @ 3.00GHz","cpu_lookup.php?cpu=Intel+Xeon+E3110+%40+3.00GHz", "2361", "258", "12.97", "$181.99*"],
"Intel Xeon E31225":["Intel Xeon E31225 @ 3.10GHz","cpu_lookup.php?cpu=Intel+Xeon+E31225+%40+3.10GHz", "5791", "50", "", ""],
"Intel Xeon E31230":["Intel Xeon E31230 @ 3.20GHz","cpu_lookup.php?cpu=Intel+Xeon+E31230+%40+3.20GHz", "6967", "23", "", ""],
"Intel Xeon E5310":["Intel Xeon E5310 @ 1.60GHz","cpu_lookup.php?cpu=Intel+Xeon+E5310+%40+1.60GHz", "2055", "301", "12.23", "$168.00**"],
"Intel Xeon E5320":["Intel Xeon E5320 @ 1.86GHz","cpu_lookup.php?cpu=Intel+Xeon+E5320+%40+1.86GHz", "2279", "269", "8.90", "$256.00*"],
"Intel Xeon E5335":["Intel Xeon E5335 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Xeon+E5335+%40+2.00GHz", "2567", "239", "10.48", "$245.00*"],
"Intel Xeon E5345":["Intel Xeon E5345 @ 2.33GHz","cpu_lookup.php?cpu=Intel+Xeon+E5345+%40+2.33GHz", "2910", "206", "3.64", "$798.95**"],
"Intel Xeon E5405":["Intel Xeon E5405 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Xeon+E5405+%40+2.00GHz", "2912", "204", "8.32", "$349.95*"],
"Intel Xeon E5410":["Intel Xeon E5410 @ 2.33GHz","cpu_lookup.php?cpu=Intel+Xeon+E5410+%40+2.33GHz", "3431", "164", "8.17", "$419.95*"],
"Intel Xeon E5420":["Intel Xeon E5420 @ 2.50GHz","cpu_lookup.php?cpu=Intel+Xeon+E5420+%40+2.50GHz", "3686", "136", "7.09", "$519.95*"],
"Intel Xeon E5430":["Intel Xeon E5430 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Xeon+E5430+%40+2.66GHz", "3976", "117", "8.66", "$459.00*"],
"Intel Xeon E5440":["Intel Xeon E5440 @ 2.83GHz","cpu_lookup.php?cpu=Intel+Xeon+E5440+%40+2.83GHz", "4420", "94", "5.53", "$798.95*"],
"Intel Xeon E5450":["Intel Xeon E5450 @ 3.00GHz","cpu_lookup.php?cpu=Intel+Xeon+E5450+%40+3.00GHz", "4201", "107", "3.97", "$1,058.95*"],
"Intel Xeon E5462":["Intel Xeon E5462 @ 2.80GHz","cpu_lookup.php?cpu=Intel+Xeon+E5462+%40+2.80GHz", "4215", "106", "16.47", "$255.99*"],
"Intel Xeon E5502":["Intel Xeon E5502 @ 1.87GHz","cpu_lookup.php?cpu=Intel+Xeon+E5502+%40+1.87GHz", "1491", "441", "7.19", "$207.35*"],
"Intel Xeon E5503":["Intel Xeon E5503 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Xeon+E5503+%40+2.00GHz", "1685", "381", "8.08", "$208.64**"],
"Intel Xeon E5504":["Intel Xeon E5504 @ 2.00GHz","cpu_lookup.php?cpu=Intel+Xeon+E5504+%40+2.00GHz", "3069", "191", "12.79", "$239.99*"],
"Intel Xeon E5506":["Intel Xeon E5506 @ 2.13GHz","cpu_lookup.php?cpu=Intel+Xeon+E5506+%40+2.13GHz", "3385", "166", "14.72", "$229.99*"],
"Intel Xeon E5507":["Intel Xeon E5507 @ 2.27GHz","cpu_lookup.php?cpu=Intel+Xeon+E5507+%40+2.27GHz", "3624", "143", "12.72", "$284.99**"],
"Intel Xeon E5520":["Intel Xeon E5520 @ 2.27GHz","cpu_lookup.php?cpu=Intel+Xeon+E5520+%40+2.27GHz", "4375", "96", "10.94", "$399.99*"],
"Intel Xeon E5530":["Intel Xeon E5530 @ 2.40GHz","cpu_lookup.php?cpu=Intel+Xeon+E5530+%40+2.40GHz", "4669", "83", "8.34", "$559.99*"],
"Intel Xeon E5540":["Intel Xeon E5540 @ 2.53GHz","cpu_lookup.php?cpu=Intel+Xeon+E5540+%40+2.53GHz", "4298", "100", "5.44", "$789.99*"],
"Intel Xeon E5607":["Intel Xeon E5607 @ 2.27GHz","cpu_lookup.php?cpu=Intel+Xeon+E5607+%40+2.27GHz", "3902", "120", "", ""],
"Intel Xeon E5620":["Intel Xeon E5620 @ 2.40GHz","cpu_lookup.php?cpu=Intel+Xeon+E5620+%40+2.40GHz", "4626", "84", "11.86", "$389.99**"],
"Intel Xeon E5630":["Intel Xeon E5630 @ 2.53GHz","cpu_lookup.php?cpu=Intel+Xeon+E5630+%40+2.53GHz", "4901", "79", "8.84", "$554.25*"],
"Intel Xeon E5640":["Intel Xeon E5640 @ 2.67GHz","cpu_lookup.php?cpu=Intel+Xeon+E5640+%40+2.67GHz", "5053", "72", "6.40", "$789.99*"],
"Intel Xeon E5645":["Intel Xeon E5645 @ 2.40GHz","cpu_lookup.php?cpu=Intel+Xeon+E5645+%40+2.40GHz", "7116", "21", "", ""],
"Intel Xeon L3426":["Intel Xeon L3426 @ 1.87GHz","cpu_lookup.php?cpu=Intel+Xeon+L3426+%40+1.87GHz", "4716", "80", "14.49", "$325.57**"],
"Intel Xeon L5240":["Intel Xeon L5240 @ 3.00GHz","cpu_lookup.php?cpu=Intel+Xeon+L5240+%40+3.00GHz", "2328", "263", "", ""],
"Intel Xeon L5520":["Intel Xeon L5520 @ 2.27GHz","cpu_lookup.php?cpu=Intel+Xeon+L5520+%40+2.27GHz", "4513", "90", "5.53", "$816.08**"],
"Intel Xeon L5640":["Intel Xeon L5640 @ 2.27GHz","cpu_lookup.php?cpu=Intel+Xeon+L5640+%40+2.27GHz", "5736", "51", "5.74", "$999.99*"],
"Intel Xeon W570":["Intel Xeon W570 @ 3.20GHz","cpu_lookup.php?cpu=Intel+Xeon+W+570+%40+3.20GHz", "6402", "35", "", ""],
"Intel Xeon W3503":["Intel Xeon W3503 @ 2.40GHz","cpu_lookup.php?cpu=Intel+Xeon+W3503+%40+2.40GHz", "1837", "342", "", ""],
"Intel Xeon W3505":["Intel Xeon W3505 @ 2.53GHz","cpu_lookup.php?cpu=Intel+Xeon+W3505+%40+2.53GHz", "2071", "297", "", ""],
"Intel Xeon W3520":["Intel Xeon W3520 @ 2.67GHz","cpu_lookup.php?cpu=Intel+Xeon+W3520+%40+2.67GHz", "4906", "78", "15.83", "$309.99*"],
"Intel Xeon W3530":["Intel Xeon W3530 @ 2.80GHz","cpu_lookup.php?cpu=Intel+Xeon+W3530+%40+2.80GHz", "5031", "73", "15.13", "$332.49*"],
"Intel Xeon W3540":["Intel Xeon W3540 @ 2.93GHz","cpu_lookup.php?cpu=Intel+Xeon+W3540+%40+2.93GHz", "5377", "60", "7.69", "$698.95*"],
"Intel Xeon W3550":["Intel Xeon W3550 @ 3.07GHz","cpu_lookup.php?cpu=Intel+Xeon+W3550+%40+3.07GHz", "5567", "52", "17.67", "$314.99**"],
"Intel Xeon W3565":["Intel Xeon W3565 @ 3.20GHz","cpu_lookup.php?cpu=Intel+Xeon+W3565+%40+3.20GHz", "6024", "47", "9.43", "$639.14**"],
"Intel Xeon W3570":["Intel Xeon W3570 @ 3.20GHz","cpu_lookup.php?cpu=Intel+Xeon+W3570+%40+3.20GHz", "6783", "27", "6.22", "$1,089.99**"],
"Intel Xeon W3580":["Intel Xeon W3580 @ 3.33GHz","cpu_lookup.php?cpu=Intel+Xeon+W3580+%40+3.33GHz", "6685", "31", "6.17", "$1,083.47**"],
"Intel Xeon W3670":["Intel Xeon W3670 @ 3.20GHz","cpu_lookup.php?cpu=Intel+Xeon+W3670+%40+3.20GHz", "10122", "5", "", ""],
"Intel Xeon W3680":["Intel Xeon W3680 @ 3.33GHz","cpu_lookup.php?cpu=Intel+Xeon+W3680+%40+3.33GHz", "9940", "9", "9.38", "$1,059.99*"],
"Intel Xeon W3690":["Intel Xeon W3690 @ 3.47GHz","cpu_lookup.php?cpu=Intel+Xeon+W3690+%40+3.47GHz", "11918", "1", "10.53", "$1,131.97**"],
"Intel Xeon W5580":["Intel Xeon W5580 @ 3.20GHz","cpu_lookup.php?cpu=Intel+Xeon+W5580+%40+3.20GHz", "6362", "37", "3.83", "$1,659.99*"],
"Intel Xeon W5590":["Intel Xeon W5590 @ 3.33GHz","cpu_lookup.php?cpu=Intel+Xeon+W5590+%40+3.33GHz", "6881", "24", "4.10", "$1,679.99*"],
"Intel Xeon X3210":["Intel Xeon X3210 @ 2.13GHz","cpu_lookup.php?cpu=Intel+Xeon+X3210+%40+2.13GHz", "2667", "227", "12.41", "$214.99**"],
"Intel Xeon X3220":["Intel Xeon X3220 @ 2.40GHz","cpu_lookup.php?cpu=Intel+Xeon+X3220+%40+2.40GHz", "3065", "192", "13.86", "$221.12*"],
"Intel Xeon X3230":["Intel Xeon X3230 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Xeon+X3230+%40+2.66GHz", "3777", "131", "12.16", "$310.51**"],
"Intel Xeon X3320":["Intel Xeon X3320 @ 2.50GHz","cpu_lookup.php?cpu=Intel+Xeon+X3320+%40+2.50GHz", "3601", "145", "12.05", "$298.95*"],
"Intel Xeon X3330":["Intel Xeon X3330 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Xeon+X3330+%40+2.66GHz", "3674", "139", "17.50", "$209.99*"],
"Intel Xeon X3350":["Intel Xeon X3350 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Xeon+X3350+%40+2.66GHz", "4250", "104", "13.45", "$316.00**"],
"Intel Xeon X3360":["Intel Xeon X3360 @ 2.83GHz","cpu_lookup.php?cpu=Intel+Xeon+X3360+%40+2.83GHz", "4184", "108", "14.28", "$292.99*"],
"Intel Xeon X3370":["Intel Xeon X3370 @ 3.00GHz","cpu_lookup.php?cpu=Intel+Xeon+X3370+%40+3.00GHz", "5289", "62", "14.47", "$365.50**"],
"Intel Xeon X3430":["Intel Xeon X3430 @ 2.40GHz","cpu_lookup.php?cpu=Intel+Xeon+X3430+%40+2.40GHz", "3893", "122", "18.54", "$209.99*"],
"Intel Xeon X3440":["Intel Xeon X3440 @ 2.53GHz","cpu_lookup.php?cpu=Intel+Xeon+X3440+%40+2.53GHz", "5341", "61", "22.26", "$239.99*"],
"Intel Xeon X3450":["Intel Xeon X3450 @ 2.67GHz","cpu_lookup.php?cpu=Intel+Xeon+X3450+%40+2.67GHz", "5384", "59", "19.94", "$269.99*"],
"Intel Xeon X3460":["Intel Xeon X3460 @ 2.80GHz","cpu_lookup.php?cpu=Intel+Xeon+X3460+%40+2.80GHz", "6032", "46", "17.23", "$349.99**"],
"Intel Xeon X3470":["Intel Xeon X3470 @ 2.93GHz","cpu_lookup.php?cpu=Intel+Xeon+X3470+%40+2.93GHz", "6079", "44", "17.62", "$344.99**"],
"Intel Xeon X5260":["Intel Xeon X5260 @ 3.33GHz","cpu_lookup.php?cpu=Intel+Xeon+X5260+%40+3.33GHz", "2689", "225", "3.16", "$851.00**"],
"Intel Xeon X5272":["Intel Xeon X5272 @ 3.40GHz","cpu_lookup.php?cpu=Intel+Xeon+X5272+%40+3.40GHz", "3149", "186", "7.32", "$429.95**"],
"Intel Xeon X5355":["Intel Xeon X5355 @ 2.66GHz","cpu_lookup.php?cpu=Intel+Xeon+X5355+%40+2.66GHz", "3477", "158", "7.10", "$490.00**"],
"Intel Xeon X5365":["Intel Xeon X5365 @ 3.00GHz","cpu_lookup.php?cpu=Intel+Xeon+X5365+%40+3.00GHz", "4029", "116", "3.11", "$1,293.95*"],
"Intel Xeon X5450":["Intel Xeon X5450 @ 3.00GHz","cpu_lookup.php?cpu=Intel+Xeon+X5450+%40+3.00GHz", "4613", "87", "4.57", "$1,009.95*"],
"Intel Xeon X5460":["Intel Xeon X5460 @ 3.16GHz","cpu_lookup.php?cpu=Intel+Xeon+X5460+%40+3.16GHz", "5020", "75", "5.02", "$999.99**"],