My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions

Issue 38 attachment: errors_20130117.txt (204 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
Empty pitch, configType=4, family=V-BELT CONTRAFOR (Z, A, B, C), profile=Z, pitch=, width=, uom=m, unitPrice=32.593838401451
Empty pitch, configType=4, family=V-BELT CONTRAFOR (Z, A, B, C), profile=A, pitch=, width=, uom=m, unitPrice=38.669802873817
Empty pitch, configType=4, family=V-BELT CONTRAFOR (Z, A, B, C), profile=B, pitch=, width=, uom=m, unitPrice=52.092275114014
Empty pitch, configType=4, family=V-BELT CONTRAFOR (Z, A, B, C), profile=C, pitch=, width=, uom=m, unitPrice=74.383391149279
Empty pitch, configType=4, family=V-BELT CONTRAFOR (Z, A, B, C), profile=Z, pitch=, width=, uom=PCE, unitPrice=4.981536089145
Empty pitch, configType=4, family=V-BELT CONTRAFOR (Z, A, B, C), profile=A, pitch=, width=, uom=PCE, unitPrice=4.981536089145
Empty pitch, configType=4, family=V-BELT CONTRAFOR (Z, A, B, C), profile=B, pitch=, width=, uom=PCE, unitPrice=5.4595622795175
Empty pitch, configType=4, family=V-BELT CONTRAFOR (Z, A, B, C), profile=C, pitch=, width=, uom=PCE, unitPrice=5.9250088333012
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=360 MXL, uom=mm, unitPrice=0.27322847037973, sleevePrice=101.0945340405, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=432 MXL, uom=mm, unitPrice=0.27322847037973, sleevePrice=101.0945340405, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=440 MXL, uom=mm, unitPrice=0.27322847037973, sleevePrice=101.0945340405, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=456 MXL, uom=mm, unitPrice=0.27322847037973, sleevePrice=101.0945340405, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=480 MXL, uom=mm, unitPrice=0.29096001555203, sleevePrice=107.65520575425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=488 MXL, uom=mm, unitPrice=0.29096001555203, sleevePrice=107.65520575425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=496 MXL, uom=mm, unitPrice=0.29096001555203, sleevePrice=107.65520575425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=536 MXL, uom=mm, unitPrice=0.29096001555203, sleevePrice=107.65520575425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=544 MXL, uom=mm, unitPrice=0.29096001555203, sleevePrice=107.65520575425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=576 MXL, uom=mm, unitPrice=0.29096001555203, sleevePrice=107.65520575425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=584 MXL, uom=mm, unitPrice=0.29096001555203, sleevePrice=107.65520575425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=608 MXL, uom=mm, unitPrice=0.29096001555203, sleevePrice=107.65520575425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=632 MXL, uom=mm, unitPrice=0.30921211984865, sleevePrice=114.408484344, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=640 MXL, uom=mm, unitPrice=0.30921211984865, sleevePrice=114.408484344, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=656 MXL, uom=mm, unitPrice=0.30921211984865, sleevePrice=114.408484344, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=664 MXL, uom=mm, unitPrice=0.30921211984865, sleevePrice=114.408484344, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=680 MXL, uom=mm, unitPrice=0.30921211984865, sleevePrice=114.408484344, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=704 MXL, uom=mm, unitPrice=0.30921211984865, sleevePrice=114.408484344, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=720 MXL, uom=mm, unitPrice=0.30921211984865, sleevePrice=114.408484344, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=736 MXL, uom=mm, unitPrice=0.30921211984865, sleevePrice=114.408484344, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=752 MXL, uom=mm, unitPrice=0.30921211984865, sleevePrice=114.408484344, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=760 MXL, uom=mm, unitPrice=0.30921211984865, sleevePrice=114.408484344, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=776 MXL, uom=mm, unitPrice=0.30921211984865, sleevePrice=114.408484344, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=800 MXL, uom=mm, unitPrice=0.30921211984865, sleevePrice=114.408484344, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=808 MXL, uom=mm, unitPrice=0.30921211984865, sleevePrice=114.408484344, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=824 MXL, uom=mm, unitPrice=0.32736661930946, sleevePrice=121.1256491445, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=840 MXL, uom=mm, unitPrice=0.32736661930946, sleevePrice=121.1256491445, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=880 MXL, uom=mm, unitPrice=0.32736661930946, sleevePrice=121.1256491445, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=888 MXL, uom=mm, unitPrice=0.32736661930946, sleevePrice=121.1256491445, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=912 MXL, uom=mm, unitPrice=0.32736661930946, sleevePrice=121.1256491445, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=920 MXL, uom=mm, unitPrice=0.32736661930946, sleevePrice=121.1256491445, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=944 MXL, uom=mm, unitPrice=0.32736661930946, sleevePrice=121.1256491445, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=952 MXL, uom=mm, unitPrice=0.32736661930946, sleevePrice=121.1256491445, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=960 MXL, uom=mm, unitPrice=0.32736661930946, sleevePrice=121.1256491445, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=976 MXL, uom=mm, unitPrice=0.32736661930946, sleevePrice=121.1256491445, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=984 MXL, uom=mm, unitPrice=0.32736661930946, sleevePrice=121.1256491445, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1000 MXL, uom=mm, unitPrice=0.32736661930946, sleevePrice=121.1256491445, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1008 MXL, uom=mm, unitPrice=0.32736661930946, sleevePrice=121.1256491445, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1016 MXL, uom=mm, unitPrice=0.32736661930946, sleevePrice=121.1256491445, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1040 MXL, uom=mm, unitPrice=0.34561872360608, sleevePrice=127.87892773425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1056 MXL, uom=mm, unitPrice=0.34561872360608, sleevePrice=127.87892773425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1072 MXL, uom=mm, unitPrice=0.34561872360608, sleevePrice=127.87892773425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1120 MXL, uom=mm, unitPrice=0.34561872360608, sleevePrice=127.87892773425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1160 MXL, uom=mm, unitPrice=0.34561872360608, sleevePrice=127.87892773425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1176 MXL, uom=mm, unitPrice=0.34561872360608, sleevePrice=127.87892773425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1184 MXL, uom=mm, unitPrice=0.34561872360608, sleevePrice=127.87892773425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1200 MXL, uom=mm, unitPrice=0.3638708279027, sleevePrice=134.632206324, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1224 MXL, uom=mm, unitPrice=0.3638708279027, sleevePrice=134.632206324, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1280 MXL, uom=mm, unitPrice=0.3638708279027, sleevePrice=134.632206324, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1400 MXL, uom=mm, unitPrice=0.38205786230878, sleevePrice=141.36140905425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1472 MXL, uom=mm, unitPrice=0.38205786230878, sleevePrice=141.36140905425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1496 MXL, uom=mm, unitPrice=0.38205786230878, sleevePrice=141.36140905425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1520 MXL, uom=mm, unitPrice=0.38205786230878, sleevePrice=141.36140905425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1600 MXL, uom=mm, unitPrice=0.40027743166014, sleevePrice=148.10264971425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1680 MXL, uom=mm, unitPrice=0.3738823963875, sleevePrice=171.98590233825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1696 MXL, uom=mm, unitPrice=0.40027743166014, sleevePrice=148.10264971425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1768 MXL, uom=mm, unitPrice=0.41843193112095, sleevePrice=154.81981451475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1800 MXL, uom=mm, unitPrice=0.41843193112095, sleevePrice=154.81981451475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1832 MXL, uom=mm, unitPrice=0.41843193112095, sleevePrice=154.81981451475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1856 MXL, uom=mm, unitPrice=0.41843193112095, sleevePrice=154.81981451475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1888 MXL, uom=mm, unitPrice=0.41843193112095, sleevePrice=154.81981451475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1984 MXL, uom=mm, unitPrice=0.43668403541757, sleevePrice=161.5730931045, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=1992 MXL, uom=mm, unitPrice=0.43668403541757, sleevePrice=161.5730931045, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=2048 MXL, uom=mm, unitPrice=0.43668403541757, sleevePrice=161.5730931045, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=2240 MXL, uom=mm, unitPrice=0.4589068176, sleevePrice=211.097136096, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=2360 MXL, uom=mm, unitPrice=0.48350606535, sleevePrice=222.412790061, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=2384 MXL, uom=mm, unitPrice=0.47312317412027, sleevePrice=175.0555744245, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=2480 MXL, uom=mm, unitPrice=0.495701011575, sleevePrice=228.0224653245, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=2496 MXL, uom=mm, unitPrice=0.495701011575, sleevePrice=228.0224653245, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=2520 MXL, uom=mm, unitPrice=0.495701011575, sleevePrice=228.0224653245, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=2584 MXL, uom=mm, unitPrice=0.495701011575, sleevePrice=228.0224653245, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=2776 MXL, uom=mm, unitPrice=0.5321550031875, sleevePrice=244.79130146625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=2864 MXL, uom=mm, unitPrice=0.5321550031875, sleevePrice=244.79130146625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=2880 MXL, uom=mm, unitPrice=0.5351383162125, sleevePrice=246.16362545775, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=2976 MXL, uom=mm, unitPrice=0.5505259307625, sleevePrice=253.24192815075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=3064 MXL, uom=mm, unitPrice=0.5505259307625, sleevePrice=253.24192815075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=3104 MXL, uom=mm, unitPrice=0.5505259307625, sleevePrice=253.24192815075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=3200 MXL, uom=mm, unitPrice=0.56892302775, sleevePrice=261.704592765, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=3296 MXL, uom=mm, unitPrice=0.56892302775, sleevePrice=261.704592765, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=3424 MXL, uom=mm, unitPrice=0.5873201247375, sleevePrice=270.16725737925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=3472 MXL, uom=mm, unitPrice=0.5873201247375, sleevePrice=270.16725737925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=3480 MXL, uom=mm, unitPrice=0.5873201247375, sleevePrice=270.16725737925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=3520 MXL, uom=mm, unitPrice=0.5873201247375, sleevePrice=270.16725737925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=3632 MXL, uom=mm, unitPrice=0.6053770193625, sleevePrice=278.47342890675, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=3704 MXL, uom=mm, unitPrice=0.6053770193625, sleevePrice=278.47342890675, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=3944 MXL, uom=mm, unitPrice=0.6425375851125, sleevePrice=295.56728915175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=4000 MXL, uom=mm, unitPrice=0.6425375851125, sleevePrice=295.56728915175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=4064 MXL, uom=mm, unitPrice=0.6425375851125, sleevePrice=295.56728915175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=4200 MXL, uom=mm, unitPrice=0.6609346821, sleevePrice=304.029953766, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=4280 MXL, uom=mm, unitPrice=0.6609346821, sleevePrice=304.029953766, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=4320 MXL, uom=mm, unitPrice=0.6671368328625, sleevePrice=306.88294311675, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=4456 MXL, uom=mm, unitPrice=0.697414843125, sleevePrice=320.8108278375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=4736 MXL, uom=mm, unitPrice=0.7157857707, sleevePrice=329.261454522, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=4800 MXL, uom=mm, unitPrice=0.7157857707, sleevePrice=329.261454522, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=MXL, description=5224 MXL, uom=mm, unitPrice=0.77095089225, sleevePrice=354.637410435, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=054 XL, uom=mm, unitPrice=0.26086519117703, sleevePrice=96.5201207355, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=060 XL, uom=mm, unitPrice=0.26086519117703, sleevePrice=96.5201207355, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=070 XL, uom=mm, unitPrice=0.27280551609122, sleevePrice=100.93804095375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=080 XL, uom=mm, unitPrice=0.28464823616959, sleevePrice=105.31984738275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=090 XL, uom=mm, unitPrice=0.2964584213027, sleevePrice=109.689615882, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=098 XL, uom=mm, unitPrice=0.2964584213027, sleevePrice=109.689615882, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=100 XL, uom=mm, unitPrice=0.2964584213027, sleevePrice=109.689615882, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=102 XL, uom=mm, unitPrice=0.2964584213027, sleevePrice=109.689615882, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=104 XL, uom=mm, unitPrice=0.30833367632635, sleevePrice=114.08346024075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=106 XL, uom=mm, unitPrice=0.30833367632635, sleevePrice=114.08346024075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=110 XL, uom=mm, unitPrice=0.30833367632635, sleevePrice=114.08346024075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=120 XL, uom=mm, unitPrice=0.32020893135, sleevePrice=118.4773045995, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=130 XL, uom=mm, unitPrice=0.33211672131892, sleevePrice=122.883186888, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=140 XL, uom=mm, unitPrice=0.33211672131892, sleevePrice=122.883186888, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=146 XL, uom=mm, unitPrice=0.34392690645203, sleevePrice=127.25295538725, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=150 XL, uom=mm, unitPrice=0.34392690645203, sleevePrice=127.25295538725, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=156 XL, uom=mm, unitPrice=0.34392690645203, sleevePrice=127.25295538725, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=160 XL, uom=mm, unitPrice=0.35576962653041, sleevePrice=131.63476181625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=170 XL, uom=mm, unitPrice=0.36767741649932, sleevePrice=136.04064410475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=176 XL, uom=mm, unitPrice=0.36767741649932, sleevePrice=136.04064410475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=180 XL, uom=mm, unitPrice=0.36767741649932, sleevePrice=136.04064410475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=182 XL, uom=mm, unitPrice=0.36767741649932, sleevePrice=136.04064410475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=188 XL, uom=mm, unitPrice=0.37945506668716, sleevePrice=140.39837467425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=190 XL, uom=mm, unitPrice=0.37945506668716, sleevePrice=140.39837467425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=198 XL, uom=mm, unitPrice=0.39139539160135, sleevePrice=144.8162948925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=200 XL, uom=mm, unitPrice=0.3934571169375, sleevePrice=180.99027379125, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=202 XL, uom=mm, unitPrice=0.389415670875, sleevePrice=206.39030556375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=210 XL, uom=mm, unitPrice=0.3934571169375, sleevePrice=180.99027379125, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=212 XL, uom=mm, unitPrice=0.389415670875, sleevePrice=206.39030556375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=214 XL, uom=mm, unitPrice=0.40323811167973, sleevePrice=149.1981013215, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=220 XL, uom=mm, unitPrice=0.40541653845, sleevePrice=186.491607687, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=228 XL, uom=mm, unitPrice=0.41508083175811, sleevePrice=153.5799077505, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=230 XL, uom=mm, unitPrice=0.41734979055, sleevePrice=191.980903653, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=234 XL, uom=mm, unitPrice=0.41734979055, sleevePrice=191.980903653, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=240 XL, uom=mm, unitPrice=0.4292568732375, sleevePrice=197.45816168925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=250 XL, uom=mm, unitPrice=0.4292568732375, sleevePrice=197.45816168925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=260 XL, uom=mm, unitPrice=0.44121629475, sleevePrice=202.959495585, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=270 XL, uom=mm, unitPrice=0.453097208025, sleevePrice=208.4247156915, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=276 XL, uom=mm, unitPrice=0.465030460125, sleevePrice=213.9140116575, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=290 XL, uom=mm, unitPrice=0.47193227235, sleevePrice=250.1241043455, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=310 XL, uom=mm, unitPrice=0.4888707949125, sleevePrice=224.88056565975, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=316 XL, uom=mm, unitPrice=0.48374307135, sleevePrice=256.3838278155, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=320 XL, uom=mm, unitPrice=0.5008040470125, sleevePrice=230.36986162575, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=330 XL, uom=mm, unitPrice=0.5008040470125, sleevePrice=230.36986162575, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=344 XL, uom=mm, unitPrice=0.5127372991125, sleevePrice=235.85915759175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=352 XL, uom=mm, unitPrice=0.5246443818, sleevePrice=241.336415628, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=364 XL, uom=mm, unitPrice=0.5365776339, sleevePrice=246.825711594, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=380 XL, uom=mm, unitPrice=0.5604179686875, sleevePrice=257.79226559625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=384 XL, uom=mm, unitPrice=0.554403447675, sleevePrice=293.83382726775, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=388 XL, uom=mm, unitPrice=0.5604179686875, sleevePrice=257.79226559625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=390 XL, uom=mm, unitPrice=0.5604179686875, sleevePrice=257.79226559625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=392 XL, uom=mm, unitPrice=0.554403447675, sleevePrice=293.83382726775, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=434 XL, uom=mm, unitPrice=0.5961653861625, sleevePrice=274.23607763475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=460 XL, uom=mm, unitPrice=0.6319128036375, sleevePrice=290.67988967325, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=530 XL, uom=mm, unitPrice=0.67967198145, sleevePrice=312.649111467, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=600 XL, uom=mm, unitPrice=0.74515760869565, sleevePrice=342.7725, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XL, description=710 XL, uom=mm, unitPrice=0.8466066637875, sleevePrice=389.43906534225, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=124 L, uom=mm, unitPrice=0.34857940362568, sleevePrice=128.9743793415, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=135 L, uom=mm, unitPrice=0.36130056722635, sleevePrice=133.68120987375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=150 L, uom=mm, unitPrice=0.37779578447838, sleevePrice=139.784440257, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=173 L, uom=mm, unitPrice=0.40662174598784, sleevePrice=150.4500460155, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=187 L, uom=mm, unitPrice=0.42357245247365, sleevePrice=156.72180741525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=202 L, uom=mm, unitPrice=0.44013273961622, sleevePrice=162.849113658, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=210 L, uom=mm, unitPrice=0.4481363361527, sleevePrice=165.8104443765, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=225 L, uom=mm, unitPrice=0.4807059382125, sleevePrice=221.12473157775, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=240 L, uom=mm, unitPrice=0.5021648564625, sleevePrice=230.99583397275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=255 L, uom=mm, unitPrice=0.519567515775, sleevePrice=239.0010572565, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=270 L, uom=mm, unitPrice=0.5365776339, sleevePrice=246.825711594, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=285 L, uom=mm, unitPrice=0.5536139214375, sleevePrice=254.66240386125, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=300 L, uom=mm, unitPrice=0.5709904113375, sleevePrice=262.65558921525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=322 L, uom=mm, unitPrice=0.6009805580625, sleevePrice=276.45105670875, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=334 L, uom=mm, unitPrice=0.623407744575, sleevePrice=286.7675625045, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=345 L, uom=mm, unitPrice=0.6268882764375, sleevePrice=288.36860716125, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=367 L, uom=mm, unitPrice=0.65685225375, sleevePrice=302.152036725, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=390 L, uom=mm, unitPrice=0.68239360035, sleevePrice=313.901056161, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=405 L, uom=mm, unitPrice=0.6997962596625, sleevePrice=321.90627944475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=412 L, uom=mm, unitPrice=0.708301318725, sleevePrice=325.8186066135, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=420 L, uom=mm, unitPrice=0.716780208375, sleevePrice=329.7188958525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=450 L, uom=mm, unitPrice=0.7556417859375, sleevePrice=347.59522153125, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=480 L, uom=mm, unitPrice=0.789740530425, sleevePrice=363.2806439955, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=510 L, uom=mm, unitPrice=0.82852359975, sleevePrice=381.120855885, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=540 L, uom=mm, unitPrice=0.8629625466, sleevePrice=396.962771436, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=600 L, uom=mm, unitPrice=0.9358443604125, sleevePrice=430.48840578975, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=728 L, uom=mm, unitPrice=1.090165385925, sleevePrice=501.4760775255, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=L, description=817 L, uom=mm, unitPrice=1.2126056481, sleevePrice=642.680993493, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=240 H, uom=mm, unitPrice=0.53417004795, sleevePrice=245.718222057, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=270 H, uom=mm, unitPrice=0.573057794925, sleevePrice=263.6065856655, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=300 H, uom=mm, unitPrice=0.6115006618875, sleevePrice=281.29030446825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=330 H, uom=mm, unitPrice=0.6520632512625, sleevePrice=299.94909558075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=360 H, uom=mm, unitPrice=0.69055845705, sleevePrice=317.656890243, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=390 H, uom=mm, unitPrice=0.72907983225, sleevePrice=335.376722835, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=420 H, uom=mm, unitPrice=0.76927604985, sleevePrice=353.866982931, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=450 H, uom=mm, unitPrice=0.8081376274125, sleevePrice=371.74330860975, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=480 H, uom=mm, unitPrice=0.8483076756, sleevePrice=390.221530776, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=510 H, uom=mm, unitPrice=0.8854420719375, sleevePrice=407.30335309125, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=540 H, uom=mm, unitPrice=0.925298087175, sleevePrice=425.6371201005, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=570 H, uom=mm, unitPrice=0.9644736976875, sleevePrice=443.65790093625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=600 H, uom=mm, unitPrice=1.002968903475, sleevePrice=461.3656955985, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=630 H, uom=mm, unitPrice=1.041804311625, sleevePrice=479.2299833475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=660 H, uom=mm, unitPrice=1.0816603268625, sleevePrice=497.56375035675, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=670 H, uom=mm, unitPrice=1.0980423790875, sleevePrice=505.09949438025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=700 H, uom=mm, unitPrice=1.133815965975, sleevePrice=521.5553443485, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=725 H, uom=mm, unitPrice=1.1654809551, sleevePrice=536.121239346, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=750 H, uom=mm, unitPrice=1.2151243306125, sleevePrice=558.95719208175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=800 H, uom=mm, unitPrice=1.276179545025, sleevePrice=676.37515886325, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=850 H, uom=mm, unitPrice=1.344182491575, sleevePrice=712.41672053475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=900 H, uom=mm, unitPrice=1.411912881225, sleevePrice=748.31382704925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=1000 H, uom=mm, unitPrice=1.54171810485, sleevePrice=817.1105955705, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=1100 H, uom=mm, unitPrice=1.67863252095, sleevePrice=889.6752361035, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=1120 H, uom=mm, unitPrice=1.701095752125, sleevePrice=901.58074862625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=1140 H, uom=mm, unitPrice=1.7327350656, sleevePrice=918.349584768, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=1150 H, uom=mm, unitPrice=1.73895844815, sleevePrice=921.6479775195, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=1250 H, uom=mm, unitPrice=1.874669071275, sleevePrice=993.57460777575, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=1400 H, uom=mm, unitPrice=2.074862114325, sleevePrice=1099.6769205923, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=1645 H, uom=mm, unitPrice=2.437953331275, sleevePrice=1292.1152655757, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=H, description=1700 H, uom=mm, unitPrice=2.465163595125, sleevePrice=1306.5367054163, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XH, description=507 XH, uom=mm, unitPrice=1.801623822075, sleevePrice=954.86062569975, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XH, description=534 XH, uom=mm, unitPrice=1.7143320434625, sleevePrice=788.59273999275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XH, description=560 XH, uom=mm, unitPrice=1.912827037275, sleevePrice=1013.7983297557, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XH, description=630 XH, uom=mm, unitPrice=2.0621655054, sleevePrice=1092.947717862, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XH, description=700 XH, uom=mm, unitPrice=2.206416244725, sleevePrice=1169.4006097042, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XH, description=770 XH, uom=mm, unitPrice=2.353960379925, sleevePrice=1247.5990013602, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XH, description=840 XH, uom=mm, unitPrice=2.498279258475, sleevePrice=1324.0880069917, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XH, description=980 XH, uom=mm, unitPrice=2.791891179, sleevePrice=1479.70232487, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XH, description=1120 XH, uom=mm, unitPrice=3.0857983695, sleevePrice=1635.473135835, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XH, description=1260 XH, uom=mm, unitPrice=3.379728273075, sleevePrice=1791.2559847297, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XH, description=1400 XH, uom=mm, unitPrice=3.669229127025, sleevePrice=1944.6914373232, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XH, description=1540 XH, uom=mm, unitPrice=3.96075144465, sleevePrice=2099.1982656645, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XH, description=1750 XH, uom=mm, unitPrice=4.403361137175, sleevePrice=2333.7814027028, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XXH, description=700 XXH, uom=mm, unitPrice=3.581692935975, sleevePrice=1898.2972560668, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XXH, description=800 XXH, uom=mm, unitPrice=3.91368995325, sleevePrice=2074.2556752225, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XXH, description=900 XXH, uom=mm, unitPrice=4.25756590875, sleevePrice=2256.5099316375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XXH, description=1000 XXH, uom=mm, unitPrice=4.5967629708, sleevePrice=2436.284374524, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XXH, description=1200 XXH, uom=mm, unitPrice=5.275543217175, sleevePrice=2796.0379051028, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XXH, description=1400 XXH, uom=mm, unitPrice=5.9540054805, sleevePrice=3155.622904665, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XXH, description=1600 XXH, uom=mm, unitPrice=6.631309377, sleevePrice=3514.59396981, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN (MXL, XL, L, H, XH, XXH), profile=XXH, description=1800 XXH, uom=mm, unitPrice=7.3084315689, sleevePrice=3873.468731517, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=90 RPP3, uom=mm, unitPrice=0.41514958485, sleevePrice=220.0292799705, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=105 RPP3, uom=mm, unitPrice=0.41296606031554, sleevePrice=152.79744231675, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=129 PP3, uom=mm, unitPrice=0.42946127756757, sleevePrice=158.9006727, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=141 RPP3, uom=mm, unitPrice=0.42946127756757, sleevePrice=158.9006727, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=144 RPP3, uom=mm, unitPrice=0.42946127756757, sleevePrice=158.9006727, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=147 RPP3, uom=mm, unitPrice=0.42946127756757, sleevePrice=158.9006727, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=150 RPP3, uom=mm, unitPrice=0.42946127756757, sleevePrice=158.9006727, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=159 RPP3, uom=mm, unitPrice=0.43795289828311, sleevePrice=162.04257236475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=168 RPP3, uom=mm, unitPrice=0.43795289828311, sleevePrice=162.04257236475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=174 RPP3, uom=mm, unitPrice=0.43795289828311, sleevePrice=162.04257236475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=177 RPP3, uom=mm, unitPrice=0.44602156471014, sleevePrice=165.02797894275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=180 RPP3, uom=mm, unitPrice=0.44602156471014, sleevePrice=165.02797894275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=186 RPP3, uom=mm, unitPrice=0.44602156471014, sleevePrice=165.02797894275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=195 RPP3, uom=mm, unitPrice=0.44602156471014, sleevePrice=165.02797894275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=201 RPP3, uom=mm, unitPrice=0.45441558058986, sleevePrice=168.13376481825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=204 RPP3, uom=mm, unitPrice=0.45441558058986, sleevePrice=168.13376481825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=210 RPP3, uom=mm, unitPrice=0.45441558058986, sleevePrice=168.13376481825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=213 RPP3, uom=mm, unitPrice=0.45441558058986, sleevePrice=168.13376481825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=225 RPP3, uom=mm, unitPrice=0.46251678196216, sleevePrice=171.131209326, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=231 RPP3, uom=mm, unitPrice=0.4710084026777, sleevePrice=174.27310899075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=240 RPP3, uom=mm, unitPrice=0.4710084026777, sleevePrice=174.27310899075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=243 RPP3, uom=mm, unitPrice=0.4710084026777, sleevePrice=174.27310899075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=246 RPP3, uom=mm, unitPrice=0.4710084026777, sleevePrice=174.27310899075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=249 RPP3, uom=mm, unitPrice=0.4710084026777, sleevePrice=174.27310899075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=252 RPP3, uom=mm, unitPrice=0.4710084026777, sleevePrice=174.27310899075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=255 RPP3, uom=mm, unitPrice=0.4710084026777, sleevePrice=174.27310899075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=261 RPP3, uom=mm, unitPrice=0.47904453415946, sleevePrice=177.246477639, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=264 RPP3, uom=mm, unitPrice=0.47904453415946, sleevePrice=177.246477639, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=267 RPP3, uom=mm, unitPrice=0.47904453415946, sleevePrice=177.246477639, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=270 RPP3, uom=mm, unitPrice=0.47904453415946, sleevePrice=177.246477639, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=276 RPP3, uom=mm, unitPrice=0.47904453415946, sleevePrice=177.246477639, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=285 RPP3, uom=mm, unitPrice=0.47904453415946, sleevePrice=177.246477639, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=288 RPP3, uom=mm, unitPrice=0.48747108498446, sleevePrice=180.36430144425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=291 RPP3, uom=mm, unitPrice=0.48747108498446, sleevePrice=180.36430144425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=297 RPP3, uom=mm, unitPrice=0.48747108498446, sleevePrice=180.36430144425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=300 RPP3, uom=mm, unitPrice=0.48747108498446, sleevePrice=180.36430144425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=312 RPP3, uom=mm, unitPrice=0.48747108498446, sleevePrice=180.36430144425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=318 RPP3, uom=mm, unitPrice=0.50403137212703, sleevePrice=186.491607687, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=327 RPP3, uom=mm, unitPrice=0.50403137212703, sleevePrice=186.491607687, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=330 RPP3, uom=mm, unitPrice=0.50403137212703, sleevePrice=186.491607687, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=333 RPP3, uom=mm, unitPrice=0.50403137212703, sleevePrice=186.491607687, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=336 RPP3, uom=mm, unitPrice=0.50403137212703, sleevePrice=186.491607687, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=339 RPP3, uom=mm, unitPrice=0.51210003855405, sleevePrice=189.477014265, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=345 RPP3, uom=mm, unitPrice=0.51210003855405, sleevePrice=189.477014265, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=357 RPP3, uom=mm, unitPrice=0.51210003855405, sleevePrice=189.477014265, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=363 RPP3, uom=mm, unitPrice=0.51210003855405, sleevePrice=189.477014265, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=375 RPP3, uom=mm, unitPrice=0.51210003855405, sleevePrice=189.477014265, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=384 RPP3, uom=mm, unitPrice=0.51210003855405, sleevePrice=189.477014265, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=390 RPP3, uom=mm, unitPrice=0.52859525580608, sleevePrice=195.58024464825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=393 RPP3, uom=mm, unitPrice=0.52859525580608, sleevePrice=195.58024464825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=405 RPP3, uom=mm, unitPrice=0.52859525580608, sleevePrice=195.58024464825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=420 RPP3, uom=mm, unitPrice=0.52596440217391, sleevePrice=241.943625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=432 RPP3, uom=mm, unitPrice=0.54515554294865, sleevePrice=201.707550891, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=447 RPP3, uom=mm, unitPrice=0.54515554294865, sleevePrice=201.707550891, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=474 RPP3, uom=mm, unitPrice=0.56158569031014, sleevePrice=207.78670541475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=480 RPP3, uom=mm, unitPrice=0.56158569031014, sleevePrice=207.78670541475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=486 RPP3, uom=mm, unitPrice=0.56158569031014, sleevePrice=207.78670541475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=489 RPP3, uom=mm, unitPrice=0.56158569031014, sleevePrice=207.78670541475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=495 RPP3, uom=mm, unitPrice=0.568242623025, sleevePrice=261.3916065915, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=501 RPP3, uom=mm, unitPrice=0.568242623025, sleevePrice=261.3916065915, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=510 RPP3, uom=mm, unitPrice=0.568242623025, sleevePrice=261.3916065915, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=513 RPP3, uom=mm, unitPrice=0.568242623025, sleevePrice=261.3916065915, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=522 RPP3, uom=mm, unitPrice=0.5767738515, sleevePrice=265.31597169, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=531 RPP3, uom=mm, unitPrice=0.5767738515, sleevePrice=265.31597169, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=537 RPP3, uom=mm, unitPrice=0.5767738515, sleevePrice=265.31597169, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=564 RPP3, uom=mm, unitPrice=0.5931297343125, sleevePrice=272.83967778375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=570 RPP3, uom=mm, unitPrice=0.5931297343125, sleevePrice=272.83967778375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=576 RPP3, uom=mm, unitPrice=0.5931297343125, sleevePrice=272.83967778375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=579 RPP3, uom=mm, unitPrice=0.5931297343125, sleevePrice=272.83967778375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=582 RPP3, uom=mm, unitPrice=0.6180168456, sleevePrice=284.287748976, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=597 RPP3, uom=mm, unitPrice=0.6180168456, sleevePrice=284.287748976, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=600 RPP3, uom=mm, unitPrice=0.6180168456, sleevePrice=284.287748976, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=633 RPP3, uom=mm, unitPrice=0.6261817023, sleevePrice=288.043583058, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=648 RPP3, uom=mm, unitPrice=0.6425375851125, sleevePrice=295.56728915175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=669 RPP3, uom=mm, unitPrice=0.6425375851125, sleevePrice=295.56728915175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=711 RPP3, uom=mm, unitPrice=0.658893467925, sleevePrice=303.0909952455, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=735 RPP3, uom=mm, unitPrice=0.6919192665, sleevePrice=318.28286259, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=738 RPP3, uom=mm, unitPrice=0.6919192665, sleevePrice=318.28286259, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=756 RPP3, uom=mm, unitPrice=0.708301318725, sleevePrice=325.8186066135, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=804 RPP3, uom=mm, unitPrice=0.7331360911875, sleevePrice=337.24260194625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=882 RPP3, uom=mm, unitPrice=0.749491974, sleevePrice=344.76630804, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=945 RPP3, uom=mm, unitPrice=0.7662142285875, sleevePrice=352.45854515025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=1062 RPP3, uom=mm, unitPrice=0.7662142285875, sleevePrice=352.45854515025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=1125 RPP3, uom=mm, unitPrice=0.7989259942125, sleevePrice=367.50595733775, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=1245 RPP3, uom=mm, unitPrice=0.8401166494875, sleevePrice=386.45365876425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=1263 RPP3, uom=mm, unitPrice=0.8401166494875, sleevePrice=386.45365876425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=1500 RPP3, uom=mm, unitPrice=0.955654605675, sleevePrice=439.6011186105, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=1530 RPP3, uom=mm, unitPrice=0.963819462375, sleevePrice=443.3569526925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP3, description=1863 RPP3, uom=mm, unitPrice=1.0707738512625, sleevePrice=492.55597158075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=180 RPP5, uom=mm, unitPrice=0.45659542192297, sleevePrice=168.9403061115, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=225 RPP5, uom=mm, unitPrice=0.46167087338514, sleevePrice=170.8182231525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=235 RPP5, uom=mm, unitPrice=0.46167087338514, sleevePrice=170.8182231525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=245 RPP5, uom=mm, unitPrice=0.46167087338514, sleevePrice=170.8182231525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=255 RPP5, uom=mm, unitPrice=0.48499842914392, sleevePrice=179.44941878325, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=265 RPP5, uom=mm, unitPrice=0.49889085077432, sleevePrice=184.5896147865, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=270 RPP5, uom=mm, unitPrice=0.49889085077432, sleevePrice=184.5896147865, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=280 RPP5, uom=mm, unitPrice=0.50364095278378, sleevePrice=186.34715253, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=285 RPP5, uom=mm, unitPrice=0.50364095278378, sleevePrice=186.34715253, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=295 RPP5, uom=mm, unitPrice=0.50364095278378, sleevePrice=186.34715253, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=300 RPP5, uom=mm, unitPrice=0.50865133435541, sleevePrice=188.2009937115, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=305 RPP5, uom=mm, unitPrice=0.50865133435541, sleevePrice=188.2009937115, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=325 RPP5, uom=mm, unitPrice=0.52267389576689, sleevePrice=193.38934143375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=345 RPP5, uom=mm, unitPrice=0.53663138728784, sleevePrice=198.5536132965, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=350 RPP5, uom=mm, unitPrice=0.53663138728784, sleevePrice=198.5536132965, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=375 RPP5, uom=mm, unitPrice=0.5510118330973, sleevePrice=203.874378246, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=400 RPP5, uom=mm, unitPrice=0.56503439450878, sleevePrice=209.06272596825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=420 RPP5, uom=mm, unitPrice=0.56965435673716, sleevePrice=210.77211199275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=425 RPP5, uom=mm, unitPrice=0.58361184825811, sleevePrice=215.9363838555, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=450 RPP5, uom=mm, unitPrice=0.59301444744122, sleevePrice=219.41534555325, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=455 RPP5, uom=mm, unitPrice=0.59301444744122, sleevePrice=219.41534555325, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=460 RPP5, uom=mm, unitPrice=0.59808989890338, sleevePrice=221.29326259425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=465 RPP5, uom=mm, unitPrice=0.59808989890338, sleevePrice=221.29326259425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=475 RPP5, uom=mm, unitPrice=0.60270986113176, sleevePrice=223.00264861875, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=500 RPP5, uom=mm, unitPrice=0.5996197486125, sleevePrice=275.82508436175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=525 RPP5, uom=mm, unitPrice=0.6088313818125, sleevePrice=280.06243563375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=535 RPP5, uom=mm, unitPrice=0.6180168456, sleevePrice=284.287748976, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=565 RPP5, uom=mm, unitPrice=0.640784234475, sleevePrice=294.7607478585, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=575 RPP5, uom=mm, unitPrice=0.640784234475, sleevePrice=294.7607478585, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=580 RPP5, uom=mm, unitPrice=0.645285373425, sleevePrice=296.8312717755, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=600 RPP5, uom=mm, unitPrice=0.6544184983875, sleevePrice=301.03250925825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=610 RPP5, uom=mm, unitPrice=0.6636301315875, sleevePrice=305.26986053025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=615 RPP5, uom=mm, unitPrice=0.6690995388, sleevePrice=307.785787848, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=635 RPP5, uom=mm, unitPrice=0.67695036255, sleevePrice=311.397166773, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=640 RPP5, uom=mm, unitPrice=0.6861358263375, sleevePrice=315.62248011525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=670 RPP5, uom=mm, unitPrice=0.6997962596625, sleevePrice=321.90627944475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=675 RPP5, uom=mm, unitPrice=0.6997962596625, sleevePrice=321.90627944475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=700 RPP5, uom=mm, unitPrice=0.7222496155875, sleevePrice=332.23482317025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=705 RPP5, uom=mm, unitPrice=0.7222496155875, sleevePrice=332.23482317025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=710 RPP5, uom=mm, unitPrice=0.7222496155875, sleevePrice=332.23482317025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=725 RPP5, uom=mm, unitPrice=0.7314874182, sleevePrice=336.484212372, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=740 RPP5, uom=mm, unitPrice=0.7358838795, sleevePrice=338.50658457, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=750 RPP5, uom=mm, unitPrice=0.7409869149375, sleevePrice=340.85398087125, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=755 RPP5, uom=mm, unitPrice=0.7409869149375, sleevePrice=340.85398087125, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=800 RPP5, uom=mm, unitPrice=0.7679414098125, sleevePrice=353.25304851375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=835 RPP5, uom=mm, unitPrice=0.786286167975, sleevePrice=361.6916372685, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=850 RPP5, uom=mm, unitPrice=0.7996063989375, sleevePrice=367.81894351125, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=890 RPP5, uom=mm, unitPrice=0.8224261266375, sleevePrice=378.31601825325, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=900 RPP5, uom=mm, unitPrice=0.82684875735, sleevePrice=380.350428381, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=935 RPP5, uom=mm, unitPrice=0.8404830212625, sleevePrice=386.62218978075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=940 RPP5, uom=mm, unitPrice=0.8544574875375, sleevePrice=393.05044426725, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=950 RPP5, uom=mm, unitPrice=0.8588539488375, sleevePrice=395.07281646525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=980 RPP5, uom=mm, unitPrice=0.87248821275, sleevePrice=401.344577865, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1000 RPP5, uom=mm, unitPrice=0.8905712767875, sleevePrice=409.66278732225, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1025 RPP5, uom=mm, unitPrice=0.912841446825, sleevePrice=419.9070655395, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1050 RPP5, uom=mm, unitPrice=0.9178136352, sleevePrice=422.194272192, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1100 RPP5, uom=mm, unitPrice=0.949478624325, sleevePrice=436.7601671895, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1125 RPP5, uom=mm, unitPrice=0.9726647238, sleevePrice=447.425772948, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1135 RPP5, uom=mm, unitPrice=0.981300629925, sleevePrice=451.3982897655, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1195 RPP5, uom=mm, unitPrice=1.0132011437625, sleevePrice=466.07252613075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1200 RPP5, uom=mm, unitPrice=1.0132011437625, sleevePrice=466.07252613075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1240 RPP5, uom=mm, unitPrice=1.0268615770875, sleevePrice=472.35632546025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1270 RPP5, uom=mm, unitPrice=1.0404696715875, sleevePrice=478.61604893025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1420 RPP5, uom=mm, unitPrice=1.1269595799, sleevePrice=518.401406754, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1500 RPP5, uom=mm, unitPrice=1.1904727440375, sleevePrice=547.61746225725, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1595 RPP5, uom=mm, unitPrice=1.1910484711125, sleevePrice=547.88229671175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1605 RPP5, uom=mm, unitPrice=1.1985329230875, sleevePrice=551.32514462025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1690 RPP5, uom=mm, unitPrice=1.2632760496125, sleevePrice=581.10698282175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1790 RPP5, uom=mm, unitPrice=1.3405804941375, sleevePrice=616.66702730325, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1800 RPP5, uom=mm, unitPrice=1.3405804941375, sleevePrice=616.66702730325, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1870 RPP5, uom=mm, unitPrice=1.39273613325, sleevePrice=640.658621295, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1895 RPP5, uom=mm, unitPrice=1.3951175497875, sleevePrice=641.75407290225, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=1945 RPP5, uom=mm, unitPrice=1.431937913175, sleevePrice=658.6914400605, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=2000 RPP5, uom=mm, unitPrice=1.476963128025, sleevePrice=782.79045785325, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=2250 RPP5, uom=mm, unitPrice=1.62421199325, sleevePrice=860.8323564225, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP5, description=2525 RPP5, uom=mm, unitPrice=1.776230604225, sleevePrice=941.40222023925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=288 RPP8, uom=mm, unitPrice=0.32570733710068, sleevePrice=120.51171472725, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=320 RPP8, uom=mm, unitPrice=0.34900235791419, sleevePrice=129.13087242825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=352 RPP8, uom=mm, unitPrice=0.37398919588176, sleevePrice=138.37600247625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=360 RPP8, uom=mm, unitPrice=0.3824808165973, sleevePrice=141.517902141, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=384 RPP8, uom=mm, unitPrice=0.40958242600743, sleevePrice=151.54549762275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=408 RPP8, uom=mm, unitPrice=0.43964471543716, sleevePrice=162.66854471175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=416 RPP8, uom=mm, unitPrice=0.44947026890878, sleevePrice=166.30399949625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=456 RPP8, uom=mm, unitPrice=0.49797987230676, sleevePrice=184.2525527535, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=480 RPP8, uom=mm, unitPrice=0.526371563025, sleevePrice=242.1309189915, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=536 RPP8, uom=mm, unitPrice=0.5597375639625, sleevePrice=257.47927942275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=544 RPP8, uom=mm, unitPrice=0.5873201247375, sleevePrice=270.16725737925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=560 RPP8, uom=mm, unitPrice=0.59278953195, sleevePrice=272.683184697, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=600 RPP8, uom=mm, unitPrice=0.610846426575, sleevePrice=280.9893562245, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=608 RPP8, uom=mm, unitPrice=0.6190374526875, sleevePrice=284.75722823625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=632 RPP8, uom=mm, unitPrice=0.63131090715, sleevePrice=290.403017289, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=640 RPP8, uom=mm, unitPrice=0.643924563975, sleevePrice=296.2052994285, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=680 RPP8, uom=mm, unitPrice=0.658893467925, sleevePrice=303.0909952455, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=720 RPP8, uom=mm, unitPrice=0.6990635161125, sleevePrice=321.56921741175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=760 RPP8, uom=mm, unitPrice=0.7385269901625, sleevePrice=339.72241547475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=800 RPP8, uom=mm, unitPrice=0.7492041104625, sleevePrice=344.63389081275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=840 RPP8, uom=mm, unitPrice=0.76822927335, sleevePrice=353.385465741, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=880 RPP8, uom=mm, unitPrice=0.7903947657375, sleevePrice=363.58159223925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=896 RPP8, uom=mm, unitPrice=0.8047617732, sleevePrice=370.190415672, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=920 RPP8, uom=mm, unitPrice=0.8179511571, sleevePrice=376.257532266, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=960 RPP8, uom=mm, unitPrice=0.8455860567, sleevePrice=388.969586082, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=1000 RPP8, uom=mm, unitPrice=0.880810085925, sleevePrice=405.1726395255, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=1040 RPP8, uom=mm, unitPrice=0.906246754875, sleevePrice=416.8735072425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=1080 RPP8, uom=mm, unitPrice=0.9338031462375, sleevePrice=429.54944726925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=1120 RPP8, uom=mm, unitPrice=0.9590304598875, sleevePrice=441.15401154825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=1200 RPP8, uom=mm, unitPrice=1.00877851305, sleevePrice=464.038116003, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=1224 RPP8, uom=mm, unitPrice=1.0281700477125, sleevePrice=472.95822194775, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=1280 RPP8, uom=mm, unitPrice=1.0639436346, sleevePrice=489.414071916, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=1352 RPP8, uom=mm, unitPrice=1.0874699364375, sleevePrice=500.23617076125, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=1424 RPP8, uom=mm, unitPrice=1.1454090157125, sleevePrice=526.88814722775, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=1440 RPP8, uom=mm, unitPrice=1.156635693675, sleevePrice=532.0524190905, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=1464 RPP8, uom=mm, unitPrice=1.2077445562875, sleevePrice=555.56249589225, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=1600 RPP8, uom=mm, unitPrice=1.2561318, sleevePrice=577.820628, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=1680 RPP8, uom=mm, unitPrice=1.318886051175, sleevePrice=606.6875835405, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=1760 RPP8, uom=mm, unitPrice=1.3582971864, sleevePrice=624.816705744, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=1800 RPP8, uom=mm, unitPrice=1.3876069284, sleevePrice=638.299187064, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=1904 RPP8, uom=mm, unitPrice=1.526357153475, sleevePrice=702.1242905985, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=2000 RPP8, uom=mm, unitPrice=1.603295226225, sleevePrice=737.5158040635, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=2200 RPP8, uom=mm, unitPrice=1.727102223, sleevePrice=915.36417819, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=2272 RPP8, uom=mm, unitPrice=1.783635066675, sleevePrice=945.32658533775, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=2400 RPP8, uom=mm, unitPrice=2.147304973275, sleevePrice=987.7602877065, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=2520 RPP8, uom=mm, unitPrice=1.956935828925, sleevePrice=1037.1759893303, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=2600 RPP8, uom=mm, unitPrice=1.9731302514, sleevePrice=1045.759033242, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=2800 RPP8, uom=mm, unitPrice=2.1357558684, sleevePrice=1131.950610252, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=3048 RPP8, uom=mm, unitPrice=2.48113088685, sleevePrice=1314.9993700305, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=3280 RPP8, uom=mm, unitPrice=2.672715674475, sleevePrice=1416.5393074717, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=3600 RPP8, uom=mm, unitPrice=2.928782882025, sleevePrice=1552.2549274733, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP8, description=4400 RPP8, uom=mm, unitPrice=3.583464555825, sleevePrice=1899.2362145873, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=966 RPP14, uom=mm, unitPrice=1.7404491171375, sleevePrice=800.60659388325, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=994 RPP14, uom=mm, unitPrice=1.791400963275, sleevePrice=824.0444431065, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=1092 RPP14, uom=mm, unitPrice=1.8117607662, sleevePrice=833.409952452, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=1106 RPP14, uom=mm, unitPrice=1.837249773975, sleevePrice=845.1348960285, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=1190 RPP14, uom=mm, unitPrice=1.9291305812625, sleevePrice=887.40006738075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=1260 RPP14, uom=mm, unitPrice=1.9391796356625, sleevePrice=892.02263240475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=1288 RPP14, uom=mm, unitPrice=1.9597749633, sleevePrice=901.496483118, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=1344 RPP14, uom=mm, unitPrice=1.9749793919625, sleevePrice=908.49052030275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=1400 RPP14, uom=mm, unitPrice=2.056549450725, sleevePrice=946.0127473335, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=1442 RPP14, uom=mm, unitPrice=2.1190158383625, sleevePrice=974.74728564675, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=1568 RPP14, uom=mm, unitPrice=2.1839944896, sleevePrice=1004.637465216, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=1610 RPP14, uom=mm, unitPrice=2.24250929595, sleevePrice=1031.554276137, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=1750 RPP14, uom=mm, unitPrice=2.3808146410125, sleevePrice=1095.1747348657, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=1764 RPP14, uom=mm, unitPrice=2.403032472225, sleevePrice=1105.3949372235, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=1778 RPP14, uom=mm, unitPrice=2.4260353858125, sleevePrice=1115.9762774737, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=1848 RPP14, uom=mm, unitPrice=2.4388060591125, sleevePrice=1121.8507871917, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=1890 RPP14, uom=mm, unitPrice=2.4948871101, sleevePrice=1147.648070646, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=1904 RPP14, uom=mm, unitPrice=2.4973208654625, sleevePrice=1148.7675981127, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=1960 RPP14, uom=mm, unitPrice=2.4997807902375, sleevePrice=1149.8991635093, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=2100 RPP14, uom=mm, unitPrice=3.1437621369, sleevePrice=1666.193932557, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=2240 RPP14, uom=mm, unitPrice=3.2523306354, sleevePrice=1723.735236762, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=2310 RPP14, uom=mm, unitPrice=3.3539943591, sleevePrice=1777.617010323, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=2380 RPP14, uom=mm, unitPrice=3.40064701515, sleevePrice=1802.3429180295, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=2450 RPP14, uom=mm, unitPrice=3.50067539745, sleevePrice=1855.3579606485, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=2590 RPP14, uom=mm, unitPrice=3.6115606296, sleevePrice=1914.127133688, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=2660 RPP14, uom=mm, unitPrice=3.734960766075, sleevePrice=1979.5292060198, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=2800 RPP14, uom=mm, unitPrice=3.844801196775, sleevePrice=2037.7446342907, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=2968 RPP14, uom=mm, unitPrice=4.0755433257, sleevePrice=2160.037962621, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=3150 RPP14, uom=mm, unitPrice=4.101822353475, sleevePrice=2173.9658473417, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=3360 RPP14, uom=mm, unitPrice=4.3723577898, sleevePrice=2317.349628594, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=3500 RPP14, uom=mm, unitPrice=4.476451812525, sleevePrice=2372.5194606382, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=3850 RPP14, uom=mm, unitPrice=4.849309651725, sleevePrice=2570.1341154143, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=3920 RPP14, uom=mm, unitPrice=5.050002382425, sleevePrice=2676.5012626852, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=4326 RPP14, uom=mm, unitPrice=5.495632913925, sleevePrice=2912.6854443802, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=4578 RPP14, uom=mm, unitPrice=5.6153989584, sleevePrice=2976.161447952, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP14, description=4956 RPP14, uom=mm, unitPrice=6.06398218965, sleevePrice=3213.9105605145, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP20, description=2000 RPP20, uom=mm, unitPrice=5.785501995, sleevePrice=1909.21565835, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP20, description=2500 RPP20, uom=mm, unitPrice=6.981999255, sleevePrice=2304.05975415, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP20, description=3400 RPP20, uom=mm, unitPrice=9.1962487575, sleevePrice=3034.762089975, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP20, description=3800 RPP20, uom=mm, unitPrice=10.2103531425, sleevePrice=3369.416537025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP20, description=4200 RPP20, uom=mm, unitPrice=11.3193018225, sleevePrice=3735.369601425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP20, description=4600 RPP20, uom=mm, unitPrice=12.35894121, sleevePrice=4078.4505993, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP20, description=5000 RPP20, uom=mm, unitPrice=31.802021685, sleevePrice=10494.66715605, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP BELT (RPP3, RPP5, RPP8, RPP14, RPP20), profile=RPP20, description=6200 RPP20, uom=mm, unitPrice=34.982953425, sleevePrice=11544.37463025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=180 SLV5, uom=mm, unitPrice=0.54795354824189, sleevePrice=202.7428128495, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=225 SLV5, uom=mm, unitPrice=0.55400504806216, sleevePrice=204.981867783, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=235 SLV5, uom=mm, unitPrice=0.55400504806216, sleevePrice=204.981867783, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=245 SLV5, uom=mm, unitPrice=0.55400504806216, sleevePrice=204.981867783, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=255 SLV5, uom=mm, unitPrice=0.58198510099459, sleevePrice=215.334487368, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=265 SLV5, uom=mm, unitPrice=0.59867552791824, sleevePrice=221.50994532975, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=270 SLV5, uom=mm, unitPrice=0.59867552791824, sleevePrice=221.50994532975, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=280 SLV5, uom=mm, unitPrice=0.60436914334054, sleevePrice=223.616583036, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=285 SLV5, uom=mm, unitPrice=0.60436914334054, sleevePrice=223.616583036, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=295 SLV5, uom=mm, unitPrice=0.60436914334054, sleevePrice=223.616583036, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=300 SLV5, uom=mm, unitPrice=0.61045317810608, sleevePrice=225.86767589925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=305 SLV5, uom=mm, unitPrice=0.61045317810608, sleevePrice=225.86767589925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=325 SLV5, uom=mm, unitPrice=0.62724120986554, sleevePrice=232.07924765025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=345 SLV5, uom=mm, unitPrice=0.64399670667973, sleevePrice=238.2787814715, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=350 SLV5, uom=mm, unitPrice=0.64399670667973, sleevePrice=238.2787814715, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=375 SLV5, uom=mm, unitPrice=0.66124022767297, sleevePrice=244.658884239, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=400 SLV5, uom=mm, unitPrice=0.67802825943243, sleevePrice=250.87045599, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=420 SLV5, uom=mm, unitPrice=0.68362427001892, sleevePrice=252.940979907, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=425 SLV5, uom=mm, unitPrice=0.70037976683311, sleevePrice=259.14051372825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=450 SLV5, uom=mm, unitPrice=0.71157178800608, sleevePrice=263.28156156225, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=455 SLV5, uom=mm, unitPrice=0.71157178800608, sleevePrice=263.28156156225, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=460 SLV5, uom=mm, unitPrice=0.71768835771689, sleevePrice=265.54469235525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=465 SLV5, uom=mm, unitPrice=0.71768835771689, sleevePrice=265.54469235525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=475 SLV5, uom=mm, unitPrice=0.72321929841284, sleevePrice=267.59114041275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=500 SLV5, uom=mm, unitPrice=0.7195279966875, sleevePrice=330.98287847625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=525 SLV5, uom=mm, unitPrice=0.730597658175, sleevePrice=336.0749227605, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=535 SLV5, uom=mm, unitPrice=0.74164115025, sleevePrice=341.154929115, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=565 SLV5, uom=mm, unitPrice=0.7689358474875, sleevePrice=353.71048984425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=575 SLV5, uom=mm, unitPrice=0.7689358474875, sleevePrice=353.71048984425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=580 SLV5, uom=mm, unitPrice=0.7743267464625, sleevePrice=356.19030337275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=600 SLV5, uom=mm, unitPrice=0.7852917303, sleevePrice=361.234195938, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=610 SLV5, uom=mm, unitPrice=0.7963613917875, sleevePrice=366.32624022225, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=615 SLV5, uom=mm, unitPrice=0.8029037449125, sleevePrice=369.33572265975, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=635 SLV5, uom=mm, unitPrice=0.8123247334125, sleevePrice=373.66937736975, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=640 SLV5, uom=mm, unitPrice=0.8233943949, sleevePrice=378.761421654, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=670 SLV5, uom=mm, unitPrice=0.8397502777125, sleevePrice=386.28512774775, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=675 SLV5, uom=mm, unitPrice=0.8397502777125, sleevePrice=386.28512774775, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=700 SLV5, uom=mm, unitPrice=0.8667047725875, sleevePrice=398.68419539025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=705 SLV5, uom=mm, unitPrice=0.8667047725875, sleevePrice=398.68419539025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=710 SLV5, uom=mm, unitPrice=0.8667047725875, sleevePrice=398.68419539025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=725 SLV5, uom=mm, unitPrice=0.877774434075, sleevePrice=403.7762396745, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=740 SLV5, uom=mm, unitPrice=0.8830606554, sleevePrice=406.207901484, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=750 SLV5, uom=mm, unitPrice=0.8892104673375, sleevePrice=409.03681497525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=755 SLV5, uom=mm, unitPrice=0.8892104673375, sleevePrice=409.03681497525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=800 SLV5, uom=mm, unitPrice=0.921529691775, sleevePrice=423.9036582165, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=835 SLV5, uom=mm, unitPrice=0.9435905065125, sleevePrice=434.05163299575, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=850 SLV5, uom=mm, unitPrice=0.9595015093125, sleevePrice=441.37069428375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=890 SLV5, uom=mm, unitPrice=0.9869008842, sleevePrice=453.974406732, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=900 SLV5, uom=mm, unitPrice=0.9922132749375, sleevePrice=456.41810647125, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=935 SLV5, uom=mm, unitPrice=1.00856915775, sleevePrice=463.941812565, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=940 SLV5, uom=mm, unitPrice=1.02531758175, sleevePrice=471.646087605, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=950 SLV5, uom=mm, unitPrice=1.0306561419, sleevePrice=474.101825274, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=980 SLV5, uom=mm, unitPrice=1.0470120247125, sleevePrice=481.62553136775, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1000 SLV5, uom=mm, unitPrice=1.0686802982625, sleevePrice=491.59293720075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1025 SLV5, uom=mm, unitPrice=1.0954254378375, sleevePrice=503.89570140525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1050 SLV5, uom=mm, unitPrice=1.1013397250625, sleevePrice=506.61627352875, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1100 SLV5, uom=mm, unitPrice=1.139363881425, sleevePrice=524.1073854555, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1125 SLV5, uom=mm, unitPrice=1.167208136325, sleevePrice=536.9157427095, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1135 SLV5, uom=mm, unitPrice=1.1775450542625, sleevePrice=541.67072496075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1195 SLV5, uom=mm, unitPrice=1.2158570741625, sleevePrice=559.29425411475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1200 SLV5, uom=mm, unitPrice=1.2158570741625, sleevePrice=559.29425411475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1240 SLV5, uom=mm, unitPrice=1.232212956975, sleevePrice=566.8179602085, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1270 SLV5, uom=mm, unitPrice=1.2485688397875, sleevePrice=574.34166630225, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1420 SLV5, uom=mm, unitPrice=1.3523567297625, sleevePrice=622.08409569075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1500 SLV5, uom=mm, unitPrice=1.428588228375, sleevePrice=657.1505850525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1595 SLV5, uom=mm, unitPrice=1.4292948025125, sleevePrice=657.47560915575, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1605 SLV5, uom=mm, unitPrice=1.4382447415875, sleevePrice=661.59258113025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1690 SLV5, uom=mm, unitPrice=1.515889388475, sleevePrice=697.3091186985, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1790 SLV5, uom=mm, unitPrice=1.6087122946125, sleevePrice=740.00765552175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1800 SLV5, uom=mm, unitPrice=1.6087122946125, sleevePrice=740.00765552175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1870 SLV5, uom=mm, unitPrice=1.671231021075, sleevePrice=768.7662696945, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1895 SLV5, uom=mm, unitPrice=1.674161995275, sleevePrice=770.1145178265, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=1945 SLV5, uom=mm, unitPrice=1.718335963575, sleevePrice=790.4345432445, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=2000 SLV5, uom=mm, unitPrice=1.772323955325, sleevePrice=939.33169632225, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=2250 SLV5, uom=mm, unitPrice=1.9490543919, sleevePrice=1032.998827707, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV5, description=2525 SLV5, uom=mm, unitPrice=2.131463097225, sleevePrice=1129.6754415293, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=288 SLV8, uom=mm, unitPrice=0.39087483247703, sleevePrice=144.6236880165, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=320 SLV8, uom=mm, unitPrice=0.41882235046419, sleevePrice=154.96426967175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=352 SLV8, uom=mm, unitPrice=0.44881957000338, sleevePrice=166.06324090125, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=360 SLV8, uom=mm, unitPrice=0.45900300787297, sleevePrice=169.831112913, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=384 SLV8, uom=mm, unitPrice=0.49150541819797, sleevePrice=181.85700473325, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=408 SLV8, uom=mm, unitPrice=0.5275866725027, sleevePrice=195.207068826, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=416 SLV8, uom=mm, unitPrice=0.53936432269054, sleevePrice=199.5647993955, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=456 SLV8, uom=mm, unitPrice=0.59760187472432, sleevePrice=221.112693648, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=480 SLV8, uom=mm, unitPrice=0.6315987706875, sleevePrice=290.53543451625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=536 SLV8, uom=mm, unitPrice=0.671664141225, sleevePrice=308.9655049635, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=544 SLV8, uom=mm, unitPrice=0.704846956275, sleevePrice=324.2295998865, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=560 SLV8, uom=mm, unitPrice=0.7113631399875, sleevePrice=327.22704439425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=600 SLV8, uom=mm, unitPrice=0.733005244125, sleevePrice=337.1824122975, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=608 SLV8, uom=mm, unitPrice=0.7428187738125, sleevePrice=341.69663595375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=632 SLV8, uom=mm, unitPrice=0.75755215305, sleevePrice=348.473990403, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=640 SLV8, uom=mm, unitPrice=0.7726519040625, sleevePrice=355.41987586875, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=680 SLV8, uom=mm, unitPrice=0.790682629275, sleevePrice=363.7140094665, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=720 SLV8, uom=mm, unitPrice=0.8388866871, sleevePrice=385.887876066, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=760 SLV8, uom=mm, unitPrice=0.8862271543125, sleevePrice=407.66449098375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=800 SLV8, uom=mm, unitPrice=0.8989978276125, sleevePrice=413.53900070175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=840 SLV8, uom=mm, unitPrice=0.92189606355, sleevePrice=424.072189233, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=880 SLV8, uom=mm, unitPrice=0.94848418665, sleevePrice=436.302725859, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=896 SLV8, uom=mm, unitPrice=0.965703660075, sleevePrice=444.2236836345, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=920 SLV8, uom=mm, unitPrice=0.9815361546375, sleevePrice=451.50663113325, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=960 SLV8, uom=mm, unitPrice=1.0147451391, sleevePrice=466.782763986, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=1000 SLV8, uom=mm, unitPrice=1.0570087402875, sleevePrice=486.22402053225, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=1040 SLV8, uom=mm, unitPrice=1.0874699364375, sleevePrice=500.23617076125, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=1080 SLV8, uom=mm, unitPrice=1.12057424325, sleevePrice=515.464151895, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=1120 SLV8, uom=mm, unitPrice=1.1508522535125, sleevePrice=529.39203661575, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=1200 SLV8, uom=mm, unitPrice=1.210544683425, sleevePrice=556.8505543755, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=1224 SLV8, uom=mm, unitPrice=1.2338092911375, sleevePrice=567.55227392325, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=1280 SLV8, uom=mm, unitPrice=1.27675329705, sleevePrice=587.306516643, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=1352 SLV8, uom=mm, unitPrice=1.3049377543125, sleevePrice=600.27136698375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=1424 SLV8, uom=mm, unitPrice=1.3744960527375, sleevePrice=632.26818425925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=1440 SLV8, uom=mm, unitPrice=1.3879471307625, sleevePrice=638.45568015075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=1464 SLV8, uom=mm, unitPrice=1.4492882336625, sleevePrice=666.67258748475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=1600 SLV8, uom=mm, unitPrice=1.5073319905875, sleevePrice=693.37271567025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=1680 SLV8, uom=mm, unitPrice=1.582673729175, sleevePrice=728.0299154205, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=1760 SLV8, uom=mm, unitPrice=1.6299618575625, sleevePrice=749.78245447875, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=1800 SLV8, uom=mm, unitPrice=1.6651335479625, sleevePrice=765.96143206275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=1904 SLV8, uom=mm, unitPrice=1.8316495197, sleevePrice=842.558779062, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=2000 SLV8, uom=mm, unitPrice=1.9240013764125, sleevePrice=885.04063314975, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=2200 SLV8, uom=mm, unitPrice=2.072499954525, sleevePrice=1098.4249758982, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=2272 SLV8, uom=mm, unitPrice=2.140366622625, sleevePrice=1134.3943099912, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=2400 SLV8, uom=mm, unitPrice=2.576797371225, sleevePrice=1185.3267907635, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=2520 SLV8, uom=mm, unitPrice=2.348282111175, sleevePrice=1244.5895189228, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=2600 SLV8, uom=mm, unitPrice=2.36774721645, sleevePrice=1254.9060247185, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=2800 SLV8, uom=mm, unitPrice=2.562920669925, sleevePrice=1358.3479550603, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=3048 SLV8, uom=mm, unitPrice=2.97736614945, sleevePrice=1578.0040592085, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=3280 SLV8, uom=mm, unitPrice=3.207290607675, sleevePrice=1699.8640220677, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=3600 SLV8, uom=mm, unitPrice=3.514553086275, sleevePrice=1862.7131357257, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV8, description=4400 SLV8, uom=mm, unitPrice=4.30017563745, sleevePrice=2279.0930878485, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=966 SLV14, uom=mm, unitPrice=2.0885284728, sleevePrice=960.723097488, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=994 SLV14, uom=mm, unitPrice=2.1496602204, sleevePrice=988.843701384, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=1092 SLV14, uom=mm, unitPrice=2.1741286210875, sleevePrice=1000.0991657002, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=1106 SLV14, uom=mm, unitPrice=2.2046944948875, sleevePrice=1014.1594676483, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=1190 SLV14, uom=mm, unitPrice=2.31494622975, sleevePrice=1064.875265685, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=1260 SLV14, uom=mm, unitPrice=2.3270103289125, sleevePrice=1070.4247512997, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=1288 SLV14, uom=mm, unitPrice=2.351740423725, sleevePrice=1081.8005949135, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=1344 SLV14, uom=mm, unitPrice=2.369954334825, sleevePrice=1090.1789940195, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=1400 SLV14, uom=mm, unitPrice=2.4678802764, sleevePrice=1135.224927144, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=1442 SLV14, uom=mm, unitPrice=2.5428033043875, sleevePrice=1169.6895200182, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=1568 SLV14, uom=mm, unitPrice=2.6207358148125, sleevePrice=1205.5384748137, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=1610 SLV14, uom=mm, unitPrice=2.6910268567875, sleevePrice=1237.8723541222, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=1750 SLV14, uom=mm, unitPrice=2.8569932708625, sleevePrice=1314.2169045968, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=1764 SLV14, uom=mm, unitPrice=2.883607563375, sleevePrice=1326.4594791525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=1778 SLV14, uom=mm, unitPrice=2.9112162935625, sleevePrice=1339.1594950387, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=1848 SLV14, uom=mm, unitPrice=2.9265515692875, sleevePrice=1346.2137218722, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=1890 SLV14, uom=mm, unitPrice=2.9939116370625, sleevePrice=1377.1993530487, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=1904 SLV14, uom=mm, unitPrice=2.99681644185, sleevePrice=1378.535563251, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=1960 SLV14, uom=mm, unitPrice=2.99974741605, sleevePrice=1379.883811383, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=2100 SLV14, uom=mm, unitPrice=3.772528192125, sleevePrice=1999.4399418262, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=2240 SLV14, uom=mm, unitPrice=3.902810390325, sleevePrice=2068.4895068722, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=2310 SLV14, uom=mm, unitPrice=4.024779603075, sleevePrice=2133.1331896297, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=2380 SLV14, uom=mm, unitPrice=4.0808127591, sleevePrice=2162.830762323, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=2450 SLV14, uom=mm, unitPrice=4.200805934325, sleevePrice=2226.4271451923, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=2590 SLV14, uom=mm, unitPrice=4.33388184075, sleevePrice=2296.9573755975, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=2660 SLV14, uom=mm, unitPrice=4.48197108975, sleevePrice=2375.4446775675, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=2800 SLV14, uom=mm, unitPrice=4.61379777705, sleevePrice=2445.3128218365, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=2968 SLV14, uom=mm, unitPrice=4.89062473515, sleevePrice=2592.0311096295, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=3150 SLV14, uom=mm, unitPrice=4.922173196325, sleevePrice=2608.7517940522, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=3360 SLV14, uom=mm, unitPrice=5.246833890375, sleevePrice=2780.8219618988, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=3500 SLV14, uom=mm, unitPrice=5.3717330898, sleevePrice=2847.018537594, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=3850 SLV14, uom=mm, unitPrice=5.8191806673, sleevePrice=3084.165753669, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=3920 SLV14, uom=mm, unitPrice=6.060007401525, sleevePrice=3211.8039228082, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=4326 SLV14, uom=mm, unitPrice=6.594809465475, sleevePrice=3495.2490167017, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=4578 SLV14, uom=mm, unitPrice=6.738492377925, sleevePrice=3571.4009603003, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP SILVER (SLV5, SLV8, SLV14), profile=SLV14, description=4956 SLV14, uom=mm, unitPrice=7.276792255425, sleevePrice=3856.6998953752, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=352 GLD8, uom=mm, unitPrice=1.1987175235378, sleevePrice=443.525483709, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=360 GLD8, uom=mm, unitPrice=1.2844145693797, sleevePrice=475.2333906705, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=384 GLD8, uom=mm, unitPrice=1.376293254823, sleevePrice=509.2285042845, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=408 GLD8, uom=mm, unitPrice=1.4076244071182, sleevePrice=520.82103063375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=416 GLD8, uom=mm, unitPrice=1.5072789444811, sleevePrice=557.693209458, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=456 GLD8, uom=mm, unitPrice=1.6178977584, sleevePrice=598.622170608, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=480 GLD8, uom=mm, unitPrice=1.6540766175405, sleevePrice=612.00834849, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=536 GLD8, uom=mm, unitPrice=1.8326283971838, sleevePrice=678.072506958, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=544 GLD8, uom=mm, unitPrice=1.9369814050125, sleevePrice=891.01144630575, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=560 GLD8, uom=mm, unitPrice=2.059794457875, sleevePrice=947.5054506225, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=600 GLD8, uom=mm, unitPrice=2.161436456025, sleevePrice=994.2607697715, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=608 GLD8, uom=mm, unitPrice=2.181482226, sleevePrice=1003.48182396, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=632 GLD8, uom=mm, unitPrice=2.2479263643375, sleevePrice=1034.0461275953, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=640 GLD8, uom=mm, unitPrice=2.278047358125, sleevePrice=1047.9017847375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=680 GLD8, uom=mm, unitPrice=2.32311108645, sleevePrice=1068.631099767, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=720 GLD8, uom=mm, unitPrice=2.369535624225, sleevePrice=1089.9863871435, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=760 GLD8, uom=mm, unitPrice=2.4247530846, sleevePrice=1115.386418916, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=800 GLD8, uom=mm, unitPrice=2.57266260405, sleevePrice=1183.424797863, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=840 GLD8, uom=mm, unitPrice=2.6314652739375, sleevePrice=1210.4740260113, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=880 GLD8, uom=mm, unitPrice=2.7569737762875, sleevePrice=1268.2079370922, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=896 GLD8, uom=mm, unitPrice=2.8271339712, sleevePrice=1300.481626752, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=920 GLD8, uom=mm, unitPrice=2.9086516911375, sleevePrice=1337.9797779233, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=960 GLD8, uom=mm, unitPrice=2.9615400738, sleevePrice=1362.308433948, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=1000 GLD8, uom=mm, unitPrice=3.010162842225, sleevePrice=1384.6749074235, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=1040 GLD8, uom=mm, unitPrice=3.11175250155, sleevePrice=1431.406150713, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=1080 GLD8, uom=mm, unitPrice=3.241500448725, sleevePrice=1491.0902064135, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=1120 GLD8, uom=mm, unitPrice=3.33492525135, sleevePrice=1534.065615621, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=1200 GLD8, uom=mm, unitPrice=3.4363840636125, sleevePrice=1580.7366692617, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=1224 GLD8, uom=mm, unitPrice=3.5292331391625, sleevePrice=1623.4472440147, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=1280 GLD8, uom=mm, unitPrice=3.712235840775, sleevePrice=1707.6284867565, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=1352 GLD8, uom=mm, unitPrice=3.7836783369, sleevePrice=1740.492034974, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=1424 GLD8, uom=mm, unitPrice=3.9153628206, sleevePrice=1801.066897476, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=1440 GLD8, uom=mm, unitPrice=4.0019050677375, sleevePrice=1840.8763311592, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=1464 GLD8, uom=mm, unitPrice=4.2036188992875, sleevePrice=1933.6646936722, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=1600 GLD8, uom=mm, unitPrice=4.2563764348875, sleevePrice=1957.9331600482, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=1680 GLD8, uom=mm, unitPrice=4.4444298331125, sleevePrice=2044.4377232317, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=1760 GLD8, uom=mm, unitPrice=4.6224865157625, sleevePrice=2126.3437972507, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=1800 GLD8, uom=mm, unitPrice=4.8404253830625, sleevePrice=2226.5956762088, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=1904 GLD8, uom=mm, unitPrice=4.9985933122125, sleevePrice=2299.3529236177, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=2000 GLD8, uom=mm, unitPrice=5.1063851223, sleevePrice=2348.937156258, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=2200 GLD8, uom=mm, unitPrice=5.4386058139875, sleevePrice=2501.7586744342, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=2272 GLD8, uom=mm, unitPrice=5.9001819116625, sleevePrice=2714.0836793647, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=2400 GLD8, uom=mm, unitPrice=6.3557543511, sleevePrice=3368.549806083, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=2520 GLD8, uom=mm, unitPrice=6.5637152658, sleevePrice=3478.769090874, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=2600 GLD8, uom=mm, unitPrice=7.9021943067375, sleevePrice=3635.0093810992, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=2800 GLD8, uom=mm, unitPrice=7.2014984118, sleevePrice=3816.794158254, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=3048 GLD8, uom=mm, unitPrice=7.2610975206, sleevePrice=3848.381685918, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=3280 GLD8, uom=mm, unitPrice=7.85958704685, sleevePrice=4165.5811348305, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=3600 GLD8, uom=mm, unitPrice=9.130497158475, sleevePrice=4839.1634939918, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=4400 GLD8, uom=mm, unitPrice=9.835692711075, sleevePrice=5212.9171368697, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=966 GLD14, uom=mm, unitPrice=10.7779900536, sleevePrice=5712.334728408, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD8, description=994 GLD14, uom=mm, unitPrice=13.18716591885, sleevePrice=6989.1979369905, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=1092 GLD14, uom=mm, unitPrice=7.3655381646, sleevePrice=3388.147555716, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=1106 GLD14, uom=mm, unitPrice=7.5812526318375, sleevePrice=3487.3762106452, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=1190 GLD14, uom=mm, unitPrice=7.667376168375, sleevePrice=3526.9930374525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=1260 GLD14, uom=mm, unitPrice=7.7752203172875, sleevePrice=3576.6013459522, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=1288 GLD14, uom=mm, unitPrice=8.164071617625, sleevePrice=3755.4729441075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=1344 GLD14, uom=mm, unitPrice=8.2066492517625, sleevePrice=3775.0586558107, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=1400 GLD14, uom=mm, unitPrice=8.293662548325, sleevePrice=3815.0847722295, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=1442 GLD14, uom=mm, unitPrice=8.3580131336625, sleevePrice=3844.6860414847, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=1568 GLD14, uom=mm, unitPrice=8.7033970398375, sleevePrice=4003.5626383252, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=1610 GLD14, uom=mm, unitPrice=8.967681936675, sleevePrice=4125.1336908705, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=1750 GLD14, uom=mm, unitPrice=9.2424869373375, sleevePrice=4251.5439911752, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=1764 GLD14, uom=mm, unitPrice=9.4903636125375, sleevePrice=4365.5672617672, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=1778 GLD14, uom=mm, unitPrice=10.088805737587, sleevePrice=4640.8506392902, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=1848 GLD14, uom=mm, unitPrice=10.16953837515, sleevePrice=4677.987652569, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=1890 GLD14, uom=mm, unitPrice=10.267045606125, sleevePrice=4722.8409788175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=1904 GLD14, uom=mm, unitPrice=10.320928426462, sleevePrice=4747.6270761727, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=1960 GLD14, uom=mm, unitPrice=10.558389675488, sleevePrice=4856.8592507243, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=2100 GLD14, uom=mm, unitPrice=10.568805101662, sleevePrice=4861.6503467647, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=2240 GLD14, uom=mm, unitPrice=10.579168189012, sleevePrice=4866.4173669457, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=2310 GLD14, uom=mm, unitPrice=13.304410812, sleevePrice=7051.33773036, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=2380 GLD14, uom=mm, unitPrice=13.763964458475, sleevePrice=7294.9011629917, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=2450 GLD14, uom=mm, unitPrice=14.194104672825, sleevePrice=7522.8754765972, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=2590 GLD14, uom=mm, unitPrice=14.391526720725, sleevePrice=7627.5091619842, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=2660 GLD14, uom=mm, unitPrice=14.814853012575, sleevePrice=7851.8720966647, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=2800 GLD14, uom=mm, unitPrice=15.284082429, sleevePrice=8100.56368737, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=2968 GLD14, uom=mm, unitPrice=15.806415014775, sleevePrice=8377.3999578308, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=3150 GLD14, uom=mm, unitPrice=16.271351660025, sleevePrice=8623.8163798132, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=3360 GLD14, uom=mm, unitPrice=17.2476731889, sleevePrice=9141.266790117, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=3500 GLD14, uom=mm, unitPrice=17.358808264875, sleevePrice=9200.1683803837, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=3850 GLD14, uom=mm, unitPrice=18.503819801775, sleevePrice=9807.0244949408, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=3920 GLD14, uom=mm, unitPrice=18.94429446525, sleevePrice=10040.476066583, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=4326 GLD14, uom=mm, unitPrice=20.522194498575, sleevePrice=10876.763084245, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=4578 GLD14, uom=mm, unitPrice=21.3717316428, sleevePrice=11327.017770684, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=4956 GLD14, uom=mm, unitPrice=23.257666399275, sleevePrice=12326.563191616, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=4578 GLD14, uom=mm, unitPrice=23.7644178156, sleevePrice=12595.141442268, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP GOLD (GLD8, GLD14), profile=GLD14, description=4956 GLD14, uom=mm, unitPrice=25.662799337175, sleevePrice=13601.283648703, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=120 XLDD, uom=mm, unitPrice=1.792739568375, sleevePrice=118.32081151275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=130 XLDD, uom=mm, unitPrice=1.840161715875, sleevePrice=121.45067324775, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=140 XLDD, uom=mm, unitPrice=1.894514792625, sleevePrice=125.03797631325, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=146 XLDD, uom=mm, unitPrice=1.9355531895, sleevePrice=127.746510507, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=150 XLDD, uom=mm, unitPrice=1.9399306185, sleevePrice=128.035420821, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=156 XLDD, uom=mm, unitPrice=1.97093740725, sleevePrice=130.0818688785, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=160 XLDD, uom=mm, unitPrice=1.98261055125, sleevePrice=130.8522963825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=170 XLDD, uom=mm, unitPrice=2.039881914, sleevePrice=134.632206324, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=176 XLDD, uom=mm, unitPrice=2.08475056125, sleevePrice=137.5935370425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=180 XLDD, uom=mm, unitPrice=2.08475056125, sleevePrice=137.5935370425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=182 XLDD, uom=mm, unitPrice=2.091863883375, sleevePrice=138.06301630275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=188 XLDD, uom=mm, unitPrice=2.114115814125, sleevePrice=139.53164373225, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=190 XLDD, uom=mm, unitPrice=2.13946842375, sleevePrice=141.2049159675, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=198 XLDD, uom=mm, unitPrice=2.1748526415, sleevePrice=143.540274339, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=200 XLDD, uom=mm, unitPrice=2.0284759370282, sleevePrice=288.043583058, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=202 XLDD, uom=mm, unitPrice=2.0406834150845, sleevePrice=289.777044942, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=210 XLDD, uom=mm, unitPrice=2.0747626246585, sleevePrice=294.6162927015, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=212 XLDD, uom=mm, unitPrice=2.0923956485176, sleevePrice=297.1201820895, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=214 XLDD, uom=mm, unitPrice=2.0979907426268, sleevePrice=297.914685453, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=220 XLDD, uom=mm, unitPrice=2.1255423424067, sleevePrice=301.82701262175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=228 XLDD, uom=mm, unitPrice=2.1598758744401, sleevePrice=306.7023741705, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=230 XLDD, uom=mm, unitPrice=2.1675903223785, sleevePrice=307.79782577775, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=234 XLDD, uom=mm, unitPrice=2.1885295382113, sleevePrice=310.771194426, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=240 XLDD, uom=mm, unitPrice=2.214979074, sleevePrice=314.527028508, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=250 XLDD, uom=mm, unitPrice=2.2634698896127, sleevePrice=321.412724325, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=260 XLDD, uom=mm, unitPrice=2.3110281895405, sleevePrice=328.16600291475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=270 XLDD, uom=mm, unitPrice=2.3551955233415, sleevePrice=334.4377643145, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=276 XLDD, uom=mm, unitPrice=2.3816450591303, sleevePrice=338.1935983965, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=290 XLDD, uom=mm, unitPrice=2.4455647706197, sleevePrice=347.270197428, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=310 XLDD, uom=mm, unitPrice=2.5405965963222, sleevePrice=360.76471667775, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=316 XLDD, uom=mm, unitPrice=2.5691654859401, sleevePrice=364.8214990035, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=320 XLDD, uom=mm, unitPrice=2.5858659941144, sleevePrice=367.19297116425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=330 XLDD, uom=mm, unitPrice=2.6331699715827, sleevePrice=373.91013596475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=344 XLDD, uom=mm, unitPrice=2.6973440055317, sleevePrice=383.0228487855, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=352 XLDD, uom=mm, unitPrice=2.7359162452236, sleevePrice=388.50010682175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=364 XLDD, uom=mm, unitPrice=2.7855091248275, sleevePrice=395.5422957255, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=380 XLDD, uom=mm, unitPrice=2.8629079266708, sleevePrice=406.53292558725, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=384 XLDD, uom=mm, unitPrice=2.8793541123856, sleevePrice=408.86828395875, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=388 XLDD, uom=mm, unitPrice=2.9093641626074, sleevePrice=413.12971109025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=390 XLDD, uom=mm, unitPrice=2.9113987422835, sleevePrice=413.41862140425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=392 XLDD, uom=mm, unitPrice=2.9191131902218, sleevePrice=414.5140730115, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=434 XLDD, uom=mm, unitPrice=3.1111266471496, sleevePrice=441.77998389525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=460 XLDD, uom=mm, unitPrice=3.2975450099683, sleevePrice=468.2513914155, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=530 XLDD, uom=mm, unitPrice=3.5547497906831, sleevePrice=504.774470277, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=600 XLDD, uom=mm, unitPrice=3.8792652490141, sleevePrice=550.85566536, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=XLDD, description=710 XLDD, uom=mm, unitPrice=4.5905203941021, sleevePrice=651.8538959625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=124 LDD, uom=mm, unitPrice=1.871168504625, sleevePrice=123.49712130525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=135 LDD, uom=mm, unitPrice=1.947043940625, sleevePrice=128.50490008125, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=150 LDD, uom=mm, unitPrice=2.039881914, sleevePrice=134.632206324, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=173 LDD, uom=mm, unitPrice=2.179777249125, sleevePrice=143.86529844225, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=187 LDD, uom=mm, unitPrice=2.269879329375, sleevePrice=149.81203573875, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=202 LDD, uom=mm, unitPrice=2.357975088, sleevePrice=155.626355808, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=210 LDD, uom=mm, unitPrice=2.417252772375, sleevePrice=159.53868297675, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=225 LDD, uom=mm, unitPrice=2.3331542435176, sleevePrice=331.3079025795, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=240 LDD, uom=mm, unitPrice=2.4192000089842, sleevePrice=343.52640127575, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=255 LDD, uom=mm, unitPrice=2.5053305486039, sleevePrice=355.75693790175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=270 LDD, uom=mm, unitPrice=2.5979886980176, sleevePrice=368.9143951185, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=285 LDD, uom=mm, unitPrice=2.6808130456637, sleevePrice=380.67545248425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=300 LDD, uom=mm, unitPrice=2.7711822929419, sleevePrice=393.50788559775, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=322 LDD, uom=mm, unitPrice=2.8970719103979, sleevePrice=411.3842112765, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=334 LDD, uom=mm, unitPrice=3.004989407382, sleevePrice=426.70849584825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=345 LDD, uom=mm, unitPrice=3.0316084914771, sleevePrice=430.48840578975, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=367 LDD, uom=mm, unitPrice=3.1629236547359, sleevePrice=449.1351589725, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=390 LDD, uom=mm, unitPrice=3.2966124942835, sleevePrice=468.11897418825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=405 LDD, uom=mm, unitPrice=3.3848623877324, sleevePrice=480.650459058, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=412 LDD, uom=mm, unitPrice=3.4222477892799, sleevePrice=485.95918607775, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=420 LDD, uom=mm, unitPrice=3.4675171870722, sleevePrice=492.38744056425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=450 LDD, uom=mm, unitPrice=3.6441865222764, sleevePrice=517.47448616325, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=480 LDD, uom=mm, unitPrice=3.8195842451831, sleevePrice=542.380962816, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=510 LDD, uom=mm, unitPrice=3.9961688062342, sleevePrice=567.45597048525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=540 LDD, uom=mm, unitPrice=4.1694471753116, sleevePrice=592.06149889425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=600 LDD, uom=mm, unitPrice=4.5182928156021, sleevePrice=641.5975798155, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=728 LDD, uom=mm, unitPrice=5.2708329732835, sleevePrice=748.45828220625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=LDD, description=817 LDD, uom=mm, unitPrice=5.7906680805158, sleevePrice=822.27486743325, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=240 HDD, uom=mm, unitPrice=2.5008375184859, sleevePrice=355.118927625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=270 HDD, uom=mm, unitPrice=2.6795414333662, sleevePrice=380.494883538, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=300 HDD, uom=mm, unitPrice=2.8629079266708, sleevePrice=406.53292558725, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=330 HDD, uom=mm, unitPrice=3.0493262894894, sleevePrice=433.0043331075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=360 HDD, uom=mm, unitPrice=3.2325232344877, sleevePrice=459.01829929725, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=390 HDD, uom=mm, unitPrice=3.4147876638011, sleevePrice=484.89984825975, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=420 HDD, uom=mm, unitPrice=3.593322030375, sleevePrice=510.25172831325, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=450 HDD, uom=mm, unitPrice=3.7766885236796, sleevePrice=536.2897703625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=480 HDD, uom=mm, unitPrice=3.960987532669, sleevePrice=562.460229639, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=510 HDD, uom=mm, unitPrice=4.1431671878292, sleevePrice=588.32974067175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=540 HDD, uom=mm, unitPrice=4.3306876146391, sleevePrice=614.95764127875, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=570 HDD, uom=mm, unitPrice=4.5093915295194, sleevePrice=640.33359719175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=600 HDD, uom=mm, unitPrice=4.6926732486708, sleevePrice=666.35960131125, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=630 HDD, uom=mm, unitPrice=4.8769722576602, sleevePrice=692.53006058775, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=660 HDD, uom=mm, unitPrice=5.0589823645141, sleevePrice=718.375495761, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=670 HDD, uom=mm, unitPrice=5.135702973132, sleevePrice=729.26982218475, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=700 HDD, uom=mm, unitPrice=5.3006734751989, sleevePrice=752.69563347825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=725 HDD, uom=mm, unitPrice=5.4552167564261, sleevePrice=774.6407794125, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=750 HDD, uom=mm, unitPrice=5.6019608155616, sleevePrice=795.47843580975, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=800 HDD, uom=mm, unitPrice=5.9110473780158, sleevePrice=839.36872767825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=850 HDD, uom=mm, unitPrice=6.2167429743433, sleevePrice=882.77750235675, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=900 HDD, uom=mm, unitPrice=6.5168434765616, sleevePrice=925.39177367175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=1000 HDD, uom=mm, unitPrice=7.124928477243, sleevePrice=1011.7398437685, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=1100 HDD, uom=mm, unitPrice=7.7374217338891, sleevePrice=1098.7138862122, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=1120 HDD, uom=mm, unitPrice=7.8589030953803, sleevePrice=1115.964239544, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=1140 HDD, uom=mm, unitPrice=7.9803844568715, sleevePrice=1133.2145928757, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=1150 HDD, uom=mm, unitPrice=8.0410827505405, sleevePrice=1141.8337505767, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=1250 HDD, uom=mm, unitPrice=8.6534912330335, sleevePrice=1228.7957550907, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=1400 HDD, uom=mm, unitPrice=9.565152476213, sleevePrice=1358.2516516222, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=1645 HDD, uom=mm, unitPrice=9.7100315039789, sleevePrice=1378.824473565, cutCost=
Empty cut cost, configType=3, family=TIMING BELT ISORAN DOUBLE DENTED (XL DD, L DD, H DD), profile=HDD, description=1700 HDD, uom=mm, unitPrice=11.391696380393, sleevePrice=1617.6208860157, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=600 RPP5 DD, uom=mm, unitPrice=3.694440640275, sleevePrice=517.2216896385, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=610 RPP5 DD, uom=mm, unitPrice=3.7560920376375, sleevePrice=525.85288526925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=615 RPP5 DD, uom=mm, unitPrice=3.7867887585, sleevePrice=530.15042619, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=635 RPP5 DD, uom=mm, unitPrice=3.910091553225, sleevePrice=547.4128174515, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=640 RPP5 DD, uom=mm, unitPrice=3.9683035420875, sleevePrice=555.56249589225, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=670 RPP5 DD, uom=mm, unitPrice=4.01207001525, sleevePrice=561.689802135, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=675 RPP5 DD, uom=mm, unitPrice=4.0420788544125, sleevePrice=565.89103961775, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=700 RPP5 DD, uom=mm, unitPrice=4.1630600484, sleevePrice=582.828406776, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=705 RPP5 DD, uom=mm, unitPrice=4.1630600484, sleevePrice=582.828406776, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=710 RPP5 DD, uom=mm, unitPrice=4.1753559337875, sleevePrice=584.54983073025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=725 RPP5 DD, uom=mm, unitPrice=4.2123295751625, sleevePrice=589.72614052275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=740 RPP5 DD, uom=mm, unitPrice=4.2548062701375, sleevePrice=595.67287781925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=750 RPP5 DD, uom=mm, unitPrice=4.2646085843625, sleevePrice=597.04520181075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=755 RPP5 DD, uom=mm, unitPrice=4.2816336564375, sleevePrice=599.42871190125, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=800 RPP5 DD, uom=mm, unitPrice=4.454205977925, sleevePrice=623.5888369095, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=835 RPP5 DD, uom=mm, unitPrice=4.544662421475, sleevePrice=636.2527390065, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=850 RPP5 DD, uom=mm, unitPrice=4.6264343585625, sleevePrice=647.70081019875, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=890 RPP5 DD, uom=mm, unitPrice=4.74741555255, sleevePrice=664.638177357, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=900 RPP5 DD, uom=mm, unitPrice=4.7610872013375, sleevePrice=666.55220818725, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=935 RPP5 DD, uom=mm, unitPrice=4.8493080293625, sleevePrice=678.90312411075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=940 RPP5 DD, uom=mm, unitPrice=4.91525868735, sleevePrice=688.136216229, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=950 RPP5 DD, uom=mm, unitPrice=4.9655600366625, sleevePrice=695.17840513275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=980 RPP5 DD, uom=mm, unitPrice=5.01156212535, sleevePrice=701.618697549, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1000 RPP5 DD, uom=mm, unitPrice=5.14019600325, sleevePrice=719.627440455, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1025 RPP5 DD, uom=mm, unitPrice=5.15876880915, sleevePrice=722.227633281, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1050 RPP5 DD, uom=mm, unitPrice=5.2845651750375, sleevePrice=739.83912450525, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1100 RPP5 DD, uom=mm, unitPrice=5.4747644650875, sleevePrice=766.46702511225, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1125 RPP5 DD, uom=mm, unitPrice=5.5992710527875, sleevePrice=783.89794739025, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1135 RPP5 DD, uom=mm, unitPrice=5.622229104525, sleevePrice=787.1120746335, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1195 RPP5 DD, uom=mm, unitPrice=5.8422652633125, sleevePrice=817.91713686375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1200 RPP5 DD, uom=mm, unitPrice=5.8666850636625, sleevePrice=821.33590891275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1240 RPP5 DD, uom=mm, unitPrice=5.9205118066875, sleevePrice=828.87165293625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1270 RPP5 DD, uom=mm, unitPrice=5.994373104225, sleevePrice=839.2122345915, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1420 RPP5 DD, uom=mm, unitPrice=6.4970426565, sleevePrice=909.58597191, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1500 RPP5 DD, uom=mm, unitPrice=6.8630817061125, sleevePrice=960.83143885575, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1595 RPP5 DD, uom=mm, unitPrice=7.0623954286875, sleevePrice=988.73536001625, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1605 RPP5 DD, uom=mm, unitPrice=7.232904105075, sleevePrice=1012.6065747105, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1690 RPP5 DD, uom=mm, unitPrice=7.2759826965375, sleevePrice=1018.6375775152, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1790 RPP5 DD, uom=mm, unitPrice=7.713733413375, sleevePrice=1079.9226778725, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1800 RPP5 DD, uom=mm, unitPrice=7.739528977125, sleevePrice=1083.5340567975, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1870 RPP5 DD, uom=mm, unitPrice=7.955523830925, sleevePrice=1113.7733363295, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1895 RPP5 DD, uom=mm, unitPrice=8.061801553575, sleevePrice=1128.6522175005, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=1945 RPP5 DD, uom=mm, unitPrice=8.2745289693, sleevePrice=1158.434055702, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=2000 RPP5 DD, uom=mm, unitPrice=8.508580717725, sleevePrice=1191.2013004815, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=2250 RPP5 DD, uom=mm, unitPrice=9.48348105705, sleevePrice=1327.687347987, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP5 DD, description=2525 RPP5 DD, uom=mm, unitPrice=10.642733691975, sleevePrice=1489.9827168765, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=600 RPP8 DD, uom=mm, unitPrice=2.5455922160625, sleevePrice=356.38291024875, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=608 RPP8 DD, uom=mm, unitPrice=2.5791264489375, sleevePrice=361.07770285125, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=632 RPP8 DD, uom=mm, unitPrice=2.6272781679375, sleevePrice=367.81894351125, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=640 RPP8 DD, uom=mm, unitPrice=2.67757951725, sleevePrice=374.861132415, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=680 RPP8 DD, uom=mm, unitPrice=2.7335558905875, sleevePrice=382.69782468225, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=720 RPP8 DD, uom=mm, unitPrice=2.9239271510625, sleevePrice=409.34980114875, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=760 RPP8 DD, uom=mm, unitPrice=3.0888467886375, sleevePrice=432.43855040925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=800 RPP8 DD, uom=mm, unitPrice=3.13433296605, sleevePrice=438.806615247, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=840 RPP8 DD, uom=mm, unitPrice=3.2126654946375, sleevePrice=449.77316924925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=880 RPP8 DD, uom=mm, unitPrice=3.2887624077, sleevePrice=460.426737078, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=896 RPP8 DD, uom=mm, unitPrice=3.3486081156, sleevePrice=468.805136184, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=920 RPP8 DD, uom=mm, unitPrice=3.3995973466125, sleevePrice=475.94362852575, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=960 RPP8 DD, uom=mm, unitPrice=3.5327024555625, sleevePrice=494.57834377875, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=1000 RPP8 DD, uom=mm, unitPrice=3.6799091393625, sleevePrice=515.18727951075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=1040 RPP8 DD, uom=mm, unitPrice=3.76787201175, sleevePrice=527.502081645, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=1080 RPP8 DD, uom=mm, unitPrice=3.9127570948125, sleevePrice=547.78599327375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=1120 RPP8 DD, uom=mm, unitPrice=3.9817172352375, sleevePrice=557.44041293325, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=1200 RPP8 DD, uom=mm, unitPrice=4.1932408579875, sleevePrice=587.05372011825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=1224 RPP8 DD, uom=mm, unitPrice=4.2714874013625, sleevePrice=598.00823619075, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=1280 RPP8 DD, uom=mm, unitPrice=4.4305600444875, sleevePrice=620.27840622825, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=1352 RPP8 DD, uom=mm, unitPrice=4.5368377671375, sleevePrice=635.15728739925, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=1424 RPP8 DD, uom=mm, unitPrice=4.7784562142625, sleevePrice=668.98386999675, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=1440 RPP8 DD, uom=mm, unitPrice=4.8279836966625, sleevePrice=675.91771753275, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=1464 RPP8 DD, uom=mm, unitPrice=4.9084658555625, sleevePrice=687.18521977875, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=1600 RPP8 DD, uom=mm, unitPrice=5.2286747869125, sleevePrice=732.01447016775, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=1680 RPP8 DD, uom=mm, unitPrice=5.490155818125, sleevePrice=768.6218145375, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=1760 RPP8 DD, uom=mm, unitPrice=5.6529258253875, sleevePrice=791.40961555425, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=1800 RPP8 DD, uom=mm, unitPrice=5.7569679325125, sleevePrice=805.97551055175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=1904 RPP8 DD, uom=mm, unitPrice=6.332810900625, sleevePrice=886.5935260875, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=2000 RPP8 DD, uom=mm, unitPrice=6.1791194987156, sleevePrice=1482.9886796918, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=2200 RPP8 DD, uom=mm, unitPrice=6.6427302682125, sleevePrice=1594.255264371, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=2272 RPP8 DD, uom=mm, unitPrice=6.8602155323625, sleevePrice=1646.451727767, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=2400 RPP8 DD, uom=mm, unitPrice=7.2468337095, sleevePrice=1739.24009028, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=2520 RPP8 DD, uom=mm, unitPrice=7.6090750788937, sleevePrice=1826.1780189345, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=2600 RPP8 DD, uom=mm, unitPrice=7.6796474420531, sleevePrice=1843.1153860927, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=2800 RPP8 DD, uom=mm, unitPrice=8.2837007253, sleevePrice=1988.088174072, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=3048 RPP8 DD, uom=mm, unitPrice=9.6490527491531, sleevePrice=2315.7726597967, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=3280 RPP8 DD, uom=mm, unitPrice=10.375842757809, sleevePrice=2490.2022618742, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=3600 RPP8 DD, uom=mm, unitPrice=11.379505150716, sleevePrice=2731.0812361717, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP8 DD, description=4400 RPP8 DD, uom=mm, unitPrice=13.920912753103, sleevePrice=3341.0190607447, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description= 966 RPP14 DD, uom=mm, unitPrice=9.9749295390937, sleevePrice=1595.988726255, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description= 994 RPP14 DD, uom=mm, unitPrice=10.17122303108, sleevePrice=1627.3956849727, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=1092 RPP14 DD, uom=mm, unitPrice=10.232616472805, sleevePrice=1637.2186356488, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=1106 RPP14 DD, uom=mm, unitPrice=10.363754670019, sleevePrice=1658.200747203, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=1190 RPP14 DD, uom=mm, unitPrice=10.687951165598, sleevePrice=1710.0721864957, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=1260 RPP14 DD, uom=mm, unitPrice=11.316782520914, sleevePrice=1810.6852033462, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=1288 RPP14 DD, uom=mm, unitPrice=11.56845048975, sleevePrice=1850.95207836, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=1344 RPP14 DD, uom=mm, unitPrice=11.631348672694, sleevePrice=1861.015787631, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=1400 RPP14 DD, uom=mm, unitPrice=11.671374789112, sleevePrice=1867.419966258, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=1442 RPP14 DD, uom=mm, unitPrice=12.021528070716, sleevePrice=1923.4444913145, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=1568 RPP14 DD, uom=mm, unitPrice=12.226699535892, sleevePrice=1956.2719257427, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=1610 RPP14 DD, uom=mm, unitPrice=12.553830276848, sleevePrice=2008.6128442957, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=1750 RPP14 DD, uom=mm, unitPrice=13.302664744359, sleevePrice=2128.4263590975, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=1764 RPP14 DD, uom=mm, unitPrice=13.426580183723, sleevePrice=2148.2528293957, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=1778 RPP14 DD, uom=mm, unitPrice=13.526419763587, sleevePrice=2164.227162174, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=1848 RPP14 DD, uom=mm, unitPrice=13.922091467058, sleevePrice=2227.5346347293, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=1890 RPP14 DD, uom=mm, unitPrice=14.005454130577, sleevePrice=2240.8726608922, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=1904 RPP14 DD, uom=mm, unitPrice=14.109206037609, sleevePrice=2257.4729660175, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=1960 RPP14 DD, uom=mm, unitPrice=14.524213665741, sleevePrice=2323.8741865185, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=2100 RPP14 DD, uom=mm, unitPrice=12.230937890325, sleevePrice=2935.425093678, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=2240 RPP14 DD, uom=mm, unitPrice=12.813322900022, sleevePrice=3075.1974960053, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=2310 RPP14 DD, uom=mm, unitPrice=13.038081080062, sleevePrice=3129.139459215, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=2380 RPP14 DD, uom=mm, unitPrice=13.433175966066, sleevePrice=3223.9622318557, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=2450 RPP14 DD, uom=mm, unitPrice=13.623776520441, sleevePrice=3269.7063649058, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=2590 RPP14 DD, uom=mm, unitPrice=14.027297957269, sleevePrice=3366.5515097445, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=2660 RPP14 DD, uom=mm, unitPrice=14.352322060519, sleevePrice=3444.5572945245, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=2800 RPP14 DD, uom=mm, unitPrice=14.943384411244, sleevePrice=3586.4122586985, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=2968 RPP14 DD, uom=mm, unitPrice=15.840009545456, sleevePrice=3801.6022909095, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=3150 RPP14 DD, uom=mm, unitPrice=15.948401071247, sleevePrice=3827.6162570993, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=3360 RPP14 DD, uom=mm, unitPrice=17.001669766331, sleevePrice=4080.4007439195, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=3500 RPP14 DD, uom=mm, unitPrice=17.403184881534, sleevePrice=4176.7643715682, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=3850 RPP14 DD, uom=mm, unitPrice=18.861329280544, sleevePrice=4526.7190273305, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=3920 RPP14 DD, uom=mm, unitPrice=19.204259804297, sleevePrice=4609.0223530312, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=4326 RPP14 DD, uom=mm, unitPrice=21.3681278349, sleevePrice=5128.350680376, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=4578 RPP14 DD, uom=mm, unitPrice=21.832390658925, sleevePrice=5239.773758142, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPP DOUBLE DENTED (RPP5 DD, RPP8 DD, RPP14 DD), profile=RPP14 DD, description=4956 RPP14 DD, uom=mm, unitPrice=23.58230438025, sleevePrice=5659.75305126, cutCost=
Empty pitch, configType=5, family=TIMING BELT MEGALINEAR (MXL, XL, L, H, XH, HTD, RPP, STD, T, AT, TG, ATG), profile=P1, pitch=, width=10, uom=mm, unitPrice=20.5471218267
Empty pitch, configType=5, family=TIMING BELT MEGALINEAR (MXL, XL, L, H, XH, HTD, RPP, STD, T, AT, TG, ATG), profile=P1, pitch=, width=20, uom=mm, unitPrice=20.5471218267
Empty pitch, configType=5, family=TIMING BELT MEGALINEAR (MXL, XL, L, H, XH, HTD, RPP, STD, T, AT, TG, ATG), profile=P1, pitch=, width=20, uom=mm, unitPrice=20.5471218267
Empty pitch, configType=5, family=TIMING BELT MEGALINEAR (MXL, XL, L, H, XH, HTD, RPP, STD, T, AT, TG, ATG), profile=P1, pitch=, width=20, uom=mm, unitPrice=20.5471218267
Empty pitch, configType=5, family=TIMING BELT MEGALINEAR (MXL, XL, L, H, XH, HTD, RPP, STD, T, AT, TG, ATG), profile=P2, pitch=, width=25, uom=mm, unitPrice=17.9527348539
Empty pitch, configType=5, family=TIMING BELT MEGALINEAR (MXL, XL, L, H, XH, HTD, RPP, STD, T, AT, TG, ATG), profile=P2, pitch=, width=50, uom=mm, unitPrice=28.4712820371
Empty pitch, configType=5, family=TIMING BELT MEGALINEAR (MXL, XL, L, H, XH, HTD, RPP, STD, T, AT, TG, ATG), profile=P2, pitch=, width=75, uom=mm, unitPrice=42.9871591485
Empty pitch, configType=5, family=TIMING BELT MEGALINEAR (MXL, XL, L, H, XH, HTD, RPP, STD, T, AT, TG, ATG), profile=P2, pitch=, width=100, uom=mm, unitPrice=58.4148316815
Empty pitch, configType=5, family=TIMING BELT MEGALINEAR (MXL, XL, L, H, XH, HTD, RPP, STD, T, AT, TG, ATG), profile=P3, pitch=, width=25, uom=mm, unitPrice=onrequest
Empty pitch, configType=5, family=TIMING BELT MEGALINEAR (MXL, XL, L, H, XH, HTD, RPP, STD, T, AT, TG, ATG), profile=P4, pitch=, width=25, uom=mm, unitPrice=28.6141275
Empty pitch, configType=5, family=TIMING BELT MEGALINEAR (MXL, XL, L, H, XH, HTD, RPP, STD, T, AT, TG, ATG), profile=P4, pitch=, width=50, uom=mm, unitPrice=59.4126225
Empty pitch, configType=5, family=TIMING BELT MEGALINEAR (MXL, XL, L, H, XH, HTD, RPP, STD, T, AT, TG, ATG), profile=P4, pitch=, width=100, uom=mm, unitPrice=134.6374575
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=178 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=217 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=223 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=227 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=229 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=254 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=261 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=295 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=330 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=340 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=375 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=389 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=400 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=410 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=485 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=507 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=588 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=602 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=609 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=650 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=768 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=935 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=1000 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=1086 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=1120 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=1163 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=1203 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=1240 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=1775 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Empty sleevePrice, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=H, description=1976 H, uom=rib, unitPrice=onrequest, sleevePrice=, cutCost=1
Unit price contains something else than a number =I5523/128, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=J, description=278 J, uom=rib, unitPrice==I5523/128, sleevePrice=106.98210432, cutCost=1
Unit price contains something else than a number =I5524/128, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=J, description=283 J, uom=rib, unitPrice==I5524/128, sleevePrice=106.98210432, cutCost=1
Unit price contains something else than a number =I5528/150, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=J, description=345 J, uom=rib, unitPrice==I5528/150, sleevePrice=130.0252905, cutCost=1
Unit price contains something else than a number =I5542/150, configType=3, family=RIBBED BELT MEGARIB PU (TB2, J), profile=J, description=711 J, uom=rib, unitPrice==I5542/150, sleevePrice=142.82829225, cutCost=1
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=248 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=1053, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=288 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=1087.83, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=352 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=1230.39, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=416 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=1369.44, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=456 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=1456.38, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=480 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=1752.57, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=544 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=1923.21, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=560 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=1965.87, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=608 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=2066.58, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=640 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=2194.29, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=720 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=2407.59, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=800 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=2620.62, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=840 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=2727.27, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=896 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=2960.4012317826, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=960 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=3043.77424596, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=1000 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=3061.4570805948, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=1040 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=3119.8569686652, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=1120 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=3231.9258109781, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=1200 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=3444.6627206419, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=1224 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=3488.3269131832, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=1280 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=3625.2137690187, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=1440 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=3914.5762954335, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=1600 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=4221.0787624374, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=1760 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=4605.2926342839, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=1792 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=4660.6678269561, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=2000 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=5102.1957987813, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=2200 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=5462.2896637355, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=2240 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=5523.7142472039, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=2400 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=5805.4762569774, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=2520 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=6017.0498222574, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=2600 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=6206.7525131206, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=2800 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=6568.7852853813, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=2840 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=6580.5738418045, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=3048 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=7008.9948002381, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=3600 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=7920.7465720239, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=4000 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=8623.4841361742, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT8, description=4400 PLT8, uom=mm, unitPrice=onrequest, sleevePrice=9281.2390508148, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profil=e=PLT14, description=994 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=6076.2809790144, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=1092 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=6478, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=1120 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=6635.84899824, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=1190 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=6948.0674768736, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=1260 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=7259.0271792192, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=1400 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=7881.9536049408, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=1568 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=8628.1142292576, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=1610 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=8750.59316208, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=1750 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=9437.8010969088, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=1890 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=10059.972256858, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=1960 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=10371.729184186, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=2100 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=10994.152099392, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=2240 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=11616.658933018, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=2310 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=11918.261731622, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=2380 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=12239.081848224, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=2450 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=12533.761377245, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=2520 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=12862.134151574, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=2660 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=13484.515107571, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=2800 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=14107.021941197, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=3136 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=15601.315272682, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=3304 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=16348.189203562, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=3360 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=16627.134028982, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=3500 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=17219.849823792, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=3850 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=18816.817341168, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=3920 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=19086.992691782, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=4326 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=20919.645089482, cutCost=
Empty cut cost, configType=3, family=TIMING BELT RPC PLATINUM (PLT8, PLT14), profile=PLT14, description=4410 PLT14, uom=mm, unitPrice=onrequest, sleevePrice=21265.93444631, cutCost=
Powered by Google Project Hosting