-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
1424 lines (1321 loc) · 180 KB
/
test.html
File metadata and controls
1424 lines (1321 loc) · 180 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html lang="en"><head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# product: http://ogp.me/ns/product#">
<script type="text/javascript" async="" id="ccs_cc_log_1" src="https://ws.cs.1worldsync.com/log?Dom=1ws&Et=ProductHookLoad&PId=6fc9c3dfb36bd5d0011515baa096a066&ClWait=10263&_LogId=1&SKey=95bf34fb&LCID=2057&Market=GB&Locale=EN-GBR&ZoneId=aea198075d&ZoneVer=57&MfgPn=100000001480&MasterId=1066501cac83b15b&SMfgName=AMD&SMfgPn=100-000001480&MfgId=102&ServerTime=60&ResultCode=12&Host=https%3A//www.technoworld.com/amd-epyc-4244p-processor-3-8-ghz-32-mb-l3-100-000001480"></script><script type="text/javascript" async="" src="https://www.googletagmanager.com/gtag/destination?id=AW-947013454&cx=c&gtm=45je58c0v885203262za200zb71178557&tag_exp=101509157~103116026~103200004~103233427~104684208~104684211~105033763~105033765~105103161~105103163~105231383~105231385"></script><script type="text/javascript" async="" src="https://ws.cs.1worldsync.com/95bf34fb/script/aea198075d?mf=AMD&pn=100-000001480&lang=en-gb&market=UK&host=www.technoworld.com&nld=1"></script><script type="text/javascript" async="" src="https://bat.bing.com/bat.js"></script><script type="text/javascript" async="" src="https://www.googletagmanager.com/gtag/js?id=G-EXNGC2MVE4&cx=c&gtm=45He58c0v71178557za200&tag_exp=101509157~103116026~103200004~103233427~104630776~104630778~104684208~104684211~105033763~105033765~105103161~105103163~105231383~105231385"></script><script type="text/javascript" async="" src="https://www.googletagmanager.com/gtag/js?id=AW-1072372777&cx=c&gtm=45He58c0v71178557za200&tag_exp=101509157~103116026~103200004~103233427~104630776~104630778~104684208~104684211~105033763~105033765~105103161~105103163~105231383~105231385"></script><script type="text/javascript" async="" src="https://cdn.cs.1worldsync.com/jsc/h1ws.js"></script><script async="" src="https://www.googletagmanager.com/gtm.js?id=GTM-5WBNGQ"></script><script>
var LOCALE = 'en\u002DGB';
var BASE_URL = 'https\u003A\u002F\u002Fwww.technoworld.com\u002F';
var require = {
'baseUrl': 'https\u003A\u002F\u002Fwww.technoworld.com\u002Fstatic\u002Fversion1754627865\u002Ffrontend\u002FTechnoWorld\u002Ftw\u002Fen_GB'
};</script> <meta charset="utf-8">
<meta name="title" content="AMD EPYC 4244P processor 3.8 GHz 32 MB L3 100-000001480 in UK">
<meta name="description" content="AMD EPYC 4244PAMD EPYC 4004 processors accommodate entry-level server workloads efficiently and affordably, meeting your all-day, every day processing needs.">
<meta name="robots" content="INDEX,FOLLOW">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/images/fav/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<meta name="google-site-verification" content="lr54p4THDdaXGVMltnHUfKIt8xfSKwosrQo4DvRrVm8">
<title>AMD EPYC 4244P processor 3.8 GHz 32 MB L3 100-000001480</title>
<link rel="stylesheet" type="text/css" media="all" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/calendar.css">
<link rel="stylesheet" type="text/css" media="all" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/css/styles-m.css">
<link rel="stylesheet" type="text/css" media="all" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/gallery/gallery.css">
<link rel="stylesheet" type="text/css" media="screen and (min-width: 768px)" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/css/styles-l.css">
<link rel="stylesheet" type="text/css" media="print" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/css/print.css">
<link rel="stylesheet" type="text/css" media="all" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/css/custom.css">
<link rel="icon" type="image/x-icon" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Theme/favicon.ico">
<link rel="shortcut icon" type="image/x-icon" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Theme/favicon.ico">
<script type="text/javascript" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/requirejs/require.js"></script>
<script type="text/javascript" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/requirejs/mixins.js"></script>
<script type="text/javascript" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/requirejs-config.js"></script>
<script type="text/javascript" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/SITC_Sinchimport/js/catalog.js"></script>
<script type="text/javascript" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Smile_ElasticsuiteTracker/js/tracking.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="mage/common" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/common.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="mage/dataPost" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/dataPost.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="mage/bootstrap" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/bootstrap.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/core/app" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/core/app.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_PageCache/js/form-key-provider" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_PageCache/js/form-key-provider.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Translation/js/mage-translation-dictionary" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Translation/js/mage-translation-dictionary.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Theme/js/theme" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Theme/js/theme.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="js/general" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/js/general.js"></script>
<!--[if IE 11]>
<script type="text/javascript" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Klevu_Search/js/klevu/ieUrlPolyfill.js"></script>
<![endif]-->
<link rel="preload" as="font" crossorigin="anonymous" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/fonts/opensans/light/opensans-300.woff2">
<link rel="preload" as="font" crossorigin="anonymous" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/fonts/opensans/regular/opensans-400.woff2">
<link rel="preload" as="font" crossorigin="anonymous" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/fonts/opensans/semibold/opensans-600.woff2">
<link rel="preload" as="font" crossorigin="anonymous" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/fonts/opensans/bold/opensans-700.woff2">
<link rel="preload" as="font" crossorigin="anonymous" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/fonts/Luma-Icons.woff2">
<link rel="apple-touch-icon" sizes="57x57" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/images/fav/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/images/fav/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/images/fav/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/images/fav/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/images/fav/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/images/fav/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/images/fav/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/images/fav/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/images/fav/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/images/fav/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/images/fav/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/images/fav/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/images/fav/favicon-16x16.png">
<link rel="manifest" href="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/images/fav/manifest.json">
<link rel="canonical" href="https://www.technoworld.com/amd-epyc-4244p-processor-3-8-ghz-32-mb-l3-100-000001480">
<script type="text/javascript">
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);}
gtag('consent', 'default', {
ad_storage: 'denied',
analytics_storage: 'denied',
ad_user_data: 'denied',
ad_personalization: 'denied',
wait_for_update: 500, 11});
gtag('set', 'ads_data_redaction' , true);
</script>
<meta name="p:domain_verify" content="95jzhLGzOhlSF37026G2YA01VX55Ubbs">
<script data-key="$2y$10$IeTyUHWiA6eE9vQExOYFO6X3ZZWCxObAEzwdKobEbpayC92yIi" data-name="CookieXray" src="https://cdn.seersco.com/banners/16910/14793/cb.js" type="text/javascript"></script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5WBNGQ');</script>
<!-- End Google Tag Manager -->
<link rel="preconnect" href="https://js.klevu.com">
<script type="text/javascript">
var klevu_lang = 'en';
var klevu_baseCurrencyCode = 'GBP';
var klevu_currentCurrencyCode = 'GBP';
var klevu_pubIsInUse = true;
var klevu_current_version = '3.5.1';
</script>
<script type="text/javascript" src="https://js.klevu.com/core/v2/klevu.js"></script>
<script type="text/javascript" id="klevu_jsapikeys">
klevu({"search":{"apiKey":"klevu-166602213900615319"},"analytics":{"apiKey":"klevu-166602213900615319"}});
</script>
<script type="text/javascript" id="klevu_jsdeferredpowerup">
klevu({"powerUp":{"catnav":false,"quick":false,"landing":false}});
</script>
<script type="text/javascript" id="klevu_jsmodules">
// Add Price Field Suffix for customer group and currency conversion
var klevu_addPriceSuffixToQueryControl = {
name: 'addPriceSuffixToQuery',
fire: function (data, scope) {
var localStorage = JSON.parse(
window.localStorage.getItem('klv_mage') || '{}'
);
var customerData = localStorage.customerData || {};
if ("undefined" !== typeof customerData.customer_group_id) {
klevu.search.modules.addPriceSuffixToQuery(data, scope, klevu_baseCurrencyCode, customerData.customer_group_id);
}
}
};
(function (klevu) {
klevu.extend(true, klevu.search.modules, {
addPriceSuffixToQuery: function (data, scope, currencyCode, customerGroupId) {
if (typeof data.request.current === "undefined") {
return false;
}
klevu.each(data.request.current.recordQueries, function (key, query) {
//code to fetch prices
klevu.setObjectPath(
data,
"localOverrides.query." + query.id + ".settings.priceFieldSuffix",
currencyCode + '-' + customerGroupId
);
});
},
mageConvertPriceRecordCurrencyData: function (productRecords, currencyCode, currencyRates) {
if (!productRecords) {
return;
}
klevu.each(productRecords, function (recordKey, productRecord) {
var fromRate = parseFloat(currencyRates[productRecord.currency] || 0);
var toRate = parseFloat(currencyRates[currencyCode] || 0);
if (!fromRate || !toRate) {
return;
}
var exchangeRate = toRate / fromRate;
if (klevu.isNumeric(klevu.getObjectPath(productRecord, "price"))) {
productRecord.price *= exchangeRate;
}
if (klevu.isNumeric(klevu.getObjectPath(productRecord, "salePrice"))) {
productRecord.salePrice *= exchangeRate;
}
if (klevu.isNumeric(klevu.getObjectPath(productRecord, "startPrice"))) {
productRecord.startPrice *= exchangeRate;
}
productRecord.currency = currencyCode;
});
}
});
})(klevu);
</script>
<script type="text/javascript" id="klevu_jsinteractive">
klevu.interactive(function () {
var options = {"url":{"protocol":"https:","landing":"https:\/\/www.technoworld.com\/search\/","search":"https:\/\/eucs31v2.ksearchnet.com\/cs\/v2\/search"},"search":{"minChars":5,"searchBoxSelector":"input[type=text][name=q],input[type=search][name=q],.kuSearchInput"}};
klevu(options);
});
</script> <script type="text/javascript" src="https://js.klevu.com/theme/default/v2/quick-search-theme.js"></script>
<!-- BEGIN GOOGLE ANALYTICS CODE -->
<script type="text/x-magento-init">
{
"*": {
"Magento_GoogleAnalytics/js/google-analytics": {
"isCookieRestrictionModeEnabled": 0,
"currentWebsite": 1,
"cookieName": "user_allowed_save_cookie",
"ordersTrackingData": [],
"pageTrackingData": {"optPageUrl":"","isAnonymizedIpActive":true,"accountId":"UA-349349-1"} }
}
}
</script>
<!-- END GOOGLE ANALYTICS CODE -->
<!-- BEGIN GOOGLE ANALYTICS 4 CODE -->
<script type="text/x-magento-init">
{
"*": {
"Magento_GoogleGtag/js/google-analytics": {"isCookieRestrictionModeEnabled":false,"currentWebsite":1,"cookieName":"user_allowed_save_cookie","pageTrackingData":{"optPageUrl":"","measurementId":"G-EXNGC2MVE4"},"ordersTrackingData":[],"googleAnalyticsAvailable":true} }
}
</script>
<!-- END GOOGLE ANALYTICS 4 CODE -->
<script type="text/x-magento-init">
{
"*": {
"Magento_PageCache/js/form-key-provider": {
"isPaginationCacheEnabled":
0 }
}
}
</script>
<script>
window.YIREO_GOOGLETAGMANAGER2_ENABLED = true;
(function (events) {
const initYireoGoogleTagManager2 = function () {
events.forEach(function (eventType) {
window.removeEventListener(eventType, initYireoGoogleTagManager2);
});
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({'gtm.start': new Date().getTime(), event: 'gtm.js'});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-5WBNGQ');
}
events.forEach(function (eventType) {
window.addEventListener(eventType, initYireoGoogleTagManager2, {once: true, passive: true})
})
})(['keydown', 'mouseover', 'scroll', 'touchstart', 'wheel']);
</script>
<meta property="og:type" content="product">
<meta property="og:title" content="AMD EPYC 4244P processor 3.8 GHz 32 MB L3 100-000001480">
<meta property="og:image" content="https://media.stockinthechannel.com/pic/oEAXIhOtqU-rgnRUQ0a2KQ.c-r.jpg">
<meta property="og:description" content="AMD EPYC 4244P, 6C / 12T, 3.8 GHz (5.1 GHz Boost), 32 MB L3 Cache, 65W, AM5, Tray">
<meta property="og:url" content="https://www.technoworld.com/amd-epyc-4244p-processor-3-8-ghz-32-mb-l3-100-000001480">
<meta property="product:price:amount" content="189.14">
<meta property="product:price:currency" content="GBP">
<script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="domReady" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/requirejs/domReady.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="mage/apply/main" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/apply/main.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bootstrap" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bootstrap.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="mage/template" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/template.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/modal/confirm" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/modal/confirm.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery/ui-modules/widget" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/ui-modules/widget.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="mage/smart-keyboard-handler" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/smart-keyboard-handler.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="mage/mage" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/mage.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="text" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/requirejs/text.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_ReCaptchaWebapiUi/js/jquery-mixin" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_ReCaptchaWebapiUi/js/jquery-mixin.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/core/renderer/types" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/core/renderer/types.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/core/renderer/layout" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/core/renderer/layout.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="owlCarousel" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/js/owl.carousel.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="matchHeight" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/js/jquery.matchHeight.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Yireo_GoogleTagManager2/js/push" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Yireo_GoogleTagManager2/js/push.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Yireo_GoogleTagManager2/js/product/clicks" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Yireo_GoogleTagManager2/js/product/clicks.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="underscore" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/underscore.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="knockoutjs/knockout" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/knockoutjs/knockout.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="knockoutjs/knockout-es5" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/knockoutjs/knockout-es5.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="mage/translate" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/translate.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/modal/modal" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/modal/modal.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="mage/utils/wrapper" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/utils/wrapper.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="mage/apply/scripts" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/apply/scripts.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/template/engine" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/template/engine.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bindings/bootstrap" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bindings/bootstrap.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/extender/observable_array" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/extender/observable_array.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/extender/bound-nodes" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/extender/bound-nodes.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery/ui-modules/version" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/ui-modules/version.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="mage/utils/main" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/utils/main.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/registry/registry" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/registry/registry.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/logger/console-logger" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/logger/console-logger.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Yireo_GoogleTagManager2/js/logger" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Yireo_GoogleTagManager2/js/logger.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/key-codes" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/key-codes.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery/ui-modules/core" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/ui-modules/core.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery/z-index" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/z-index.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="knockoutjs/knockout-repeat" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/knockoutjs/knockout-repeat.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="knockoutjs/knockout-fast-foreach" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/knockoutjs/knockout-fast-foreach.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/template/observable_source" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/template/observable_source.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/template/renderer" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/template/renderer.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bindings/resizable" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bindings/resizable.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bindings/i18n" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bindings/i18n.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bindings/scope" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bindings/scope.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bindings/range" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bindings/range.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bindings/mage-init" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bindings/mage-init.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bindings/keyboard" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bindings/keyboard.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bindings/optgroup" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bindings/optgroup.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bindings/after-render" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bindings/after-render.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bindings/autoselect" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bindings/autoselect.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bindings/datepicker" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bindings/datepicker.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bindings/outer_click" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bindings/outer_click.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bindings/fadeVisible" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bindings/fadeVisible.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bindings/collapsible" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bindings/collapsible.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bindings/staticChecked" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bindings/staticChecked.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bindings/simple-checked" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bindings/simple-checked.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bindings/bind-html" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bindings/bind-html.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bindings/tooltip" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bindings/tooltip.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/bindings/color-picker" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/bindings/color-picker.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/core/events" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/core/events.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="mage/utils/arrays" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/utils/arrays.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="mage/utils/compare" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/utils/compare.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="mage/utils/misc" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/utils/misc.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="mage/utils/objects" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/utils/objects.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="mage/utils/strings" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/utils/strings.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="mage/utils/template" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/mage/utils/template.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/core/storage/local" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/core/storage/local.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/logger/logger" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/logger/logger.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/logger/entry-factory" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/logger/entry-factory.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/logger/console-output-handler" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/logger/console-output-handler.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/logger/formatter" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/logger/formatter.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/logger/message-pool" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/logger/message-pool.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/logger/levels-pool" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/logger/levels-pool.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/logger/logger-utils" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/logger/logger-utils.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery/ui-modules/data" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/ui-modules/data.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery/ui-modules/disable-selection" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/ui-modules/disable-selection.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery/ui-modules/focusable" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/ui-modules/focusable.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery/ui-modules/form" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/ui-modules/form.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery/ui-modules/ie" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/ui-modules/ie.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery/ui-modules/keycode" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/ui-modules/keycode.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery/ui-modules/labels" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/ui-modules/labels.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery/ui-modules/jquery-patch" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/ui-modules/jquery-patch.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery/ui-modules/plugin" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/ui-modules/plugin.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery/ui-modules/safe-active-element" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/ui-modules/safe-active-element.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery/ui-modules/safe-blur" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/ui-modules/safe-blur.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery/ui-modules/scroll-parent" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/ui-modules/scroll-parent.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery/ui-modules/tabbable" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/ui-modules/tabbable.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="jquery/ui-modules/unique-id" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/ui-modules/unique-id.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/core/class" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/core/class.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/view/utils/async" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/view/utils/async.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/knockout/template/loader" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/knockout/template/loader.js"></script><script src="https://bat.bing.com/p/action/134623707.js" type="text/javascript" async="" data-ueto="ueto_e2fa6a1e99"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="spectrum" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/spectrum/spectrum.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="tinycolor" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/jquery/spectrum/tinycolor.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/logger/entry" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/logger/entry.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="moment" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/moment.js"></script><style>.oo-player{position:static}</style><script>var css= document.createElement("style");
var styls = document.createTextNode(".oo-player{position:static}");
css.appendChild(styls);
var element = document.querySelector("head");
element.appendChild(css);
</script><link rel="stylesheet" type="text/css" href="https://cdn.cs.1worldsync.com/redirect/gp-subscriber-files/95bf34fb/aea198075d/Style.Minified/20241217084524.css"><style type="text/css">
</style><script>
ccs_cc_loge_682c7e('d53ab9ad');
function ccs_cc_gete_params_682c7e(id){switch(id){
case 'd53ab9ad': return { et: 'ProductHookLoad', serverParams: {"ServerTime":"60","ResultCode":"12"} };break;
}}
function ccs_cc_loge_682c7e(id, clientParams){
var eventInfo = ccs_cc_gete_params_682c7e(id); if(!eventInfo) return;
ccs_cc_log.logEvent (eventInfo.et, 'SKey=95bf34fb&LCID=2057&Market=GB&Locale=EN-GBR&ZoneId=aea198075d&ZoneVer=57&MfgPn=100000001480&MasterId=1066501cac83b15b&SMfgName=AMD&SMfgPn=100-000001480&MfgId=102', eventInfo.serverParams, clientParams); }
</script><script>(function($){
if (!$) return;
window.ccsATC = {};
ccsATC.buy = function (pid) {
form = $('#product_addtocart_form');
old = form.attr('action');
act = old.replace(/[^/]*.$/,pid);
form.attr('action',act);
form.find('button').click();
form.attr('action',old);
}
}(window.ccsJq))
var $oopl = document.querySelector(".oo-player");
if ($oopl) {
document.querySelector(".oo-player").style.position = "static";}
</script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/view/utils/dom-observer" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/view/utils/dom-observer.js"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="Magento_Ui/js/lib/view/utils/bindings" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/Magento_Ui/js/lib/view/utils/bindings.js"></script></head><body data-container="body" data-mage-init="{"loaderAjax": {}, "loader": { "icon": "https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/images/loader-2.gif"}}" id="html-body" class="catalog-product-view product-amd-epyc-4244p-processor-3-8-ghz-32-mb-l3-100-000001480 page-layout-1column"><div id="sticky" class="col-md-12" style="width: 100%; display: none; align-items: center; justify-content: space-between; background-color: rgb(255, 255, 255); position: fixed; top: 0px; z-index: 99999; box-shadow: rgb(0, 0, 0) 0px 0px 20px;height: 120px;">
<div class="col-md-1"></div>
<div class="col-md-2" style="margin:15px 0;"><img alt="" src="https://media.stockinthechannel.com/pic/oEAXIhOtqU-rgnRUQ0a2KQ.c-r.jpg" height="120px" width="120px"></div>
<div class="col-md-6"><h3 style="margin-top:10px"><span style="font-weight:400;font-size:28px;">AMD EPYC 4244P processor 3.8 GHz 32 MB L3 100-000001480</span></h3></div>
<div class="col-md-2" style="margin-top:10px;">
<span data-label="Incl. VAT" data-price-amount="189.14" data-price-type="finalPrice" class="price-wrapper price-including-tax"><span class="price" style="font-size:24px;color:#017f3f">£189.14</span></span>
<span data-label="Excl. VAT" data-price-amount="157.61" data-price-type="basePrice" class="price-wrapper price-including-tax"><span class="price" style="font-size:24px;color:#898989">£157.61</span></span>
<form data-role="tocart-form" data-product-sku="100-000001480" action="https://www.technoworld.com/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVjaG5vd29ybGQuY29tL2FtZC1lcHljLTQyNDRwLXByb2Nlc3Nvci0zLTgtZ2h6LTMyLW1iLWwzLTEwMC0wMDAwMDE0ODA~/product/234409/" method="post">
<input name="form_key" type="hidden" value="Jz1JWAp3LyVlbZmR"> <button style="margin-top:10px;" type="submit" title="Add to Cart" class="action tocart primary">
<span>Add to Cart</span>
</button>
</form>
</div>
<div class="col-md-1"></div>
</div>
<div id="stickym" class="col-xs-12" style="width:100%;height:100px; background-color:#fff;position:fixed; bottom:10px;z-index:99999;box-shadow:0px 0px 20px #000">
<div class="col-xs-6" style="margin-top:8px">
<span data-label="Incl. VAT" data-price-amount="189.14" data-price-type="finalPrice" class="price-wrapper price-including-tax"><span class="price" style="font-size:24px;color:#017f3f">£189.14</span></span>
<span data-label="Excl. VAT" data-price-amount="157.61" data-price-type="basePrice" class="price-wrapper price-including-tax"><span class="price" style="font-size:20px;color:#898989">£157.61</span></span><br>
</div>
<div class="col-xs-6" style="margin-top:15px">
<form data-role="tocart-form" data-product-sku="100-000001480" action="https://www.technoworld.com/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVjaG5vd29ybGQuY29tL2FtZC1lcHljLTQyNDRwLXByb2Nlc3Nvci0zLTgtZ2h6LTMyLW1iLWwzLTEwMC0wMDAwMDE0ODA~/product/234409/" method="post">
<input name="form_key" type="hidden" value="Jz1JWAp3LyVlbZmR"> <button style="margin-top:10px;" type="submit" title="Add to Cart" class="action tocart primary">
<span>Add to Cart</span>
</button>
</form>
</div>
</div>
<style>
@media(min-width:651px) {
#stickym {
visibility: hidden;
}
}
@media(max-width:650px) {
#sticky {
visibility: hidden;
}
#stickym {
visibility: visible;
}
}
</style>
<script>
jQuery(document).ready(function ($) {
$(window).scroll(function () {
var distanceFromTop = $(this).scrollTop();
if (distanceFromTop >= 700) {
$('#sticky').css("display", "flex");
} else {
$('#sticky').css("display", "none");
}
});
});
</script>
<script type="text/javascript" id="klevu_initsessiondata">
var nowUnixtime = parseInt(Date.now() / 1000);
function klevufejs_getCookie(name) {
if (typeof (name) === "undefined") {
name = "klv_mage";
}
var c = "",
ca = document.cookie.split(';');
for (var i = 0; i < ca.length; i++) {
c = ca[i];
if (typeof c !== "string") {
continue;
}
var cookiePair = c.split("=");
if (name === cookiePair[0].trim()) {
try {
return JSON.parse(decodeURIComponent(cookiePair[1]));
} catch (err) {
// this is fine, data will be regenerated
}
}
}
return {
expire_sections: {}
};
}
document.addEventListener('klevu.customerData.loaded', function (e) {
var klevufejs_cookie = klevufejs_getCookie();
klevufejs_cookie.expire_sections.customerData = nowUnixtime + 600;
document.cookie = "klv_mage=" + JSON.stringify(klevufejs_cookie)
+ "; expires=" + new Date((nowUnixtime + 3600) * 1000).toUTCString()
+ "; path=/"
+ "; samesite=strict";
});
var klevufejs_cookie = klevufejs_getCookie();
var klevuData = {
...{
customerData: {
revalidate_after: -1
}
},
...JSON.parse(window.localStorage.getItem('klv_mage') || '{}')
};
const klevuCustomerDataLoadedEvent = document.createEvent('CustomEvent');
klevuCustomerDataLoadedEvent.initEvent('klevu.customerData.loaded', false, true);
const klevuCustomerDataLoadErrorEvent = document.createEvent('CustomEvent');
klevuCustomerDataLoadErrorEvent.initEvent('klevu.customerData.loadError', false, true);
if (typeof klevufejs_cookie.expire_sections !== "object"
|| (klevufejs_cookie.expire_sections.customerData || -1) < nowUnixtime
|| klevuData.customerData.revalidate_after < nowUnixtime
) {
var xhttp = new XMLHttpRequest();
xhttp.onerror = function (request) {
document.dispatchEvent(klevuCustomerDataLoadErrorEvent);
};
xhttp.ontimeout = function (request) {
this.onerror(request);
};
xhttp.onload = function (request) {
if (this.status >= 400 || this.timeout) {
this.onerror(request);
return;
}
var klevuData = JSON.parse(window.localStorage.getItem('klv_mage') || '{}');
klevuData.customerData = JSON.parse(this.response);
window.localStorage.setItem('klv_mage', JSON.stringify(klevuData));
document.dispatchEvent(klevuCustomerDataLoadedEvent);
};
xhttp.open('GET', 'https://www.technoworld.com/rest/V1/klevu/customerData', false);
xhttp.send();
} else {
document.dispatchEvent(klevuCustomerDataLoadedEvent);
}
</script>
<script type="text/x-magento-init">
{
"*": {
"Magento_PageBuilder/js/widget-initializer": {
"config": {"[data-content-type=\"slider\"][data-appearance=\"default\"]":{"Magento_PageBuilder\/js\/content-type\/slider\/appearance\/default\/widget":false},"[data-content-type=\"map\"]":{"Magento_PageBuilder\/js\/content-type\/map\/appearance\/default\/widget":false},"[data-content-type=\"row\"]":{"Magento_PageBuilder\/js\/content-type\/row\/appearance\/default\/widget":false},"[data-content-type=\"tabs\"]":{"Magento_PageBuilder\/js\/content-type\/tabs\/appearance\/default\/widget":false},"[data-content-type=\"slide\"]":{"Magento_PageBuilder\/js\/content-type\/slide\/appearance\/default\/widget":{"buttonSelector":".pagebuilder-slide-button","showOverlay":"hover","dataRole":"slide"}},"[data-content-type=\"banner\"]":{"Magento_PageBuilder\/js\/content-type\/banner\/appearance\/default\/widget":{"buttonSelector":".pagebuilder-banner-button","showOverlay":"hover","dataRole":"banner"}},"[data-content-type=\"buttons\"]":{"Magento_PageBuilder\/js\/content-type\/buttons\/appearance\/inline\/widget":false},"[data-content-type=\"products\"][data-appearance=\"carousel\"]":{"Magento_PageBuilder\/js\/content-type\/products\/appearance\/carousel\/widget":false}},
"breakpoints": {"desktop":{"label":"Desktop","stage":true,"default":true,"class":"desktop-switcher","icon":"Magento_PageBuilder::css\/images\/switcher\/switcher-desktop.svg","conditions":{"min-width":"1024px"},"options":{"products":{"default":{"slidesToShow":"5"}}}},"tablet":{"conditions":{"max-width":"1024px","min-width":"768px"},"options":{"products":{"default":{"slidesToShow":"4"},"continuous":{"slidesToShow":"3"}}}},"mobile":{"label":"Mobile","stage":true,"class":"mobile-switcher","icon":"Magento_PageBuilder::css\/images\/switcher\/switcher-mobile.svg","media":"only screen and (max-width: 768px)","conditions":{"max-width":"768px","min-width":"640px"},"options":{"products":{"default":{"slidesToShow":"3"}}}},"mobile-small":{"conditions":{"max-width":"640px"},"options":{"products":{"default":{"slidesToShow":"2"},"continuous":{"slidesToShow":"1"}}}}} }
}
}
</script>
<div class="cookie-status-message" id="cookie-status" style="display: none;">
The store will not work correctly when cookies are disabled.</div>
<script type="text/javascript">document.querySelector("#cookie-status").style.display = "none";</script>
<script type="text/x-magento-init">
{
"*": {
"cookieStatus": {}
}
}
</script>
<script type="text/x-magento-init">
{
"*": {
"mage/cookies": {
"expires": null,
"path": "\u002F",
"domain": ".technoworld.com",
"secure": true,
"lifetime": "3600"
}
}
}
</script>
<noscript>
<div class="message global noscript">
<div class="content">
<p>
<strong>JavaScript seems to be disabled in your browser.</strong>
<span>
For the best experience on our site, be sure to turn on Javascript in your browser. </span>
</p>
</div>
</div>
</noscript>
<script>
window.cookiesConfig = window.cookiesConfig || {};
window.cookiesConfig.secure = true;
</script><script> require.config({
map: {
'*': {
wysiwygAdapter: 'mage/adminhtml/wysiwyg/tiny_mce/tinymce5Adapter'
}
}
});</script><script>
require.config({
paths: {
googleMaps: 'https\u003A\u002F\u002Fmaps.googleapis.com\u002Fmaps\u002Fapi\u002Fjs\u003Fv\u003D3\u0026key\u003D'
},
config: {
'Magento_PageBuilder/js/utils/map': {
style: ''
},
'Magento_PageBuilder/js/content-type/map/preview': {
apiKey: '',
apiKeyErrorMessage: 'You\u0020must\u0020provide\u0020a\u0020valid\u0020\u003Ca\u0020href\u003D\u0027https\u003A\u002F\u002Fwww.technoworld.com\u002Fadminhtml\u002Fsystem_config\u002Fedit\u002Fsection\u002Fcms\u002F\u0023cms_pagebuilder\u0027\u0020target\u003D\u0027_blank\u0027\u003EGoogle\u0020Maps\u0020API\u0020key\u003C\u002Fa\u003E\u0020to\u0020use\u0020a\u0020map.'
},
'Magento_PageBuilder/js/form/element/map': {
apiKey: '',
apiKeyErrorMessage: 'You\u0020must\u0020provide\u0020a\u0020valid\u0020\u003Ca\u0020href\u003D\u0027https\u003A\u002F\u002Fwww.technoworld.com\u002Fadminhtml\u002Fsystem_config\u002Fedit\u002Fsection\u002Fcms\u002F\u0023cms_pagebuilder\u0027\u0020target\u003D\u0027_blank\u0027\u003EGoogle\u0020Maps\u0020API\u0020key\u003C\u002Fa\u003E\u0020to\u0020use\u0020a\u0020map.'
},
}
});
</script>
<script>
require.config({
shim: {
'Magento_PageBuilder/js/utils/map': {
deps: ['googleMaps']
}
}
});
</script>
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5WBNGQ" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<div class="page-wrapper"><header class="page-header"><div class="panel wrapper"><div class="panel header"><div class="header-left-info pull-left hidden-sm hidden-xs ">
</div><a class="action skip contentarea" href="#contentarea">
<span>
Skip to Content </span>
</a>
<ul class="header links"><li><a href="https://www.technoworld.com/about-us/" id="idPAv3uGAg">About Us</a></li><li><a href="https://www.technoworld.com/sales/guest/form/" id="idJvsddGHY">Order Status</a></li><li><a href="https://www.technoworld.com/contacts/" id="id6MhRz1NG">Contact Us</a></li><li><a href="https://www.technoworld.com/delivery-information/" id="idpEin9aCe">Delivery Information</a></li><li class="link authorization-link" data-label="or">
<a href="https://www.technoworld.com/customer/account/login/referer/aHR0cHM6Ly93d3cudGVjaG5vd29ybGQuY29tL2FtZC1lcHljLTQyNDRwLXByb2Nlc3Nvci0zLTgtZ2h6LTMyLW1iLWwzLTEwMC0wMDAwMDE0ODA~/">Sign In</a>
</li>
<li><a href="https://www.technoworld.com/customer/account/create/" id="id9iKDNXxs">New Account</a></li></ul></div></div><div class="header content"><span data-action="toggle-nav" class="action nav-toggle"><span>Toggle Nav</span></span>
<a class="logo" href="https://www.technoworld.com/" title="" aria-label="store logo">
<img src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/images/tw-logo.png" title="" alt="" width="170">
</a>
<div data-block="minicart" class="minicart-wrapper">
<a class="action showcart" href="https://www.technoworld.com/checkout/cart/" data-bind="scope: 'minicart_content'">
<span class="text">My Cart</span>
<span class="counter qty empty" data-bind="css: { empty: !!getCartParam('summary_count') == false && !isLoading() },
blockLoader: isLoading">
<span class="counter-number">
<!-- ko if: getCartParam('summary_count') -->
<!-- ko text: getCartParam('summary_count').toLocaleString(window.LOCALE) --><!-- /ko -->
<!-- /ko -->
</span>
<span class="counter-label">
<!-- ko if: getCartParam('summary_count') -->
<!-- ko text: getCartParam('summary_count').toLocaleString(window.LOCALE) --><!-- /ko -->
<!-- ko i18n: 'items' --><!-- /ko -->
<!-- /ko -->
</span>
</span>
</a>
<div class="block block-minicart" data-role="dropdownDialog" data-mage-init="{"dropdownDialog":{
"appendTo":"[data-block=minicart]",
"triggerTarget":".showcart",
"timeout": "2000",
"closeOnMouseLeave": false,
"closeOnEscape": true,
"triggerClass":"active",
"parentClass":"active",
"buttons":[]}}">
<div id="minicart-content-wrapper" data-bind="scope: 'minicart_content'">
<!-- ko template: getTemplate() --><!-- /ko -->
</div>
</div>
<script>window.checkout = {"shoppingCartUrl":"https:\/\/www.technoworld.com\/checkout\/cart\/","checkoutUrl":"https:\/\/www.technoworld.com\/checkout\/","updateItemQtyUrl":"https:\/\/www.technoworld.com\/checkout\/sidebar\/updateItemQty\/","removeItemUrl":"https:\/\/www.technoworld.com\/checkout\/sidebar\/removeItem\/","imageTemplate":"Magento_Catalog\/product\/image_with_borders","baseUrl":"https:\/\/www.technoworld.com\/","minicartMaxItemsVisible":5,"websiteId":"1","maxItemsToDisplay":10,"storeId":"1","storeGroupId":"1","agreementIds":["1"],"customerLoginUrl":"https:\/\/www.technoworld.com\/customer\/account\/login\/referer\/aHR0cHM6Ly93d3cudGVjaG5vd29ybGQuY29tL2FtZC1lcHljLTQyNDRwLXByb2Nlc3Nvci0zLTgtZ2h6LTMyLW1iLWwzLTEwMC0wMDAwMDE0ODA~\/","isRedirectRequired":false,"autocomplete":"off","captcha":{"user_login":{"isCaseSensitive":false,"imageHeight":50,"imageSrc":"","refreshUrl":"https:\/\/www.technoworld.com\/captcha\/refresh\/","isRequired":false,"timestamp":1755156048}}}</script> <script type="text/x-magento-init">
{
"[data-block='minicart']": {
"Magento_Ui/js/core/app": {"components":{"minicart_content":{"children":{"subtotal.container":{"children":{"subtotal":{"children":{"subtotal.totals":{"config":{"display_cart_subtotal_incl_tax":0,"display_cart_subtotal_excl_tax":1,"template":"Magento_Tax\/checkout\/minicart\/subtotal\/totals"},"children":{"subtotal.totals.msrp":{"component":"Magento_Msrp\/js\/view\/checkout\/minicart\/subtotal\/totals","config":{"displayArea":"minicart-subtotal-hidden","template":"Magento_Msrp\/checkout\/minicart\/subtotal\/totals"}}},"component":"Magento_Tax\/js\/view\/checkout\/minicart\/subtotal\/totals"}},"component":"uiComponent","config":{"template":"Magento_Checkout\/minicart\/subtotal"}}},"component":"uiComponent","config":{"displayArea":"subtotalContainer"}},"item.renderer":{"component":"Magento_Checkout\/js\/view\/cart-item-renderer","config":{"displayArea":"defaultRenderer","template":"Magento_Checkout\/minicart\/item\/default"},"children":{"item.image":{"component":"Magento_Catalog\/js\/view\/image","config":{"template":"Magento_Catalog\/product\/image","displayArea":"itemImage"}},"checkout.cart.item.price.sidebar":{"component":"uiComponent","config":{"template":"Magento_Checkout\/minicart\/item\/price","displayArea":"priceSidebar"}}}},"extra_info":{"component":"uiComponent","config":{"displayArea":"extraInfo"}},"promotion":{"component":"uiComponent","config":{"displayArea":"promotion"}}},"config":{"itemRenderer":{"default":"defaultRenderer","simple":"defaultRenderer","virtual":"defaultRenderer"},"template":"Magento_Checkout\/minicart\/content"},"component":"Magento_Checkout\/js\/view\/minicart"}},"types":[]} },
"*": {
"Magento_Ui/js/block-loader": "https\u003A\u002F\u002Fwww.technoworld.com\u002Fstatic\u002Fversion1754627865\u002Ffrontend\u002FTechnoWorld\u002Ftw\u002Fen_GB\u002Fimages\u002Floader\u002D1.gif"
}
}
</script>
</div>
<div class="block block-search">
<div class="block block-title">
<strong>Search</strong>
</div>
<div class="block block-content">
<form id="minisearch-form-top-search" class="form minisearch" action="https://www.technoworld.com/search/" method="get">
<div class="field search">
<label class="label" for="minisearch-input-top-search" data-role="minisearch-label">
<span>Search</span>
</label>
<div class="control">
<input id="minisearch-input-top-search" type="text" name="q" value="" placeholder="Search entire store here..." class="input-text" maxlength="128" role="combobox" aria-haspopup="false" aria-autocomplete="both" aria-expanded="false" autocomplete="off" data-block="autocomplete-form" data-mage-init="{"quickSearch":{"formSelector":"#minisearch-form-top-search","url":"https:\/\/www.technoworld.com\/search\/ajax\/suggest\/","destinationSelector":"#minisearch-autocomplete-top-search","templates":{"term":{"title":"Search terms","template":"Smile_ElasticsuiteCore\/autocomplete\/term"},"product":{"title":"Products","template":"Smile_ElasticsuiteCatalog\/autocomplete\/product"},"category":{"title":"Categories","template":"Smile_ElasticsuiteCatalog\/autocomplete\/category"},"product_attribute":{"title":"Attributes","template":"Smile_ElasticsuiteCatalog\/autocomplete\/product-attribute","titleRenderer":"Smile_ElasticsuiteCatalog\/js\/autocomplete\/product-attribute"}},"priceFormat":{"pattern":"\u00a3%s","precision":2,"requiredPrecision":2,"decimalSymbol":".","groupSymbol":",","groupLength":3,"integerRequired":false},"minSearchLength":"2"}}">
<div id="minisearch-autocomplete-top-search" class="search-autocomplete"></div>
</div>
</div>
<div class="actions">
<button type="submit" title="Search" class="action search">
<span>Search</span>
</button>
</div>
</form>
</div>
</div>
<ul class="compare wrapper"><li class="item link compare" data-bind="scope: 'compareProducts'" data-role="compare-products-link">
<a class="action compare no-display" title="Compare Products" data-bind="attr: {'href': compareProducts().listUrl}, css: {'no-display': !compareProducts().count}">
Compare Products <span class="counter qty" data-bind="text: compareProducts().countCaption"></span>
</a>
</li>
<script type="text/x-magento-init">
{"[data-role=compare-products-link]": {"Magento_Ui/js/core/app": {"components":{"compareProducts":{"component":"Magento_Catalog\/js\/view\/compare-products"}}}}}
</script>
</ul></div></header> <div class="sections nav-sections">
<div class="section-items nav-sections-items" data-mage-init="{"tabs":{"openedState":"active"}}">
<div class="section-item-title nav-sections-item-title" data-role="collapsible">
<a class="nav-sections-item-switch" data-toggle="switch" href="#store.menu">
Menu </a>
</div>
<div class="section-item-content nav-sections-item-content" id="store.menu" data-role="content">
<nav class="navigation" data-action="navigation">
<ul data-mage-init="{"menu":{"responsive":true, "expanded":true, "position":{"my":"left top","at":"left bottom"}}}">
<li class="level0 nav-1 category-item first level-top parent" style="background:#de0000;"><a onmouseover="this.style.background='#940202';" onmouseout="this.style.background=''" href="https://www.technoworld.com/special-offers" class="level-top"><span>Special Offers</span></a><ul class="level0 submenu"><li class="level1 nav-1-1 category-item first"><a href="https://www.technoworld.com/special-offers/top-sellers"><span>Top Seller</span></a></li><li class="level1 nav-1-2 category-item"><a href="https://www.technoworld.com/special-offers/gaming-laptops"><span>Gaming Laptops</span></a></li><li class="level1 nav-1-3 category-item parent"><a href="https://www.technoworld.com/special-offers/laptop-offers"><span>Laptop Offers</span></a><ul class="level1 submenu"><li class="level2 nav-1-3-1 category-item first"><a href="https://www.technoworld.com/special-offers/laptop-offers/hp-laptop-offers"><span>HP Laptop Offers</span></a></li><li class="level2 nav-1-3-2 category-item"><a href="https://www.technoworld.com/special-offers/laptop-offers/hp-250-series-laptop-offers"><span>HP 250 Series Laptop Offers</span></a></li><li class="level2 nav-1-3-3 category-item"><a href="https://www.technoworld.com/special-offers/laptop-offers/hp-probook-laptop-offers"><span>HP ProBook Laptop Offers</span></a></li><li class="level2 nav-1-3-4 category-item"><a href="https://www.technoworld.com/special-offers/laptop-offers/hp-elitebook-laptop-offers"><span>HP Elitebook Laptop Offers</span></a></li><li class="level2 nav-1-3-5 category-item"><a href="https://www.technoworld.com/special-offers/laptop-offers/lenovo-laptop-offers"><span>Lenovo Laptop Offers</span></a></li><li class="level2 nav-1-3-6 category-item"><a href="https://www.technoworld.com/special-offers/laptop-offers/lenovo-e-series-laptop-offers"><span>Lenovo E Series Laptop Offers</span></a></li><li class="level2 nav-1-3-7 category-item"><a href="https://www.technoworld.com/special-offers/laptop-offers/lenovo-p-series-laptop-offers"><span>Lenovo P Series Laptop Offers</span></a></li><li class="level2 nav-1-3-8 category-item"><a href="https://www.technoworld.com/special-offers/laptop-offers/lenovo-t-series-laptop-offers"><span>Lenovo T Series Laptop Offers</span></a></li><li class="level2 nav-1-3-9 category-item"><a href="https://www.technoworld.com/special-offers/laptop-offers/lenovo-v-series-laptop-offers"><span>Lenovo V Series Laptop Offers</span></a></li><li class="level2 nav-1-3-10 category-item"><a href="https://www.technoworld.com/special-offers/laptop-offers/lenovo-thinkbook-laptop-offers"><span>Lenovo ThinkBook Laptop Offers</span></a></li><li class="level2 nav-1-3-11 category-item last"><a href="https://www.technoworld.com/special-offers/laptop-offers/surface-laptop-offers"><span>Surface Laptop Offers</span></a></li></ul></li><li class="level1 nav-1-4 category-item parent"><a href="https://www.technoworld.com/special-offers/chromebook-offers"><span>Chromebook Offers</span></a><ul class="level1 submenu"><li class="level2 nav-1-4-1 category-item first"><a href="https://www.technoworld.com/special-offers/chromebook-offers/asus-chromebooks-offers"><span>Asus Chromebook Offers</span></a></li><li class="level2 nav-1-4-2 category-item"><a href="https://www.technoworld.com/special-offers/chromebook-offers/hp-chromebook-offers"><span>HP Chromebook Offers</span></a></li><li class="level2 nav-1-4-3 category-item last"><a href="https://www.technoworld.com/special-offers/chromebook-offers/lenovo-chromebooks-offers"><span>Lenovo Chromebook Offers</span></a></li></ul></li><li class="level1 nav-1-5 category-item parent"><a href="https://www.technoworld.com/special-offers/pcs-workstations"><span>PC/Desktop Offers</span></a><ul class="level1 submenu"><li class="level2 nav-1-5-1 category-item first"><a href="https://www.technoworld.com/special-offers/pcs-workstations/hp-desktop-offers"><span>HP Desktop Offers</span></a></li><li class="level2 nav-1-5-2 category-item last"><a href="https://www.technoworld.com/special-offers/pcs-workstations/lenovo-desktop-offers"><span>Lenovo Desktop Offers</span></a></li></ul></li><li class="level1 nav-1-6 category-item"><a href="https://www.technoworld.com/special-offers/chromebook-offers/hp-brighter-futures"><span>HP Brighter Futures</span></a></li><li class="level1 nav-1-7 category-item"><a href="https://www.technoworld.com/special-offers/notebook-cases"><span>Notebook Cases</span></a></li><li class="level1 nav-1-8 category-item"><a href="https://www.technoworld.com/special-offers/tablet-offers"><span>Tablet Offers</span></a></li><li class="level1 nav-1-9 category-item parent"><a href="https://www.technoworld.com/special-offers/monitor-offers"><span>Monitor Offers</span></a><ul class="level1 submenu"><li class="level2 nav-1-9-1 category-item first"><a href="https://www.technoworld.com/special-offers/monitor-offers/hp-monitor-offers"><span>HP Monitor Offers</span></a></li><li class="level2 nav-1-9-2 category-item"><a href="https://www.technoworld.com/special-offers/monitor-offers/lenovo-monitor-offers"><span>Lenovo Monitor Offers</span></a></li><li class="level2 nav-1-9-3 category-item"><a href="https://www.technoworld.com/special-offers/monitor-offers/viewsonic-monitor-offers"><span>Viewsonic Monitor Offers</span></a></li><li class="level2 nav-1-9-4 category-item last"><a href="https://www.technoworld.com/special-offers/monitor-offers/samsung-monitor-offers"><span>Samsung Monitor Offers</span></a></li></ul></li><li class="level1 nav-1-10 category-item"><a href="https://www.technoworld.com/special-offers/microsoft-office"><span>Microsoft Office</span></a></li><li class="level1 nav-1-11 category-item"><a href="https://www.technoworld.com/special-offers/keyboard-offers"><span>Keyboard Offers</span></a></li><li class="level1 nav-1-12 category-item"><a href="https://www.technoworld.com/special-offers/printer-offers"><span>Printer Offers</span></a></li><li class="level1 nav-1-13 category-item last parent"><a href="https://www.technoworld.com/special-offers/brands"><span>Brands</span></a><ul class="level1 submenu"><li class="level2 nav-1-13-1 category-item first"><a href="https://www.technoworld.com/special-offers/brands/amd"><span>AMD</span></a></li><li class="level2 nav-1-13-2 category-item"><a href="https://www.technoworld.com/special-offers/brands/asus"><span>Asus</span></a></li><li class="level2 nav-1-13-3 category-item"><a href="https://www.technoworld.com/special-offers/brands/dell"><span>Dell</span></a></li><li class="level2 nav-1-13-4 category-item"><a href="https://www.technoworld.com/special-offers/brands/hp"><span>HP</span></a></li><li class="level2 nav-1-13-5 category-item"><a href="https://www.technoworld.com/special-offers/brands/intel"><span>Intel</span></a></li><li class="level2 nav-1-13-6 category-item"><a href="https://www.technoworld.com/special-offers/brands/lenovo"><span>Lenovo</span></a></li><li class="level2 nav-1-13-7 category-item"><a href="https://www.technoworld.com/special-offers/brands/microsoft"><span>Microsoft</span></a></li><li class="level2 nav-1-13-8 category-item last"><a href="https://www.technoworld.com/special-offers/brands/viewsonic"><span>Viewsonic</span></a></li></ul></li></ul></li><li class="level0 nav-2 category-item level-top parent"><a href="https://www.technoworld.com/computing" class="level-top"><span>Computing</span></a><ul class="level0 submenu"><li class="level1 nav-2-1 category-item first"><a href="https://www.technoworld.com/computing/laptops"><span>Laptops</span></a></li><li class="level1 nav-2-2 category-item"><a href="https://www.technoworld.com/computing/gaming-laptops"><span>Gaming Laptops</span></a></li><li class="level1 nav-2-3 category-item parent"><a href="https://www.technoworld.com/computing/laptop-accessories"><span>Laptop Accessories</span></a><ul class="level1 submenu"><li class="level2 nav-2-3-1 category-item first"><a href="https://www.technoworld.com/computing/laptop-accessories/notebook-cases"><span>Notebook Cases</span></a></li><li class="level2 nav-2-3-2 category-item"><a href="https://www.technoworld.com/computing/laptop-accessories/notebook-docks-port-replicators"><span>Notebook Docks & Port Replicators</span></a></li><li class="level2 nav-2-3-3 category-item"><a href="https://www.technoworld.com/computing/laptop-accessories/notebook-cooling-pads"><span>Notebook Cooling Pads</span></a></li><li class="level2 nav-2-3-4 category-item last"><a href="https://www.technoworld.com/computing/laptop-accessories/notebook-arms-stands"><span>Notebook Arms & Stands</span></a></li></ul></li><li class="level1 nav-2-4 category-item parent"><a href="https://www.technoworld.com/computing/tablets"><span>Tablets</span></a><ul class="level1 submenu"><li class="level2 nav-2-4-1 category-item first"><a href="https://www.technoworld.com/computing/tablets/tablet-security-enclosures"><span>tablet security enclosures</span></a></li><li class="level2 nav-2-4-2 category-item last"><a href="https://www.technoworld.com/computing/tablets/tablet-cases"><span>Tablet Cases</span></a></li></ul></li><li class="level1 nav-2-5 category-item"><a href="https://www.technoworld.com/computing/tablet-spare-parts"><span>tablet spare parts</span></a></li><li class="level1 nav-2-6 category-item"><a href="https://www.technoworld.com/computing/all-in-one-pcs-workstations"><span>All-in-One PCs/Workstations</span></a></li><li class="level1 nav-2-7 category-item"><a href="https://www.technoworld.com/computing/embedded-computers"><span>Embedded Computers</span></a></li><li class="level1 nav-2-8 category-item"><a href="https://www.technoworld.com/computing/pcs-workstations"><span>PCs/Desktops/Workstations</span></a></li><li class="level1 nav-2-9 category-item parent"><a href="https://www.technoworld.com/computing/tvs-monitors"><span>TVs & Monitors</span></a><ul class="level1 submenu"><li class="level2 nav-2-9-1 category-item first"><a href="https://www.technoworld.com/computing/tvs-monitors/pc-monitors"><span>PC Monitors</span></a></li><li class="level2 nav-2-9-2 category-item parent"><a href="https://www.technoworld.com/computing/tvs-monitors/monitor-parts-accessories"><span>Monitor Parts & Accessories</span></a><ul class="level2 submenu"><li class="level3 nav-2-9-2-1 category-item first last"><a href="https://www.technoworld.com/computing/tvs-monitors/monitor-parts-accessories/display-privacy-filter-accessories"><span>Display Privacy Filter Accessories</span></a></li></ul></li><li class="level2 nav-2-9-3 category-item"><a href="https://www.technoworld.com/computing/tvs-monitors/desktop-sit-stand-workplaces"><span>desktop sit-stand workplaces</span></a></li><li class="level2 nav-2-9-4 category-item"><a href="https://www.technoworld.com/computing/tvs-monitors/flat-panel-wall-mounts"><span>Flat Panel Wall Mounts</span></a></li><li class="level2 nav-2-9-5 category-item"><a href="https://www.technoworld.com/computing/tvs-monitors/hospitality-tvs"><span>Head mounted displays</span></a></li><li class="level2 nav-2-9-6 category-item"><a href="https://www.technoworld.com/computing/tvs-monitors/wall-ceiling-mounts-accessories"><span>Wall & Ceiling Mounts Accessories</span></a></li><li class="level2 nav-2-9-7 category-item last"><a href="https://www.technoworld.com/computing/tvs-monitors/monitors/touch-control-panels"><span>touch control panels</span></a></li></ul></li><li class="level1 nav-2-10 category-item"><a href="https://www.technoworld.com/computing/servers"><span>Servers</span></a></li><li class="level1 nav-2-11 category-item"><a href="https://www.technoworld.com/computing/handheld-mobile-computer-accessories"><span>Handheld Mobile Computer Accessories</span></a></li><li class="level1 nav-2-12 category-item"><a href="https://www.technoworld.com/computing/handheld-mobile-computer-cases"><span>Handheld Mobile Computer Cases</span></a></li><li class="level1 nav-2-13 category-item"><a href="https://www.technoworld.com/computing/thin-clients"><span>Thin Clients</span></a></li><li class="level1 nav-2-14 category-item"><a href="https://www.technoworld.com/computing/kids-tablets"><span>Kids' Tablets</span></a></li><li class="level1 nav-2-15 category-item parent"><a href="https://www.technoworld.com/computing/projectors"><span>Projectors</span></a><ul class="level1 submenu"><li class="level2 nav-2-15-1 category-item first"><a href="https://www.technoworld.com/computing/projectors/data-projectors"><span>Data Projectors</span></a></li><li class="level2 nav-2-15-2 category-item"><a href="https://www.technoworld.com/computing/projectors/laser-pointers"><span>Laser Pointers</span></a></li><li class="level2 nav-2-15-3 category-item"><a href="https://www.technoworld.com/computing/projectors/overhead-projectors"><span>Overhead Projectors</span></a></li><li class="level2 nav-2-15-4 category-item"><a href="https://www.technoworld.com/computing/projectors/projection-lenses"><span>Projection Lenses</span></a></li><li class="level2 nav-2-15-5 category-item"><a href="https://www.technoworld.com/computing/projectors/projector-accessories"><span>Projector Accessories</span></a></li><li class="level2 nav-2-15-6 category-item"><a href="https://www.technoworld.com/computing/projectors/projector-cases"><span>Projector Cases</span></a></li><li class="level2 nav-2-15-7 category-item"><a href="https://www.technoworld.com/computing/projectors/projector-lamps"><span>Projector Lamps</span></a></li><li class="level2 nav-2-15-8 category-item last parent"><a href="https://www.technoworld.com/computing/projectors/projector-mounts"><span>Projector Mounts</span></a><ul class="level2 submenu"><li class="level3 nav-2-15-8-1 category-item first last"><a href="https://www.technoworld.com/computing/projectors/projector-mounts/projector-mount-accessories"><span>projector mount accessories</span></a></li></ul></li></ul></li><li class="level1 nav-2-16 category-item"><a href="https://www.technoworld.com/computing/kids-tablet-accessories"><span>Kids' Tablet Accessories</span></a></li><li class="level1 nav-2-17 category-item parent"><a href="https://www.technoworld.com/computing/warranty-support"><span>Warranty & Support</span></a><ul class="level1 submenu"><li class="level2 nav-2-17-1 category-item first last"><a href="https://www.technoworld.com/computing/warranty-support/warranty-support-extensions"><span>warranty & support extensions</span></a></li></ul></li><li class="level1 nav-2-18 category-item"><a href="https://www.technoworld.com/computing/signature-capture-pads"><span>Signature Capture Pads</span></a></li><li class="level1 nav-2-19 category-item parent"><a href="https://www.technoworld.com/computing/notebook-parts-accessories"><span>Notebook Parts & Accessories</span></a><ul class="level1 submenu"><li class="level2 nav-2-19-1 category-item first last"><a href="https://www.technoworld.com/computing/notebook-parts-accessories/notebook-spare-parts"><span>notebook spare parts</span></a></li></ul></li><li class="level1 nav-2-20 category-item"><a href="https://www.technoworld.com/computing/refurbished-laptops"><span>Refurbished Laptops</span></a></li><li class="level1 nav-2-21 category-item"><a href="https://www.technoworld.com/computing/pc-security-enclosures"><span>PC Security Enclosures</span></a></li><li class="level1 nav-2-22 category-item"><a href="https://www.technoworld.com/computing/pos-system-accessories"><span>POS System Accessories</span></a></li><li class="level1 nav-2-23 category-item last"><a href="https://www.technoworld.com/computing/tablet-screen-protectors"><span>Tablet Screen Protectors</span></a></li></ul></li><li class="level0 nav-3 category-item level-top parent"><a href="https://www.technoworld.com/printers" class="level-top"><span>Printers</span></a><ul class="level0 submenu"><li class="level1 nav-3-1 category-item first"><a href="https://www.technoworld.com/printers/multifunctionals"><span>Multifunctionals</span></a></li><li class="level1 nav-3-2 category-item"><a href="https://www.technoworld.com/printers/handheld-printer-accessories"><span>Handheld Printer Accessories</span></a></li><li class="level1 nav-3-3 category-item"><a href="https://www.technoworld.com/printers/inkjet-printers"><span>Inkjet Printers</span></a></li><li class="level1 nav-3-4 category-item"><a href="https://www.technoworld.com/printers/3d-scanners"><span>3D Scanners</span></a></li><li class="level1 nav-3-5 category-item"><a href="https://www.technoworld.com/printers/photo-printers"><span>Photo Printers</span></a></li><li class="level1 nav-3-6 category-item"><a href="https://www.technoworld.com/printers/laser-led-printers"><span>Laser/LED Printers</span></a></li><li class="level1 nav-3-7 category-item"><a href="https://www.technoworld.com/printers/pos-mobile-printers"><span>POS/Mobile Printers</span></a></li><li class="level1 nav-3-8 category-item"><a href="https://www.technoworld.com/printers/large-format-printers"><span>Large Format Printers</span></a></li><li class="level1 nav-3-9 category-item"><a href="https://www.technoworld.com/printers/label-printers"><span>Label Printers</span></a></li><li class="level1 nav-3-10 category-item"><a href="https://www.technoworld.com/printers/scanners"><span>Scanners</span></a></li><li class="level1 nav-3-11 category-item parent"><a href="https://www.technoworld.com/printers/printing-supplies"><span>Printing Supplies</span></a><ul class="level1 submenu"><li class="level2 nav-3-11-1 category-item first"><a href="https://www.technoworld.com/printers/printing-supplies/developer-units"><span>Developer Units</span></a></li><li class="level2 nav-3-11-2 category-item"><a href="https://www.technoworld.com/printers/printing-supplies/imaging-units"><span>Imaging Units</span></a></li><li class="level2 nav-3-11-3 category-item"><a href="https://www.technoworld.com/printers/printing-supplies/ink-cartridges"><span>Ink Cartridges</span></a></li><li class="level2 nav-3-11-4 category-item"><a href="https://www.technoworld.com/printers/printing-supplies/laser-toner-cartridges"><span>Laser Toner & Cartridges</span></a></li><li class="level2 nav-3-11-5 category-item"><a href="https://www.technoworld.com/printers/printing-supplies/print-heads"><span>Print Heads</span></a></li><li class="level2 nav-3-11-6 category-item"><a href="https://www.technoworld.com/printers/printing-supplies/printer-cleaning"><span>Printer Cleaning</span></a></li><li class="level2 nav-3-11-7 category-item"><a href="https://www.technoworld.com/printers/printing-supplies/printer-drums"><span>Printer Drums</span></a></li><li class="level2 nav-3-11-8 category-item"><a href="https://www.technoworld.com/printers/printing-supplies/printer-kits"><span>Printer Kits</span></a></li><li class="level2 nav-3-11-9 category-item"><a href="https://www.technoworld.com/printers/printing-supplies/printer-ribbons"><span>Printer Ribbons</span></a></li><li class="level2 nav-3-11-10 category-item"><a href="https://www.technoworld.com/printers/printing-supplies/printer-rollers"><span>Printer Rollers</span></a></li><li class="level2 nav-3-11-11 category-item"><a href="https://www.technoworld.com/printers/printing-supplies/thermal-ribbon"><span>Thermal Ribbon</span></a></li><li class="level2 nav-3-11-12 category-item last"><a href="https://www.technoworld.com/printers/printing-supplies/toner-collectors"><span>Toner Collectors</span></a></li></ul></li><li class="level1 nav-3-12 category-item parent"><a href="https://www.technoworld.com/printers/printing-media"><span>Printing Media</span></a><ul class="level1 submenu"><li class="level2 nav-3-12-1 category-item first"><a href="https://www.technoworld.com/printers/printing-media/bar-code-labels"><span>Bar Code Labels</span></a></li><li class="level2 nav-3-12-2 category-item"><a href="https://www.technoworld.com/printers/printing-media/large-format-media"><span>Large Format Media</span></a></li><li class="level2 nav-3-12-3 category-item"><a href="https://www.technoworld.com/printers/printing-media/photo-paper"><span>Photo Paper</span></a></li><li class="level2 nav-3-12-4 category-item"><a href="https://www.technoworld.com/printers/printing-media/plotter-paper"><span>Plotter Paper</span></a></li><li class="level2 nav-3-12-5 category-item"><a href="https://www.technoworld.com/printers/printing-media/printer-labels"><span>Printer Labels</span></a></li><li class="level2 nav-3-12-6 category-item"><a href="https://www.technoworld.com/printers/printing-media/printing-paper"><span>Printing Paper</span></a></li><li class="level2 nav-3-12-7 category-item last"><a href="https://www.technoworld.com/printers/printing-media/thermal-paper"><span>Thermal Paper</span></a></li></ul></li><li class="level1 nav-3-13 category-item last parent"><a href="https://www.technoworld.com/printers/print-scan-accessories"><span>Print & Scan Accessories</span></a><ul class="level1 submenu"><li class="level2 nav-3-13-1 category-item first"><a href="https://www.technoworld.com/printers/print-scan-accessories/duplex-units"><span>Duplex Units</span></a></li><li class="level2 nav-3-13-2 category-item"><a href="https://www.technoworld.com/printers/print-scan-accessories/printing-equipment/3d-pen-accessories"><span>3D Pen Accessories</span></a></li><li class="level2 nav-3-13-3 category-item"><a href="https://www.technoworld.com/printers/print-scan-accessories/fusers"><span>Fusers</span></a></li><li class="level2 nav-3-13-4 category-item"><a href="https://www.technoworld.com/printers/print-scan-accessories/media-spindles"><span>Media Spindles</span></a></li><li class="level2 nav-3-13-5 category-item"><a href="https://www.technoworld.com/printers/print-scan-accessories/multi-bin-mailboxes"><span>Multi-bin-Mailboxes</span></a></li><li class="level2 nav-3-13-6 category-item"><a href="https://www.technoworld.com/printers/print-scan-accessories/output-stackers"><span>Output Stackers</span></a></li><li class="level2 nav-3-13-7 category-item"><a href="https://www.technoworld.com/printers/print-scan-accessories/printer-belts"><span>Printer Belts</span></a></li><li class="level2 nav-3-13-8 category-item"><a href="https://www.technoworld.com/printers/print-scan-accessories/printer-cables"><span>Printer Cables</span></a></li><li class="level2 nav-3-13-9 category-item"><a href="https://www.technoworld.com/printers/print-scan-accessories/printer-memory"><span>Printer Memory</span></a></li><li class="level2 nav-3-13-10 category-item"><a href="https://www.technoworld.com/printers/print-scan-accessories/printers-scanners-spare-parts"><span>Printers/Scanners Spare Parts</span></a></li><li class="level2 nav-3-13-11 category-item"><a href="https://www.technoworld.com/printers/print-scan-accessories/scanner-accessories"><span>scanner accessories</span></a></li><li class="level2 nav-3-13-12 category-item"><a href="https://www.technoworld.com/printers/print-scan-accessories/scanners-transparancy-adapters"><span>Scanners Transparancy Adapters</span></a></li><li class="level2 nav-3-13-13 category-item last"><a href="https://www.technoworld.com/printers/print-scan-accessories/trays-feeders"><span>Trays & Feeders</span></a></li></ul></li></ul></li><li class="level0 nav-4 category-item level-top parent"><a href="https://www.technoworld.com/peripherals" class="level-top"><span>Peripherals</span></a><ul class="level0 submenu"><li class="level1 nav-4-1 category-item first"><a href="https://www.technoworld.com/peripherals/headsets"><span>Headsets</span></a></li><li class="level1 nav-4-2 category-item parent"><a href="https://www.technoworld.com/peripherals/computer-components"><span>Computer Components</span></a><ul class="level1 submenu"><li class="level2 nav-4-2-1 category-item first parent"><a href="https://www.technoworld.com/peripherals/computer-components/system-components"><span>System Components</span></a><ul class="level2 submenu"><li class="level3 nav-4-2-1-1 category-item first"><a href="https://www.technoworld.com/peripherals/computer-components/system-components/audio-cards"><span>audio cards</span></a></li><li class="level3 nav-4-2-1-2 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/system-components/development-board-accessories"><span>development board accessories</span></a></li><li class="level3 nav-4-2-1-3 category-item parent"><a href="https://www.technoworld.com/peripherals/computer-components/system-components/graphics-cards"><span>graphics cards</span></a><ul class="level3 submenu"><li class="level4 nav-4-2-1-3-1 category-item first last"><a href="https://www.technoworld.com/peripherals/computer-components/system-components/graphics-cards/graphics-card-bridges"><span>graphics card bridges</span></a></li></ul></li><li class="level3 nav-4-2-1-4 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/system-components/interface-cards-adapters"><span>interface cards/adapters</span></a></li><li class="level3 nav-4-2-1-5 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/system-components/internal-hard-drives"><span>Internal hard drives</span></a></li><li class="level3 nav-4-2-1-6 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/system-components/memory-modules"><span>memory modules</span></a></li><li class="level3 nav-4-2-1-7 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/system-components/networking-cards"><span>networking cards</span></a></li><li class="level3 nav-4-2-1-8 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/system-components/peripheral-controllers"><span>peripheral controllers</span></a></li><li class="level3 nav-4-2-1-9 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/system-components/processors"><span>processors</span></a></li><li class="level3 nav-4-2-1-10 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/system-components/raid-controllers"><span>RAID controllers</span></a></li><li class="level3 nav-4-2-1-11 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/system-components/raid-controller-accessories"><span>RAID Controller Accessories</span></a></li><li class="level3 nav-4-2-1-12 category-item last"><a href="https://www.technoworld.com/peripherals/computer-components/system-components/trusted-platform-modules-tpms"><span>Trusted Platform Modules (TPMs)</span></a></li></ul></li><li class="level2 nav-4-2-2 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/mobile-device-dock-station-accessories"><span>Mobile Device Dock Station Accessories</span></a></li><li class="level2 nav-4-2-3 category-item parent"><a href="https://www.technoworld.com/peripherals/computer-components/chassis-components"><span>Chassis Components</span></a><ul class="level2 submenu"><li class="level3 nav-4-2-3-1 category-item first"><a href="https://www.technoworld.com/peripherals/computer-components/chassis-components/computer-case-parts"><span>computer case parts</span></a></li><li class="level3 nav-4-2-3-2 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/chassis-components/computer-cases"><span>computer cases</span></a></li><li class="level3 nav-4-2-3-3 category-item parent"><a href="https://www.technoworld.com/peripherals/computer-components/chassis-components/computer-cooling-components"><span>computer cooling components</span></a><ul class="level3 submenu"><li class="level4 nav-4-2-3-3-1 category-item first"><a href="https://www.technoworld.com/peripherals/computer-components/chassis-components/computer-cooling-components/hardware-cooling-accessories"><span>hardware cooling accessories</span></a></li><li class="level4 nav-4-2-3-3-2 category-item last"><a href="https://www.technoworld.com/peripherals/computer-components/chassis-components/computer-cooling-components/heat-sink-compounds"><span>heat sink compounds</span></a></li></ul></li><li class="level3 nav-4-2-3-4 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/chassis-components/console-extenders"><span>console extenders</span></a></li><li class="level3 nav-4-2-3-5 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/chassis-components/drive-bay-panels"><span>drive bay panels</span></a></li><li class="level3 nav-4-2-3-6 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/chassis-components/fan-speed-controllers"><span>fan speed controllers</span></a></li><li class="level3 nav-4-2-3-7 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/chassis-components/hdd-enclosures"><span>HDD enclosures</span></a></li><li class="level3 nav-4-2-3-8 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/chassis-components/mounting-kits"><span>mounting kits</span></a></li><li class="level3 nav-4-2-3-9 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/chassis-components/notebook-spare-parts"><span>Notebook Spare Parts</span></a></li><li class="level3 nav-4-2-3-10 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/chassis-components/led-lighting-controllers"><span>LED Lighting Controllers</span></a></li><li class="level3 nav-4-2-3-11 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/chassis-components/rack-consoles"><span>rack consoles</span></a></li><li class="level3 nav-4-2-3-12 category-item parent"><a href="https://www.technoworld.com/peripherals/computer-components/chassis-components/racks"><span>racks</span></a><ul class="level3 submenu"><li class="level4 nav-4-2-3-12-1 category-item first last"><a href="https://www.technoworld.com/peripherals/computer-components/chassis-components/racks/rack-accessories"><span>rack accessories</span></a></li></ul></li><li class="level3 nav-4-2-3-13 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/chassis-components/slot-expanders"><span>slot expanders</span></a></li><li class="level3 nav-4-2-3-14 category-item last"><a href="https://www.technoworld.com/peripherals/computer-components/chassis-components/rack-cooling-equipment"><span>Rack Cooling Equipment</span></a></li></ul></li><li class="level2 nav-4-2-4 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/cpu-holders"><span>CPU Holders</span></a></li><li class="level2 nav-4-2-5 category-item last parent"><a href="https://www.technoworld.com/peripherals/computer-components/interface-components"><span>Interface Components</span></a><ul class="level2 submenu"><li class="level3 nav-4-2-5-1 category-item first"><a href="https://www.technoworld.com/peripherals/computer-components/interface-components/channel-converters"><span>Channel converters</span></a></li><li class="level3 nav-4-2-5-2 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/interface-components/computer-data-switches"><span>computer data switches</span></a></li><li class="level3 nav-4-2-5-3 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/interface-components/digital-analog-i-o-modules"><span>digital & analog I/O modules</span></a></li><li class="level3 nav-4-2-5-4 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/interface-components/interface-hubs"><span>interface hubs</span></a></li><li class="level3 nav-4-2-5-5 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/interface-components/serial-convereters-repeaters-isolators"><span>serial convereters /repeaters /isolators</span></a></li><li class="level3 nav-4-2-5-6 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/interface-components/serial-converters-repeaters-isolators"><span>serial converters/repeaters/isolators</span></a></li><li class="level3 nav-4-2-5-7 category-item"><a href="https://www.technoworld.com/peripherals/computer-components/interface-components/serial-servers"><span>serial servers</span></a></li><li class="level3 nav-4-2-5-8 category-item last"><a href="https://www.technoworld.com/peripherals/computer-components/interface-components/serial-switches-boxes"><span>serial switches boxes</span></a></li></ul></li></ul></li><li class="level1 nav-4-3 category-item parent"><a href="https://www.technoworld.com/peripherals/computer-cables"><span>Computer Cables</span></a><ul class="level1 submenu"><li class="level2 nav-4-3-1 category-item first"><a href="https://www.technoworld.com/peripherals/computer-cables/av-cables"><span>Av Cables</span></a></li><li class="level2 nav-4-3-2 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/cable-clamps"><span>Cable Clamps</span></a></li><li class="level2 nav-4-3-3 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/cable-insulation"><span>Cable Insulation</span></a></li><li class="level2 nav-4-3-4 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/cable-boots"><span>Cable Boots</span></a></li><li class="level2 nav-4-3-5 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/cable-interface-gender-adapters"><span>Cable Interface/Gender Adapters</span></a></li><li class="level2 nav-4-3-6 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/cable-splitters-or-combiners"><span>Cable Splitters or Combiners</span></a></li><li class="level2 nav-4-3-7 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/cable-ties"><span>Cable Ties</span></a></li><li class="level2 nav-4-3-8 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/dvi-cables"><span>DVI Cables</span></a></li><li class="level2 nav-4-3-9 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/displayport-cables"><span>DisplayPort Cables</span></a></li><li class="level2 nav-4-3-10 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/infiniband-cables"><span>InfiniBand Cables</span></a></li><li class="level2 nav-4-3-11 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/kvm-cables"><span>KVM Cables</span></a></li><li class="level2 nav-4-3-12 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/hdmi-cables"><span>HDMI Cables</span></a></li><li class="level2 nav-4-3-13 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/power-cables"><span>Power Cables</span></a></li><li class="level2 nav-4-3-14 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/ps-2-cables"><span>PS/2 Cables</span></a></li><li class="level2 nav-4-3-15 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/sata-cables"><span>SATA Cables</span></a></li><li class="level2 nav-4-3-16 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/serial-attached-scsi-sas-cables"><span>Serial Attached SCSI (SAS) Cables</span></a></li><li class="level2 nav-4-3-17 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/serial-cables"><span>Serial Cables</span></a></li><li class="level2 nav-4-3-18 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/signal-cables"><span>Signal Cables</span></a></li><li class="level2 nav-4-3-19 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/thunderbolt-cables"><span>Thunderbolt Cables</span></a></li><li class="level2 nav-4-3-20 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/usb-cables"><span>USB Cables</span></a></li><li class="level2 nav-4-3-21 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/scart-cables"><span>SCART cables</span></a></li><li class="level2 nav-4-3-22 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/wire-connectors"><span>Wire Connectors</span></a></li><li class="level2 nav-4-3-23 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/scsi-cables"><span>SCSI Cables</span></a></li><li class="level2 nav-4-3-24 category-item"><a href="https://www.technoworld.com/peripherals/computer-cables/vga-cables"><span>VGA Cables</span></a></li><li class="level2 nav-4-3-25 category-item last"><a href="https://www.technoworld.com/peripherals/computer-cables/s-video-cables"><span>S-video cables</span></a></li></ul></li><li class="level1 nav-4-4 category-item"><a href="https://www.technoworld.com/peripherals/graphic-tablets-accessories"><span>Graphic Tablets Accessories</span></a></li><li class="level1 nav-4-5 category-item"><a href="https://www.technoworld.com/peripherals/graphic-tablets"><span>Graphic Tablets</span></a></li><li class="level1 nav-4-6 category-item parent"><a href="https://www.technoworld.com/peripherals/keyboards"><span>Keyboards</span></a><ul class="level1 submenu"><li class="level2 nav-4-6-1 category-item first last"><a href="https://www.technoworld.com/peripherals/keyboards/input-device-accessories"><span>Input Device Accessories</span></a></li></ul></li><li class="level1 nav-4-7 category-item"><a href="https://www.technoworld.com/peripherals/kvm-switches"><span>KVM Switches</span></a></li><li class="level1 nav-4-8 category-item"><a href="https://www.technoworld.com/peripherals/mice"><span>Mice</span></a></li><li class="level1 nav-4-9 category-item"><a href="https://www.technoworld.com/peripherals/numeric-keypads"><span>numeric keypads</span></a></li><li class="level1 nav-4-10 category-item"><a href="https://www.technoworld.com/peripherals/other-input-devices"><span>Other Input Devices</span></a></li><li class="level1 nav-4-11 category-item"><a href="https://www.technoworld.com/peripherals/touch-pads"><span>Touch Pads</span></a></li><li class="level1 nav-4-12 category-item"><a href="https://www.technoworld.com/peripherals/wireless-presenters"><span>Wireless Presenters</span></a></li><li class="level1 nav-4-13 category-item"><a href="https://www.technoworld.com/peripherals/wrist-rests"><span>Wrist Rests</span></a></li><li class="level1 nav-4-14 category-item"><a href="https://www.technoworld.com/peripherals/cable-lock-anti-theft"><span>Cable Lock / Anti Theft</span></a></li><li class="level1 nav-4-15 category-item last"><a href="https://www.technoworld.com/peripherals/webcam"><span>Webcam</span></a></li></ul></li><li class="level0 nav-5 category-item level-top parent"><a href="https://www.technoworld.com/storage" class="level-top"><span>Storage</span></a><ul class="level0 submenu"><li class="level1 nav-5-1 category-item first parent"><a href="https://www.technoworld.com/storage/data-storage-devices"><span>Data Storage Devices</span></a><ul class="level1 submenu"><li class="level2 nav-5-1-1 category-item first"><a href="https://www.technoworld.com/storage/data-storage-devices/card-readers"><span>Card Readers</span></a></li><li class="level2 nav-5-1-2 category-item"><a href="https://www.technoworld.com/storage/data-storage-devices/disk-arrays"><span>Disk Arrays</span></a></li><li class="level2 nav-5-1-3 category-item"><a href="https://www.technoworld.com/storage/data-storage-devices/external-hard-drives"><span>External Hard Drives</span></a></li><li class="level2 nav-5-1-4 category-item"><a href="https://www.technoworld.com/storage/data-storage-devices/disk-drive-erasers"><span>disk drive erasers</span></a></li><li class="level2 nav-5-1-5 category-item"><a href="https://www.technoworld.com/storage/data-storage-devices/flash-memory"><span>Flash Memory</span></a></li><li class="level2 nav-5-1-6 category-item"><a href="https://www.technoworld.com/storage/data-storage-devices/hdd-ssd-cases"><span>HDD/SSD Cases</span></a></li><li class="level2 nav-5-1-7 category-item"><a href="https://www.technoworld.com/storage/data-storage-devices/external-solid-state-drives"><span>external solid state drives</span></a></li><li class="level2 nav-5-1-8 category-item"><a href="https://www.technoworld.com/storage/data-storage-devices/hdd-ssd-docking-stations"><span>HDD/SSD Docking Stations</span></a></li><li class="level2 nav-5-1-9 category-item"><a href="https://www.technoworld.com/storage/data-storage-devices/media-duplicators"><span>Media Duplicators</span></a></li><li class="level2 nav-5-1-10 category-item"><a href="https://www.technoworld.com/storage/data-storage-devices/nas-storage-servers"><span>NAS & Storage Servers</span></a></li><li class="level2 nav-5-1-11 category-item"><a href="https://www.technoworld.com/storage/data-storage-devices/optical-disc-drives"><span>Optical Disc Drives</span></a></li><li class="level2 nav-5-1-12 category-item"><a href="https://www.technoworld.com/storage/data-storage-devices/solid-state-drives"><span>Solid State Drives</span></a></li><li class="level2 nav-5-1-13 category-item"><a href="https://www.technoworld.com/storage/data-storage-devices/personal-cloud-storage-devices"><span>personal cloud storage devices</span></a></li><li class="level2 nav-5-1-14 category-item"><a href="https://www.technoworld.com/storage/data-storage-devices/tape-drives"><span>Tape Drives</span></a></li><li class="level2 nav-5-1-15 category-item last"><a href="https://www.technoworld.com/storage/data-storage-devices/usb-flash-drives"><span>USB Flash Drives</span></a></li></ul></li><li class="level1 nav-5-2 category-item last parent"><a href="https://www.technoworld.com/storage/data-storage-mediums"><span>Data Storage Mediums</span></a><ul class="level1 submenu"><li class="level2 nav-5-2-1 category-item first"><a href="https://www.technoworld.com/storage/data-storage-mediums/audio-video-cassettes"><span>audio/video cassettes</span></a></li><li class="level2 nav-5-2-2 category-item"><a href="https://www.technoworld.com/storage/data-storage-mediums/blank-blu-ray-discs"><span>blank Blu-Ray discs</span></a></li><li class="level2 nav-5-2-3 category-item"><a href="https://www.technoworld.com/storage/data-storage-mediums/blank-cds"><span>blank CDs</span></a></li><li class="level2 nav-5-2-4 category-item"><a href="https://www.technoworld.com/storage/data-storage-mediums/blank-data-tapes"><span>blank data tapes</span></a></li><li class="level2 nav-5-2-5 category-item"><a href="https://www.technoworld.com/storage/data-storage-mediums/blank-dvds"><span>blank DVDs</span></a></li><li class="level2 nav-5-2-6 category-item"><a href="https://www.technoworld.com/storage/data-storage-mediums/cleaning-media"><span>cleaning media</span></a></li><li class="level2 nav-5-2-7 category-item"><a href="https://www.technoworld.com/storage/data-storage-mediums/magneto-optical-disks"><span>Magneto optical disks</span></a></li><li class="level2 nav-5-2-8 category-item"><a href="https://www.technoworld.com/storage/data-storage-mediums/optical-disc-cases"><span>optical disc cases</span></a></li><li class="level2 nav-5-2-9 category-item last"><a href="https://www.technoworld.com/storage/data-storage-mediums/storage-media-labels"><span>storage media labels</span></a></li></ul></li></ul></li><li class="level0 nav-6 category-item level-top parent"><a href="https://www.technoworld.com/networking" class="level-top"><span>Networking</span></a><ul class="level0 submenu"><li class="level1 nav-6-1 category-item first parent"><a href="https://www.technoworld.com/networking/telecom-navigation"><span>Telecom & Navigation</span></a><ul class="level1 submenu"><li class="level2 nav-6-1-1 category-item first parent"><a href="https://www.technoworld.com/networking/telecom-navigation/conference-equipment"><span>Conference Equipment</span></a><ul class="level2 submenu"><li class="level3 nav-6-1-1-1 category-item first"><a href="https://www.technoworld.com/networking/telecom-navigation/conference-equipment/meeting-room-consoles"><span>Meeting Room Consoles</span></a></li><li class="level3 nav-6-1-1-2 category-item"><a href="https://www.technoworld.com/networking/telecom-navigation/conference-equipment/conference-phones"><span>conference phones</span></a></li><li class="level3 nav-6-1-1-3 category-item"><a href="https://www.technoworld.com/networking/telecom-navigation/conference-equipment/audio-conferencing-systems"><span>Audio Conferencing Systems</span></a></li><li class="level3 nav-6-1-1-4 category-item last"><a href="https://www.technoworld.com/networking/telecom-navigation/conference-equipment/meeting-room-displays"><span>Meeting Room Displays</span></a></li></ul></li><li class="level2 nav-6-1-2 category-item"><a href="https://www.technoworld.com/networking/telecom-navigation/ip-phones"><span>IP Phones</span></a></li><li class="level2 nav-6-1-3 category-item parent"><a href="https://www.technoworld.com/networking/telecom-navigation/telecommunication-equipment-accessories"><span>Telecommunication Equipment Accessories</span></a><ul class="level2 submenu"><li class="level3 nav-6-1-3-1 category-item first"><a href="https://www.technoworld.com/networking/telecom-navigation/telecommunication-equipment-accessories/wireless-presentation-system-accessories"><span>Wireless Presentation System Accessories</span></a></li><li class="level3 nav-6-1-3-2 category-item"><a href="https://www.technoworld.com/networking/telecom-navigation/telecommunication-equipment-accessories/key-finder-accessories"><span>Key Finder Accessories</span></a></li><li class="level3 nav-6-1-3-3 category-item last parent"><a href="https://www.technoworld.com/networking/telecom-navigation/telecommunication-equipment-accessories/personal-communication-device-parts-accessories"><span>Personal Communication Device Parts & Accessories</span></a><ul class="level3 submenu"><li class="level4 nav-6-1-3-3-1 category-item first"><a href="https://www.technoworld.com/networking/telecom-navigation/telecommunication-equipment-accessories/personal-communication-device-parts-accessories/smartphones-mobile-phones-accessories"><span>Smartphones & Mobile Phones Accessories</span></a></li><li class="level4 nav-6-1-3-3-2 category-item last"><a href="https://www.technoworld.com/networking/telecom-navigation/telecommunication-equipment-accessories/personal-communication-device-parts-accessories/mobile-phone-case-accessories"><span>Mobile Phone Case Accessories</span></a></li></ul></li></ul></li><li class="level2 nav-6-1-4 category-item"><a href="https://www.technoworld.com/networking/telecom-navigation/personal-communication-devices"><span>Personal Communication Devices</span></a></li><li class="level2 nav-6-1-5 category-item parent"><a href="https://www.technoworld.com/networking/telecom-navigation/smartphones"><span>Smartphones</span></a><ul class="level2 submenu"><li class="level3 nav-6-1-5-1 category-item first last"><a href="https://www.technoworld.com/networking/telecom-navigation/smartphones/selfie-sticks"><span>selfie sticks</span></a></li></ul></li><li class="level2 nav-6-1-6 category-item"><a href="https://www.technoworld.com/networking/telecom-navigation/telephony-equipment"><span>Telephony Equipment</span></a></li><li class="level2 nav-6-1-7 category-item last parent"><a href="https://www.technoworld.com/networking/telecom-navigation/navigational-equipment"><span>Navigational Equipment</span></a><ul class="level2 submenu"><li class="level3 nav-6-1-7-1 category-item first"><a href="https://www.technoworld.com/networking/telecom-navigation/navigational-equipment/key-finders"><span>Key Finders</span></a></li><li class="level3 nav-6-1-7-2 category-item last"><a href="https://www.technoworld.com/networking/telecom-navigation/navigational-equipment/navigational-compasses"><span>Navigational Compasses</span></a></li></ul></li></ul></li><li class="level1 nav-6-2 category-item"><a href="https://www.technoworld.com/networking/network-connectivity-installation"><span>Network Connectivity Installation</span></a></li><li class="level1 nav-6-3 category-item"><a href="https://www.technoworld.com/networking/wireless-routers"><span>wireless routers</span></a></li><li class="level1 nav-6-4 category-item parent"><a href="https://www.technoworld.com/networking/network-management-monitoring"><span>Network Management & Monitoring</span></a><ul class="level1 submenu"><li class="level2 nav-6-4-1 category-item first last"><a href="https://www.technoworld.com/networking/network-management-monitoring/wireless-network-testers"><span>Wireless Network Testers</span></a></li></ul></li><li class="level1 nav-6-5 category-item last parent"><a href="https://www.technoworld.com/networking/network-service-equipment"><span>Network Service Equipment</span></a><ul class="level1 submenu"><li class="level2 nav-6-5-1 category-item first"><a href="https://www.technoworld.com/networking/network-service-equipment/mesh-wi-fi-systems"><span>Mesh Wi-Fi Systems</span></a></li><li class="level2 nav-6-5-2 category-item"><a href="https://www.technoworld.com/networking/network-service-equipment/touch-panel-interfaces"><span>Touch Panel Interfaces</span></a></li><li class="level2 nav-6-5-3 category-item last"><a href="https://www.technoworld.com/networking/network-service-equipment/wi-fi-signal-boosters"><span>Wi-Fi Signal Boosters</span></a></li></ul></li></ul></li><li class="level0 nav-7 category-item last level-top parent"><a href="https://www.technoworld.com/software" class="level-top"><span>Software</span></a><ul class="level0 submenu"><li class="level1 nav-7-1 category-item first"><a href="https://www.technoworld.com/software/office-suites"><span>Office Suites</span></a></li><li class="level1 nav-7-2 category-item parent"><a href="https://www.technoworld.com/software/computer-utilities"><span>Computer Utilities</span></a><ul class="level1 submenu"><li class="level2 nav-7-2-1 category-item first"><a href="https://www.technoworld.com/software/computer-utilities/backup-recovery-software"><span>Backup Recovery Software</span></a></li><li class="level2 nav-7-2-2 category-item"><a href="https://www.technoworld.com/software/computer-utilities/bar-coding-software"><span>Bar Coding Software</span></a></li><li class="level2 nav-7-2-3 category-item"><a href="https://www.technoworld.com/catalog/category/view/s/database-software/id/586/"><span>Database Software</span></a></li><li class="level2 nav-7-2-4 category-item"><a href="https://www.technoworld.com/software/computer-utilities/database-software"><span>Database Software</span></a></li><li class="level2 nav-7-2-5 category-item"><a href="https://www.technoworld.com/software/computer-utilities/general-utility-software"><span>General Utility Software</span></a></li><li class="level2 nav-7-2-6 category-item"><a href="https://www.technoworld.com/software/computer-utilities/print-utilities"><span>Print Utilities</span></a></li><li class="level2 nav-7-2-7 category-item"><a href="https://www.technoworld.com/software/computer-utilities/system-management-software"><span>System Management Software</span></a></li><li class="level2 nav-7-2-8 category-item last"><a href="https://www.technoworld.com/software/computer-utilities/security-management-software"><span>Security Management Software</span></a></li></ul></li><li class="level1 nav-7-3 category-item"><a href="https://www.technoworld.com/software/document-management-software"><span>Document Management Software</span></a></li><li class="level1 nav-7-4 category-item parent"><a href="https://www.technoworld.com/software/multimedia-software"><span>Multimedia Software</span></a><ul class="level1 submenu"><li class="level2 nav-7-4-1 category-item first"><a href="https://www.technoworld.com/software/multimedia-software/educational-software"><span>Educational Software</span></a></li><li class="level2 nav-7-4-2 category-item last"><a href="https://www.technoworld.com/software/multimedia-software/graphics-software"><span>Graphics Software</span></a></li></ul></li><li class="level1 nav-7-5 category-item"><a href="https://www.technoworld.com/software/presentation-software"><span>Presentation Software</span></a></li><li class="level1 nav-7-6 category-item"><a href="https://www.technoworld.com/software/project-management-software"><span>Project Management Software</span></a></li><li class="level1 nav-7-7 category-item"><a href="https://www.technoworld.com/software/operating-systems"><span>Operating Systems</span></a></li><li class="level1 nav-7-8 category-item last"><a href="https://www.technoworld.com/software/software-licenses-upgrades"><span>Software Licenses/Upgrades</span></a></li></ul></li> <li class="level0 level-top ui-menu-item">
<a href="" class="level-top ui-corner-all" role="menuitem" target="_blank">
<span></span>
</a>
</li>
</ul>
</nav>
</div>
<div class="section-item-title nav-sections-item-title" data-role="collapsible">
<a class="nav-sections-item-switch" data-toggle="switch" href="#store.links">
Account </a>
</div>
<div class="section-item-content nav-sections-item-content" id="store.links" data-role="content">
<!-- Account links --> <ul class="header links"><li><a href="https://www.technoworld.com/about-us/" id="idPAv3uGAg_mobile">About Us</a></li><li><a href="https://www.technoworld.com/sales/guest/form/" id="idJvsddGHY_mobile">Order Status</a></li><li><a href="https://www.technoworld.com/contacts/" id="id6MhRz1NG_mobile">Contact Us</a></li><li><a href="https://www.technoworld.com/delivery-information/" id="idpEin9aCe_mobile">Delivery Information</a></li><li class="link authorization-link" data-label="or">
<a href="https://www.technoworld.com/customer/account/login/referer/aHR0cHM6Ly93d3cudGVjaG5vd29ybGQuY29tL2FtZC1lcHljLTQyNDRwLXByb2Nlc3Nvci0zLTgtZ2h6LTMyLW1iLWwzLTEwMC0wMDAwMDE0ODA~/">Sign In</a>
</li>
<li><a href="https://www.technoworld.com/customer/account/create/" id="id9iKDNXxs_mobile">New Account</a></li></ul></div>
</div>
</div>
<div class="breadcrumbs" style="height:40px"></div>
<script type="text/x-magento-init">
{
".breadcrumbs": {"breadcrumbs":{"categoryUrlSuffix":"","useCategoryPathInUrl":0,"product":"AMD EPYC 4244P processor 3.8 GHz 32 MB L3 100-000001480"}} }
</script><main id="maincontent" class="page-main"><a id="contentarea" tabindex="-1"></a>
<div class="page messages"><div data-placeholder="messages"></div>
<div data-bind="scope: 'messages'">
<!-- ko if: cookieMessages && cookieMessages.length > 0 -->
<div aria-atomic="true" role="alert" data-bind="foreach: { data: cookieMessages, as: 'message' }" class="messages">
<div data-bind="attr: {
class: 'message-' + message.type + ' ' + message.type + ' message',
'data-ui-id': 'message-' + message.type
}">
<div data-bind="html: $parent.prepareMessageForHtml(message.text)"></div>
</div>
</div>
<!-- /ko -->
<!-- ko if: messages().messages && messages().messages.length > 0 -->
<div aria-atomic="true" role="alert" class="messages" data-bind="foreach: {
data: messages().messages, as: 'message'
}">
<div data-bind="attr: {
class: 'message-' + message.type + ' ' + message.type + ' message',
'data-ui-id': 'message-' + message.type
}">
<div data-bind="html: $parent.prepareMessageForHtml(message.text)"></div>
</div>
</div>
<!-- /ko -->
</div>
<script type="text/x-magento-init">
{
"*": {
"Magento_Ui/js/core/app": {
"components": {
"messages": {
"component": "Magento_Theme/js/view/messages"
}
}
}
}
}
</script>
</div><div class="columns"><div class="column main"><div class="product-info-media-main"><div class="product media"><a id="gallery-prev-area" tabindex="-1"></a>
<div class="action-skip-wrapper"><a class="action skip gallery-next-area" href="#gallery-next-area">
<span>
Skip to the end of the images gallery </span>
</a>
</div><div class="image-wrapper-height gallery-placeholder _block-content-loading" data-gallery-role="gallery-placeholder">
<img alt="main product photo" class="gallery-placeholder__image" src="https://www.technoworld.com/media/catalog/product/placeholder/default/placeholder_4.jpg">
</div>
<script type="text/x-magento-init">
{
"[data-gallery-role=gallery-placeholder]": {
"mage/gallery/gallery": {
"mixins":["magnifier/magnify"],
"magnifierOpts": {"fullscreenzoom":"20","top":"","left":"","width":"","height":"","eventType":"hover","enabled":false,"mode":"outside"},
"data": [{"thumb":"https:\/\/media.stockinthechannel.com\/pic\/oEAXIhOtqU-rgnRUQ0a2KQ.c-r.jpg","img":"https:\/\/media.stockinthechannel.com\/pic\/oEAXIhOtqU-rgnRUQ0a2KQ.c-r.jpg","full":"https:\/\/media.stockinthechannel.com\/pic\/oEAXIhOtqU-rgnRUQ0a2KQ.c-r.jpg","caption":"","position":0,"isMain":true}],
"options": {"nav":"thumbs","loop":true,"keyboard":true,"arrows":true,"allowfullscreen":true,"showCaption":false,"width":700,"thumbwidth":110,"thumbheight":90,"height":700,"transitionduration":500,"transition":"slide","navarrows":true,"navtype":"slides","navdir":"horizontal"},
"fullscreen": {"nav":"thumbs","loop":true,"navdir":"horizontal","navarrows":false,"navtype":"slides","arrows":true,"showCaption":false,"transitionduration":500,"transition":"slide"},
"breakpoints": {"mobile":{"conditions":{"max-width":"767px"},"options":{"options":{"nav":"dots"}}}} }
}
}
</script>
<style>
.product-item-info.related-available {
border: 1px solid #bbb;
margin: -10px;
padding: 9px;
background: #fff;
}
.sale-day {padding:0 25px;}
@media screen and (max-width: 575px) {
.image-wrapper-height {height:475px;}
.fotorama-item .fotorama_horizontal_ratio {min-height: 450px;}
.fotorama__stage__frame {
position: relative;
width: 100%;
max-width: 800px; /* Set the maximum width as per your layout */
min-height: 450px; /* Set a height based on expected image height */
overflow: hidden;
display: block; /* Ensures it takes up space */
}
.fotorama__nav-wrap.fotorama__nav-wrap--horizontal {min-height: 50px!important;}
}
@media screen and (min-device-width: 576px) and (max-device-width: 767px) {
.image-wrapper-height {
height:600px;
}
.fotorama-item .fotorama_horizontal_ratio {min-height: 450px;}
.fotorama__stage__frame {
position: relative;
width: 100%;
max-width: 800px; /* Set the maximum width as per your layout */
min-height: 450px; /* Set a height based on expected image height */
overflow: hidden;
display: block; /* Ensures it takes up space */
}
.fotorama__nav-wrap.fotorama__nav-wrap--horizontal {min-height: 50px!important}
}
</style>
<script type="text/x-magento-init">
{
"[data-gallery-role=gallery-placeholder]": {
"Magento_ProductVideo/js/fotorama-add-video-events": {
"videoData": [],
"videoSettings": [{"playIfBase":"0","showRelated":"0","videoAutoRestart":"0"}],
"optionsVideoData": [] }
}
}
</script>
<div class="action-skip-wrapper"><a class="action skip gallery-prev-area" href="#gallery-prev-area">
<span>
Skip to the beginning of the images gallery </span>
</a>
</div><a id="gallery-next-area" tabindex="-1"></a>
</div><div class="product-info-main"><div class="page-title-wrapper product">
<h1 class="page-title">
<span class="base" data-ui-id="page-title-wrapper" itemprop="name">AMD EPYC 4244P processor 3.8 GHz 32 MB L3 100-000001480</span> </h1>
</div>
<div class="product-info-price"><div class="price-box price-final_price" data-role="priceBox" data-product-id="234409" data-price-box="product-id-234409">
<span class="price-container price-final_price tax weee" itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<span id="price-including-tax-product-price-234409" data-label="Incl. VAT" data-price-amount="189.144001" data-price-type="finalPrice" class="price-wrapper price-including-tax"><span class="price">£189.14</span></span>
<span id="price-excluding-tax-product-price-234409" data-label="Excl. VAT" data-price-amount="157.62" data-price-type="basePrice" class="price-wrapper price-excluding-tax">
<span class="price">£157.62</span></span>
<meta itemprop="price" content="189.144001">
<meta itemprop="priceCurrency" content="GBP">
<script src="https://www.paypal.com/sdk/js?client-id=AQpD8VwDIvSRH5eMKJEiNu1DcNkP2_4vRT300kgFb1iPkCFhiblvBeQLPx2eoii0ISgLuuOP5iZk4fgn&currency=GBP&components=messages" data-uid-auto="uid_ucwshvrxzthtvnqisgxhfhvbmwrjhj"></script>
<script>
paypal.Buttons({
createOrder: function(data, actions) {
return actions.order.create({
purchase_units: [{
amount: {
value: '189.14'
}
}]
});
}
}).render('#paypal-button-container');
</script>
<div data-pp-message="" data-pp-placement="product" data-pp-amount="189.14" data-pp-style-layout="text" data-pp-style-logo-type="primary" data-pp-id="1"><span id="zoid-paypal-message-uid_56631b7414_mdc6mje6mdi"><style nonce="">
#zoid-paypal-message-uid_56631b7414_mdc6mje6mdi > iframe {
width: 100%;
height: 0;
}
#zoid-paypal-message-uid_56631b7414_mdc6mje6mdi > iframe:nth-of-type(2) {
display: none;
}
</style><iframe allowtransparency="true" name="__zoid__paypal_message__eyJzZW5kZXIiOnsiZG9tYWluIjoiaHR0cHM6Ly93d3cudGVjaG5vd29ybGQuY29tIn0sIm1ldGFEYXRhIjp7IndpbmRvd1JlZiI6eyJ0eXBlIjoicGFyZW50IiwiZGlzdGFuY2UiOjB9fSwicmVmZXJlbmNlIjp7InR5cGUiOiJyYXciLCJ2YWwiOiJ7XCJ1aWRcIjpcInpvaWQtcGF5cGFsLW1lc3NhZ2UtdWlkXzU2NjMxYjc0MTRfbWRjNm1qZTZtZGlcIixcImNvbnRleHRcIjpcImlmcmFtZVwiLFwidGFnXCI6XCJwYXlwYWwtbWVzc2FnZVwiLFwiY2hpbGREb21haW5NYXRjaFwiOntcIl9fdHlwZV9fXCI6XCJyZWdleFwiLFwiX192YWxfX1wiOlwiXFxcXC5wYXlwYWxcXFxcLmNvbSg6XFxcXGQrKT8kXCJ9LFwidmVyc2lvblwiOlwiMTBfNF8wXCIsXCJwcm9wc1wiOntcImFjY291bnRcIjpcImNsaWVudC1pZDpBUXBEOFZ3REl2U1JINWVNS0pFaU51MURjTmtQMl80dlJUMzAwa2dGYjFpUGtDRmhpYmx2QmVRTFB4MmVvaWkwSVNnTHV1T1A1aVprNGZnblwiLFwibWVyY2hhbnRJZFwiOntcIl9fdHlwZV9fXCI6XCJ1bmRlZmluZWRcIn0sXCJjdXN0b21lcklkXCI6e1wiX190eXBlX19cIjpcInVuZGVmaW5lZFwifSxcImN1cnJlbmN5XCI6XCJHQlBcIixcImFtb3VudFwiOjE4OS4xNCxcImJ1eWVyQ291bnRyeVwiOntcIl9fdHlwZV9fXCI6XCJ1bmRlZmluZWRcIn0sXCJpZ25vcmVDYWNoZVwiOntcIl9fdHlwZV9fXCI6XCJ1bmRlZmluZWRcIn0sXCJjaGFubmVsXCI6XCJVUFNUUkVBTVwiLFwiZWNUb2tlblwiOntcIl9fdHlwZV9fXCI6XCJ1bmRlZmluZWRcIn0sXCJjb250ZXh0dWFsQ29tcG9uZW50c1wiOntcIl9fdHlwZV9fXCI6XCJ1bmRlZmluZWRcIn0sXCJjc3BOb25jZVwiOlwiXCIsXCJmZWF0dXJlc1wiOlwibmF0aXZlLW1vZGFsXCIsXCJpbmRleFwiOlwiMVwiLFwicGFnZVR5cGVcIjpcInByb2R1Y3RcIixcInN0eWxlXCI6e1wibGF5b3V0XCI6XCJ0ZXh0XCIsXCJsb2dvXCI6e1widHlwZVwiOlwicHJpbWFyeVwifX0sXCJvZmZlclwiOntcIl9fdHlwZV9fXCI6XCJ1bmRlZmluZWRcIn0sXCJvbkNsaWNrXCI6e1wiX190eXBlX19cIjpcImNyb3NzX2RvbWFpbl9mdW5jdGlvblwiLFwiX192YWxfX1wiOntcImlkXCI6XCJ1aWRfZmNmMTI5MGNmZF9tZGM2bWplNm1kaVwiLFwibmFtZVwiOlwib25DbGlja1wifX0sXCJvbkFwcGx5XCI6e1wiX190eXBlX19cIjpcInVuZGVmaW5lZFwifSxcIm9uUmVhZHlcIjp7XCJfX3R5cGVfX1wiOlwiY3Jvc3NfZG9tYWluX2Z1bmN0aW9uXCIsXCJfX3ZhbF9fXCI6e1wiaWRcIjpcInVpZF9hOTFmMDQ4NzFhX21kYzZtamU2bWRpXCIsXCJuYW1lXCI6XCJvblJlYWR5XCJ9fSxcImdldENvbnRhaW5lclwiOntcIl9fdHlwZV9fXCI6XCJjcm9zc19kb21haW5fZnVuY3Rpb25cIixcIl9fdmFsX19cIjp7XCJpZFwiOlwidWlkXzlhZTExYTMzMThfbWRjNm1qZTZtZGlcIixcIm5hbWVcIjpcImdldENvbnRhaW5lclwifX0sXCJtb2RhbFwiOntcInJlbmRlclwiOntcIl9fdHlwZV9fXCI6XCJjcm9zc19kb21haW5fZnVuY3Rpb25cIixcIl9fdmFsX19cIjp7XCJpZFwiOlwidWlkXzU3ZmYwNzViYWJfbWRjNm1qZTZtZGlcIixcIm5hbWVcIjpcIkFcIn19LFwic2hvd1wiOntcIl9fdHlwZV9fXCI6XCJjcm9zc19kb21haW5fZnVuY3Rpb25cIixcIl9fdmFsX19cIjp7XCJpZFwiOlwidWlkX2E2ZWJmOGM2MzJfbWRjNm1qZTZtZGlcIixcIm5hbWVcIjpcIlRcIn19LFwiaGlkZVwiOntcIl9fdHlwZV9fXCI6XCJjcm9zc19kb21haW5fZnVuY3Rpb25cIixcIl9fdmFsX19cIjp7XCJpZFwiOlwidWlkXzMzMTY1ZTM4MTVfbWRjNm1qZTZtZGlcIixcIm5hbWVcIjpcIkZcIn19LFwidXBkYXRlUHJvcHNcIjp7XCJfX3R5cGVfX1wiOlwiY3Jvc3NfZG9tYWluX2Z1bmN0aW9uXCIsXCJfX3ZhbF9fXCI6e1wiaWRcIjpcInVpZF9mYmExYTAxMDI2X21kYzZtamU2bWRpXCIsXCJuYW1lXCI6XCJ1cGRhdGVQcm9wc1wifX19LFwib25EZXN0cm95XCI6e1wiX190eXBlX19cIjpcImNyb3NzX2RvbWFpbl9mdW5jdGlvblwiLFwiX192YWxfX1wiOntcImlkXCI6XCJ1aWRfOWYzMTMxZDNkM19tZGM2bWplNm1kaVwiLFwibmFtZVwiOlwib25EZXN0cm95XCJ9fSxcIm9uSG92ZXJcIjp7XCJfX3R5cGVfX1wiOlwiY3Jvc3NfZG9tYWluX2Z1bmN0aW9uXCIsXCJfX3ZhbF9fXCI6e1wiaWRcIjpcInVpZF85N2NkMTEyYmE3X21kYzZtamU2bWRpXCIsXCJuYW1lXCI6XCJvbkhvdmVyXCJ9fSxcIm9uTWFya3VwXCI6e1wiX190eXBlX19cIjpcImNyb3NzX2RvbWFpbl9mdW5jdGlvblwiLFwiX192YWxfX1wiOntcImlkXCI6XCJ1aWRfOWVkNDE1MDkyOV9tZGM2bWplNm1kaVwiLFwibmFtZVwiOlwib25NYXJrdXBcIn19LFwicGF5ZXJJZFwiOm51bGwsXCJjbGllbnRJZFwiOlwiQVFwRDhWd0RJdlNSSDVlTUtKRWlOdTFEY05rUDJfNHZSVDMwMGtnRmIxaVBrQ0ZoaWJsdkJlUUxQeDJlb2lpMElTZ0x1dU9QNWlaazRmZ25cIixcIm1lcmNoYW50Q29uZmlnSGFzaFwiOlwiNWQxZTM3ZTcwZDllYWQ4NGMyMzhkOTIyYjk3ZDU3YzJkZDgyYzhlMlwiLFwidHJlYXRtZW50c0hhc2hcIjpcIjM2YmNhNWRlZDI1NjFkOGVhYjE1ODE1NDk0OTcwNGEyZTU0NmNiZTBcIixcImVudlwiOlwicHJvZHVjdGlvblwiLFwidmVyc2lvblwiOlwiMS43MC4wXCIsXCJpbnRlZ3JhdGlvblR5cGVcIjpcIlNES1wiLFwiZGV2aWNlSURcIjpcInVpZF84MzNiM2I0YjQ0X21kYzZtamU2bWRhXCIsXCJzZXNzaW9uSURcIjpcInVpZF9mYzQ3ODZmNzdjX21kYzZtamE2bnR5XCIsXCJzY3JpcHRVSURcIjpcInVpZF91Y3dzaHZyeHp0aHR2bnFpc2d4aGZodmJtd3JqaGpcIixcIm1lc3NhZ2VSZXF1ZXN0SWRcIjpcInVpZF9iOTM4MTA3N2VmX21kYzZtamU2bWRpXCIsXCJkZWJ1Z1wiOntcIl9fdHlwZV9fXCI6XCJ1bmRlZmluZWRcIn0sXCJtZXNzYWdlTG9jYXRpb25cIjpcImh0dHBzOi8vd3d3LnRlY2hub3dvcmxkLmNvbS9hbWQtZXB5Yy00MjQ0cC1wcm9jZXNzb3ItMy04LWdoei0zMi1tYi1sMy0xMDAtMDAwMDAxNDgwXCIsXCJzdGFnZVRhZ1wiOntcIl9fdHlwZV9fXCI6XCJ1bmRlZmluZWRcIn0sXCJwYXJ0bmVyQXR0cmlidXRpb25JZFwiOm51bGwsXCJkZXZUb3VjaHBvaW50XCI6e1wiX190eXBlX19cIjpcInVuZGVmaW5lZFwifSxcImRpc2FibGVTZXRDb29raWVcIjp0cnVlfSxcImV4cG9ydHNcIjp7XCJpbml0XCI6e1wiX190eXBlX19cIjpcImNyb3NzX2RvbWFpbl9mdW5jdGlvblwiLFwiX192YWxfX1wiOntcImlkXCI6XCJ1aWRfY2I5OGQ0Y2UzMV9tZGM2bWplNm1kaVwiLFwibmFtZVwiOlwiaW5pdFwifX0sXCJjbG9zZVwiOntcIl9fdHlwZV9fXCI6XCJjcm9zc19kb21haW5fZnVuY3Rpb25cIixcIl9fdmFsX19cIjp7XCJpZFwiOlwidWlkXzZkYjQ0YmYwZmFfbWRjNm1qZTZtZGlcIixcIm5hbWVcIjpcImNsb3NlOjptZW1vaXplZFwifX0sXCJjaGVja0Nsb3NlXCI6e1wiX190eXBlX19cIjpcImNyb3NzX2RvbWFpbl9mdW5jdGlvblwiLFwiX192YWxfX1wiOntcImlkXCI6XCJ1aWRfN2I1ZTQyZDdjOF9tZGM2bWplNm1kaVwiLFwibmFtZVwiOlwiY2hlY2tDbG9zZVwifX0sXCJyZXNpemVcIjp7XCJfX3R5cGVfX1wiOlwiY3Jvc3NfZG9tYWluX2Z1bmN0aW9uXCIsXCJfX3ZhbF9fXCI6e1wiaWRcIjpcInVpZF8yN2EzNGNmOGJkX21kYzZtamU2bWRpXCIsXCJuYW1lXCI6XCJIZVwifX0sXCJvbkVycm9yXCI6e1wiX190eXBlX19cIjpcImNyb3NzX2RvbWFpbl9mdW5jdGlvblwiLFwiX192YWxfX1wiOntcImlkXCI6XCJ1aWRfNDM0MDVlMGFiNl9tZGM2bWplNm1kaVwiLFwibmFtZVwiOlwicWVcIn19LFwic2hvd1wiOntcIl9fdHlwZV9fXCI6XCJjcm9zc19kb21haW5fZnVuY3Rpb25cIixcIl9fdmFsX19cIjp7XCJpZFwiOlwidWlkX2ZiNmY4OGU5OWFfbWRjNm1qZTZtZGlcIixcIm5hbWVcIjpcInZlXCJ9fSxcImhpZGVcIjp7XCJfX3R5cGVfX1wiOlwiY3Jvc3NfZG9tYWluX2Z1bmN0aW9uXCIsXCJfX3ZhbF9fXCI6e1wiaWRcIjpcInVpZF8wOTdjNDBjNmMyX21kYzZtamU2bWRpXCIsXCJuYW1lXCI6XCJtZVwifX0sXCJleHBvcnRcIjp7XCJfX3R5cGVfX1wiOlwiY3Jvc3NfZG9tYWluX2Z1bmN0aW9uXCIsXCJfX3ZhbF9fXCI6e1wiaWRcIjpcInVpZF8yNmJmNmNjMDE2X21kYzZtamU2bWRpXCIsXCJuYW1lXCI6XCJZZVwifX19fSJ9fQ__" title="PayPal Message 1" scrolling="no" id="jsx-iframe-c67a393151" style="background-color: transparent; border: none;"></iframe><iframe name="__detect_close_uid_c502fa5135_mdc6mje6mdi__" style="display: none;"></iframe></span></div>
</span>
</div>
<div class="product-info-stock-sku">
<div class="stock available" title="Availability">
<span class="fa fa-check-circle-o"></span> <span>In stock</span>
</div>
<div class="product attribute sku">
<strong class="type">SKU</strong> <div class="value" itemprop="sku">
<h2 style="font-size:16px"><b>100-000001480</b></h2> </div>
<div></div>
</div>
</div></div>
<div class="product-add-form">
<form data-product-sku="100-000001480" action="https://www.technoworld.com/checkout/cart/add/uenc/aHR0cHM6Ly93d3cudGVjaG5vd29ybGQuY29tL2FtZC1lcHljLTQyNDRwLXByb2Nlc3Nvci0zLTgtZ2h6LTMyLW1iLWwzLTEwMC0wMDAwMDE0ODA~/product/234409/" method="post" id="product_addtocart_form">
<input type="hidden" name="product" value="234409">
<input type="hidden" name="selected_configurable_option" value="">
<input type="hidden" name="related_product" id="related-products-field" value="">
<input type="hidden" name="item" value="234409">
<input name="form_key" type="hidden" value="Jz1JWAp3LyVlbZmR"> <div class="brand-logo">
<img loading="lazy" src="https://www.technoworld.com/static/version1754627865/frontend/TechnoWorld/tw/en_GB/images/brandlogos/202.jpg" width="155px" height="80px">
</div>
<div class="brand-logo" style="padding-left:5px">
</div>
<div class="logo">
<div class="tw-product-addon__wrapper">
<div id="ccs-logos"></div>
</div>
</div>
<div class="box-tocart">
<section class="tw-product-extras__wrapper">
</section>
<div class="time-wrapper"><span class="next-day-active"><a href="/delivery-information" title="Click for delivery information - link opens in a new window" target="_blank"><span class="fa fa-truck"></span> Next day delivery is available</a><span class="no-link"><span class="fa fa-truck"></span> Next day delivery is available</span></span></div>
<div class="fieldset">
<div class="actions clearfix">
<div class="qty-container">
<div class="field qty clearfix">
<label class="label" for="qty"><span>Qty</span></label>
<div class="control">
<input type="number" name="qty" id="qty" value="1" title="Qty" class="input-text qty" data-validate="{"required-number":true,"validate-item-quantity":{"maxAllowed":10000}}">
<div class="quantity-nav">
<a href="#" class="quantity-button quantity-up"><span class="fa fa-chevron-up"></span></a>
<a href="#" class="quantity-button quantity-down"><span class="fa fa-chevron-down"></span></a>
</div>
</div>
</div>
</div>
<div class="action-button-container">
<button type="submit" title="Add to Cart" class="action primary tocart" id="product-addtocart-button">
<span>Add to Cart</span>
</button>
<div id="instant-purchase" data-bind="scope:'instant-purchase'">
<!-- ko template: getTemplate() --><!-- /ko -->
</div>
<script type="text/x-magento-init">
{
"#instant-purchase": {
"Magento_Ui/js/core/app": {"components":{"instant-purchase":{"component":"Magento_InstantPurchase\/js\/view\/instant-purchase","config":{"template":"Magento_InstantPurchase\/instant-purchase","buttonText":"Instant Purchase","purchaseUrl":"https:\/\/www.technoworld.com\/instantpurchase\/button\/placeOrder\/"}}}} }
}
</script>
</div>
<div class="related-addons-container">
<a href="#tab-label-description" class="scroll-to btn btn-grey btn-lg btn-block related-products">More Details</a>
</div>
</div>
</div>
<div class="action-help-container">
<p>Need help ordering? Call <a href="tel:02082002000"><strong>0208 200 2000</strong></a></p>
</div>
<div class="product-social-sharing">
<ul class="list-inline">
<li><a href="https://www.facebook.com/sharer/sharer.php?u=https://www.technoworld.com/amd-epyc-4244p-processor-3-8-ghz-32-mb-l3-100-000001480" target="_blank"><span class="fa fa-facebook"></span></a></li>
<li><a href="https://twitter.com/share?url=https://www.technoworld.com/amd-epyc-4244p-processor-3-8-ghz-32-mb-l3-100-000001480" target="_blank"><span><svg xmlns="http://www.w3.org/2000/svg" fill="#fff" height="16" width="16" viewBox="0 0 512 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"></path></svg></span></a></li>
<li><a href="https://www.pinterest.com/pin/create/button/?url=https://www.technoworld.com/amd-epyc-4244p-processor-3-8-ghz-32-mb-l3-100-000001480&media=https://media.stockinthechannel.com/pic/oEAXIhOtqU-rgnRUQ0a2KQ.c-r.jpg" target="_blank"><span class="fa fa-pinterest"></span></a></li>
<li><a href="mailto:?subject=AMD EPYC 4244P processor 3.8 GHz 32 MB L3 100-000001480&body=https://www.technoworld.com/amd-epyc-4244p-processor-3-8-ghz-32-mb-l3-100-000001480" target="_blank"><span class="fa fa-envelope"></span></a></li>
</ul>
</div>
</div>
<script type="text/x-magento-init">
{
"#product_addtocart_form": {
"Magento_Catalog/js/validate-product": {}
}
}
</script>
<script type="text/javascript">
var ccs_cc_args = ccs_cc_args || [];
// Product Page - Microsoft Office Attach & Inline Content
//Replace MANUFACTURER_NAME dynamically with the name of the manufacturer of the product the script resides on each page
ccs_cc_args.push(['mf', 'AMD']);
//Replace MANUFACTURER_PART_NUMBER dynamically with the name of the MPN of the product the script resides on each page
ccs_cc_args.push(['pn', '100-000001480']);
ccs_cc_args.push(['lang', 'en-gb']); //Does not change
ccs_cc_args.push(['market', 'UK']); //Does not change
(function () {
var o = ccs_cc_args; o.push(['_SKey', '95bf34fb']); o.push(['_ZoneId', 'aea198075d']);
var sc = document.createElement('script'); sc.type = 'text/javascript'; sc.async = true;
sc.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'cdn.cs.1worldsync.com/jsc/h1ws.js';
var n = document.getElementsByTagName('script')[0]; n.parentNode.insertBefore(sc, n);
})();
</script><script>
window['YIREO_GOOGLETAGMANAGER2_PRODUCT_DATA_ID_234409'] = {"item_id":"100-000001480","item_sku":"100-000001480","magento_sku":"100-000001480","magento_id":"234409","item_name":"AMD EPYC 4244P processor 3.8 GHz 32 MB L3 100-000001480","item_list_id":"123","item_list_name":"processors","price":157.62,"item_category":"processors","index":0};
</script>
</form>
</div>
<script type="text/x-magento-init">
{
"[data-role=priceBox][data-price-box=product-id-234409]": {
"priceBox": {
"priceConfig": {"productId":"234409","priceFormat":{"pattern":"\u00a3%s","precision":2,"requiredPrecision":2,"decimalSymbol":".","groupSymbol":",","groupLength":3,"integerRequired":false},"tierPrices":[]} }
}
}
</script>
<div class="product-social-links"><div class="product-addto-links" data-role="add-to-links">
<script type="text/x-magento-init">
{
"body": {
"addToWishlist": {"productType":"simple"} }
}
</script>
<a href="#" data-post="{"action":"https:\/\/www.technoworld.com\/catalog\/product_compare\/add\/","data":{"product":"234409","uenc":"aHR0cHM6Ly93d3cudGVjaG5vd29ybGQuY29tL2FtZC1lcHljLTQyNDRwLXByb2Nlc3Nvci0zLTgtZ2h6LTMyLW1iLWwzLTEwMC0wMDAwMDE0ODA~"}}" data-role="add-to-links" class="action tocompare"><span>Add to Compare</span></a>
</div>
</div>
<div class="product attribute overview">
<div class="value" itemprop="description">
AMD EPYC 4244P, 6C / 12T, 3.8 GHz (5.1 GHz Boost), 32 MB L3 Cache, 65W, AM5, Tray </div>
<div></div>
</div>
</div></div>
<div id="tw-scroll-product-details"><!-- scroll to container --></div>
<div class="product info detailed">
<div class="product data items" data-mage-init="{"tabs":{"openedState":"active"}}">
<div class="data item title" aria-labeledby="tab-label-description-title" data-role="collapsible" id="tab-label-description">
<a class="data switch" tabindex="-1" data-toggle="switch" href="#description" id="tab-label-description-title">
Product Details </a>
</div>
<div class="data item content" id="description" data-role="content">
<div class="product attribute description">
<div class="value">
<b>AMD EPYC 4244P</b><br>AMD EPYC 4004 processors accommodate entry-level server workloads efficiently and affordably, meeting your all-day, every day processing needs.<br><br> </div>
<div></div>
</div>
<section class="tw-product-details__wrapper">
<div id="flix-inpage"></div>
<div id="flix-minisite"></div>
<div id="flix-inpage1"></div>
</section>
</div>
<div class="data item title" aria-labeledby="tab-label-additional-title" data-role="collapsible" id="tab-label-additional">
<a class="data switch" tabindex="-1" data-toggle="switch" href="#additional" id="tab-label-additional-title">
Technical Specification </a>
</div>
<div class="data item content" id="additional" data-role="content">
<div class="additional-attributes-wrapper table-wrapper">
<table class="data table additional-attributes" id="product-attribute-specs-table">
<caption class="table-caption">More Information</caption>
<tbody>
<tr>
<th class="col label" scope="row">SKU</th>
<td class="col data" data-th="SKU">100-000001480</td>
</tr>
<tr>
<th class="col label" scope="row">EAN</th>
<td class="col data" data-th="EAN">8592978537623</td>
</tr>
<tr>
<th class="col label" scope="row">Manufacturer</th>
<td class="col data" data-th="Manufacturer">AMD</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<input name="form_key" type="hidden" value="Jz1JWAp3LyVlbZmR"><div id="authenticationPopup" data-bind="scope:'authenticationPopup', style: {display: 'none'}">
<script>window.authenticationPopup = {"autocomplete":"off","customerRegisterUrl":"https:\/\/www.technoworld.com\/customer\/account\/create\/","customerForgotPasswordUrl":"https:\/\/www.technoworld.com\/customer\/account\/forgotpassword\/","baseUrl":"https:\/\/www.technoworld.com\/","customerLoginUrl":"https:\/\/www.technoworld.com\/customer\/ajax\/login\/"}</script> <!-- ko template: getTemplate() --><!-- /ko -->
<script type="text/x-magento-init">
{
"#authenticationPopup": {
"Magento_Ui/js/core/app": {"components":{"authenticationPopup":{"component":"Magento_Customer\/js\/view\/authentication-popup","children":{"messages":{"component":"Magento_Ui\/js\/view\/messages","displayArea":"messages"},"captcha":{"component":"Magento_Captcha\/js\/view\/checkout\/loginCaptcha","displayArea":"additional-login-form-fields","formId":"user_login","configSource":"checkout"},"recaptcha":{"component":"Magento_ReCaptchaFrontendUi\/js\/reCaptcha","displayArea":"additional-login-form-fields","reCaptchaId":"recaptcha-popup-login","settings":{"rendering":{"sitekey":"6LcKm2cjAAAAANPdpgbd2hrUEvyLRr6_mLDIoj1t","size":"normal","theme":"light","hl":""},"invisible":false}}}}}} },
"*": {
"Magento_Ui/js/block-loader": "https\u003A\u002F\u002Fwww.technoworld.com\u002Fstatic\u002Fversion1754627865\u002Ffrontend\u002FTechnoWorld\u002Ftw\u002Fen_GB\u002Fimages\u002Floader\u002D1.gif"
}
}
</script>
</div>
<script type="text/x-magento-init">
{
"*": {
"Magento_Customer/js/section-config": {
"sections": {"stores\/store\/switch":["*"],"stores\/store\/switchrequest":["*"],"directory\/currency\/switch":["*"],"*":["messages"],"customer\/account\/logout":["*","recently_viewed_product","recently_compared_product","persistent"],"customer\/account\/loginpost":["*"],"customer\/account\/createpost":["*"],"customer\/account\/editpost":["*"],"customer\/ajax\/login":["checkout-data","cart","captcha"],"catalog\/product_compare\/add":["compare-products"],"catalog\/product_compare\/remove":["compare-products"],"catalog\/product_compare\/clear":["compare-products"],"sales\/guest\/reorder":["cart"],"sales\/order\/reorder":["cart"],"checkout\/cart\/add":["cart","directory-data"],"checkout\/cart\/delete":["cart"],"checkout\/cart\/updatepost":["cart"],"checkout\/cart\/updateitemoptions":["cart"],"checkout\/cart\/couponpost":["cart"],"checkout\/cart\/estimatepost":["cart"],"checkout\/cart\/estimateupdatepost":["cart"],"checkout\/onepage\/saveorder":["cart","checkout-data","last-ordered-items"],"checkout\/sidebar\/removeitem":["cart"],"checkout\/sidebar\/updateitemqty":["cart"],"rest\/*\/v1\/carts\/*\/payment-information":["cart","last-ordered-items","captcha","instant-purchase"],"rest\/*\/v1\/guest-carts\/*\/payment-information":["cart","captcha"],"rest\/*\/v1\/guest-carts\/*\/selected-payment-method":["cart","checkout-data"],"rest\/*\/v1\/carts\/*\/selected-payment-method":["cart","checkout-data","instant-purchase"],"customer\/address\/*":["instant-purchase"],"customer\/account\/*":["instant-purchase"],"vault\/cards\/deleteaction":["instant-purchase"],"multishipping\/checkout\/overviewpost":["cart"],"paypal\/express\/placeorder":["cart","checkout-data"],"paypal\/payflowexpress\/placeorder":["cart","checkout-data"],"paypal\/express\/onauthorization":["cart","checkout-data"],"persistent\/index\/unsetcookie":["persistent"],"review\/product\/post":["review"],"wishlist\/index\/add":["wishlist"],"wishlist\/index\/remove":["wishlist"],"wishlist\/index\/updateitemoptions":["wishlist"],"wishlist\/index\/update":["wishlist"],"wishlist\/index\/cart":["wishlist","cart"],"wishlist\/index\/fromcart":["wishlist","cart"],"wishlist\/index\/allcart":["wishlist","cart"],"wishlist\/shared\/allcart":["wishlist","cart"],"wishlist\/shared\/cart":["cart"],"braintree\/paypal\/placeorder":["cart","checkout-data"],"braintree\/googlepay\/placeorder":["cart","checkout-data"],"checkout\/onepage\/success":["gtm-checkout"]},
"clientSideSections": ["checkout-data","cart-data"],
"baseUrls": ["https:\/\/www.technoworld.com\/"],
"sectionNames": ["messages","customer","compare-products","last-ordered-items","cart","directory-data","captcha","instant-purchase","loggedAsCustomer","persistent","review","wishlist","gtm-checkout","recently_viewed_product","recently_compared_product","product_data_storage","paypal-billing-agreement"] }
}
}
</script>
<script type="text/x-magento-init">
{
"*": {
"Magento_Customer/js/customer-data": {
"sectionLoadUrl": "https\u003A\u002F\u002Fwww.technoworld.com\u002Fcustomer\u002Fsection\u002Fload\u002F",
"expirableSectionLifetime": 60,
"expirableSectionNames": ["cart","persistent"],