forked from shanepeckham/ContainersOnAzure_IntroLab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_localhost.json
7002 lines (7002 loc) · 214 KB
/
data_localhost.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "hitachi power tools c12lch 12\" co.mpound miter saw with digital display and laser m",
"Source": "localhost",
"Total": 61.5
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "numax 21-degree 3-1/2\" framing nailer",
"Source": "localhost",
"Total": 80.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "dewalt tools dwtdc385k hd srp 18v cordless reciprocating saw kit",
"Source": "localhost",
"Total": 10.3
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "professional woodworker pneumatic brad nailer and air stapler combo tool kit",
"Source": "localhost",
"Total": 40.5
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "bernzomatic 019335/ns3 nickel silver brazing rods",
"Source": "localhost",
"Total": 2.1
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "mountain blow gun 24 deluxe w/90 deg angled nozzle",
"Source": "localhost",
"Total": 52.9
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "kawasaki 10 circular saw blade - 60t",
"Source": "localhost",
"Total": 87.3
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "black & decker 5.5a evs scrolling/orbital combination jigsaw, js700k",
"Source": "localhost",
"Total": 76.9
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "ad tech 2-temp full size cordless glue gun",
"Source": "localhost",
"Total": 99.1
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "eclipse 900-250 solder aid tool set w/reverse tweezers and heat sink",
"Source": "localhost",
"Total": 24.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "weller analog soldering station, wes51",
"Source": "localhost",
"Total": 74.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "century drill and tool phillips power screwdriving bit set",
"Source": "localhost",
"Total": 49.3
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "california air tools 10 gallon ultra quiet and oil-free 2.0 hp steel tank air compressor",
"Source": "localhost",
"Total": 26.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "mini glue sticks 4\" 25/pkg-opal/glitter",
"Source": "localhost",
"Total": 54.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "hitachi 3.25 framing nailers nr83a2",
"Source": "localhost",
"Total": 22.8
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "eclipse 900-230 flux bottle pack - 2-pack",
"Source": "localhost",
"Total": 75.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "hitachi 2 1/2\" 15 gauge angled finish nailer with air duster",
"Source": "localhost",
"Total": 52.5
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "hitachi 3/8\" drill",
"Source": "localhost",
"Total": 21.2
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "campbell hausfeld 2 brad nailer (18 guage)",
"Source": "localhost",
"Total": 89.2
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "bosch 4395-01 orbital action jigsaw",
"Source": "localhost",
"Total": 49.2
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "vim products xzn100 xzn set - 8-piece",
"Source": "localhost",
"Total": 3.8
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "black & decker 9.6v-18v multi voltage fast charger, fsmvc",
"Source": "localhost",
"Total": 4.9
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "ad tech multi-temp full size 4\" glue sticks, 30 ct.",
"Source": "localhost",
"Total": 83.2
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "hitachi 83-piece drill and driver bit set",
"Source": "localhost",
"Total": 66.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "buffalo tools 19 piece hole saw set",
"Source": "localhost",
"Total": 57.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "warp brothers fcp-12 flex-o-glaze cleaner and polisher - 12 oz.",
"Source": "localhost",
"Total": 14.1
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "black & decker 9.6v-18v multi voltage fast charger, fsmvc",
"Source": "localhost",
"Total": 21
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "bernzomatic 019335/ns3 nickel silver brazing rods",
"Source": "localhost",
"Total": 9.7
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "dremel mm20-03 multi-max tool kit",
"Source": "localhost",
"Total": 91.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "bostitch 3/8\" air ratchet, btmt72392",
"Source": "localhost",
"Total": 65.9
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "bostitch 6.5 amp 3/8\" drill, bte100k",
"Source": "localhost",
"Total": 18.9
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "10-count 10\" glue sticks",
"Source": "localhost",
"Total": 66.3
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "black & decker 109-piece basic project set, 71-0109",
"Source": "localhost",
"Total": 51.9
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "dremel 709-01 110 pc super accessory kit",
"Source": "localhost",
"Total": 17.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "california air tools 4.6 gallon ultra quiet and oil-free 2.0 hp aluminum twin tank air compressor",
"Source": "localhost",
"Total": 50.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "wagan heavy-duty air compressor",
"Source": "localhost",
"Total": 72.2
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "black & decker lithium-ion smartdriver with exclusive magnetic screw-holder",
"Source": "localhost",
"Total": 88.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "dewalt dcf610s2r drills / drivers , power tools, n/a",
"Source": "localhost",
"Total": 32.8
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "dewalt dwt-dck212s2 12v max drill, driver, recip combo kit",
"Source": "localhost",
"Total": 27.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "edsal heavy-duty steel workbench, mrwb-6",
"Source": "localhost",
"Total": 59.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "black & decker lithium saw, lps7000",
"Source": "localhost",
"Total": 5.2
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "black & decker 2.4v direct plug screwdriver, dp240",
"Source": "localhost",
"Total": 60.8
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "hoover ch82010 ground command super heavy-duty air mover, 12 a, 30 lbs, black",
"Source": "localhost",
"Total": 19.8
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "skil 1400-02 multi-tasker 2.0a oscillating tool kit",
"Source": "localhost",
"Total": 8
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "jgb enterprises 001-0121-050i eagle air 300 no. red jackhammer hose cpld chicago fittings crimped",
"Source": "localhost",
"Total": 20.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "campbell hausfeld 1/2\" pneumatic socket set",
"Source": "localhost",
"Total": 95.2
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "buffalo tools stainless steel work table",
"Source": "localhost",
"Total": 15.9
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "campbell hausfeld 1-1/4\" brad nails",
"Source": "localhost",
"Total": 90.8
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "apex tool group, llc-tools 7135w soldering gun tip",
"Source": "localhost",
"Total": 75.3
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "skil 7510-01 3-inch x 18-inch auto track belt sander",
"Source": "localhost",
"Total": 84.7
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "black & decker matrix router head attachment, bdcmtr",
"Source": "localhost",
"Total": 39.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "black & decker matrix sanding head attachment, bdcmts",
"Source": "localhost",
"Total": 39.1
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "black & decker 20-volt lithium drill and 133 pieces home project kit, ld120pk",
"Source": "localhost",
"Total": 39.5
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "bosch pr20evsk colt variable speed palm router kit",
"Source": "localhost",
"Total": 63.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "century drill and tool jig saw blade (set of 5) (set of 5)",
"Source": "localhost",
"Total": 82.2
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "dremel 4000-1/26 120v variable speed rotary tool",
"Source": "localhost",
"Total": 38.7
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "bosch 6335-01 7 amp 1/2\" corded drill",
"Source": "localhost",
"Total": 67.3
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "stanley heavy duty aluminum stapler, tr150hl",
"Source": "localhost",
"Total": 73.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "dremel 3000 rotary tool",
"Source": "localhost",
"Total": 78.5
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "dewalt dwt-dck212s2 12v max drill, driver, recip combo kit",
"Source": "localhost",
"Total": 17.8
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "acme automotive typhoon pro blow gun",
"Source": "localhost",
"Total": 14.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "dremel 4200 rotary tool with ez change, 4200-6/40",
"Source": "localhost",
"Total": 61.5
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "stalwart mouse sander set, blue, 28pc",
"Source": "localhost",
"Total": 53.2
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "eclipse 900-259 mini soldering station",
"Source": "localhost",
"Total": 79.5
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "pro-lift w-1010a 10-gallon air tank",
"Source": "localhost",
"Total": 89.8
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "rockwell shopseries 12 amp 7 1/4\" circular saw",
"Source": "localhost",
"Total": 39.2
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "hitachi 18v cordless compact pro driver drill with flashlight",
"Source": "localhost",
"Total": 92.7
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "black and decker dragster 3\" x 21\" belt sander, ds321",
"Source": "localhost",
"Total": 81.7
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "black & decker 16v max lithium cordless driver/drill with exposed gear box, ldx116c",
"Source": "localhost",
"Total": 33.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "stanley fatmax 20-volt lithium battery, fmc680l",
"Source": "localhost",
"Total": 11.9
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "rockwell shopseries variable speed jigsaw",
"Source": "localhost",
"Total": 49.7
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "powermate 30 gallon cast iron oil lubricated belt drive industrial air compressor",
"Source": "localhost",
"Total": 71
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "buffalo tools electric 110v 3/8 vsr drill",
"Source": "localhost",
"Total": 31
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "campbell hausfeld tl1103 5/8-inch stroke air hammer",
"Source": "localhost",
"Total": 95.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "blair 11108-3 11000 series rotobroach cutters - 3/8-inch - 3-pack",
"Source": "localhost",
"Total": 73
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "buffalo tools 5 speed drill press",
"Source": "localhost",
"Total": 30.9
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "plews 05-025 4-inch needle nose grease gun adapter",
"Source": "localhost",
"Total": 42.2
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "hitachi 1 1/2\" 2 mode spline shank rotary hammer",
"Source": "localhost",
"Total": 62.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "edsal heavy-duty steel workbench, mrwb-6",
"Source": "localhost",
"Total": 65.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "skil 74102 10in 200 tooth steel circular saw blade",
"Source": "localhost",
"Total": 14.5
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "astro pneumatic 9707 1/4-inch drive mini gearless ratchet",
"Source": "localhost",
"Total": 2.9
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "bostitch 1/2 air impact wrench, btmt72391",
"Source": "localhost",
"Total": 80.9
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "freeman pf3p6galck freeman ultimate finishing kit with 6 gallon compressor, 3 nailers, canvas carry",
"Source": "localhost",
"Total": 11.3
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "vermont american 7 to 7-1/4 masonry circular saw blades 28052",
"Source": "localhost",
"Total": 94.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "lumberjack tools tta2000 2in industrail series tenon cutter",
"Source": "localhost",
"Total": 84.9
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "bostitch industrial air tool swivel plug, 1/4 npt, btfp72333",
"Source": "localhost",
"Total": 31.3
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "mayflower 20511 8 inch electric heat sealer",
"Source": "localhost",
"Total": 80.3
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "contractors tornado double blade dual saw",
"Source": "localhost",
"Total": 74.8
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "primefit 25-piece air compressor accessory kit",
"Source": "localhost",
"Total": 25.1
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "stalwart cordless screwdriver with 11 bits",
"Source": "localhost",
"Total": 24.7
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "lincoln industrial fully automatic pneumatic grease gun",
"Source": "localhost",
"Total": 17.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "hitachi 2 1/4 horsepower 11 amp plunge and fixed base variable speed router kit",
"Source": "localhost",
"Total": 81.5
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "bostitch 18v lithium 1/2\" drill/driver kit and bonus drill bit set bundle",
"Source": "localhost",
"Total": 31.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "century drill and tool reciprocating saw blade",
"Source": "localhost",
"Total": 68
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "black & decker 160 psi air station inflator",
"Source": "localhost",
"Total": 42.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "stalwart portable air compressor kit with light",
"Source": "localhost",
"Total": 66.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "gyros 40-00470 powerpro variable speed rotary tool tool only",
"Source": "localhost",
"Total": 45.3
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "bostitch 8.5 amp orbital reciprocating saw, bte360k",
"Source": "localhost",
"Total": 62.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "black & decker lithium saw, lps7000",
"Source": "localhost",
"Total": 39
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "stanley sharpshooter stapler, tr250a",
"Source": "localhost",
"Total": 35.7
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "forney 72732 wire cup brush fine crimped with 1/4-inch hex shank 3-inch-by-.008-inch",
"Source": "localhost",
"Total": 97
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "dremel 6800-01 120v trio rotary tool kit, refurbished",
"Source": "localhost",
"Total": 60.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "buffalo tools 19 piece hole saw set",
"Source": "localhost",
"Total": 94.8
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "otc 4813 171 piece heat shrink tubing set",
"Source": "localhost",
"Total": 38.3
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "black & decker 14.4v cordless drill set, gco14sfb",
"Source": "localhost",
"Total": 19.2
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "porter cable 1/2 18v cordless driver",
"Source": "localhost",
"Total": 43.7
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "california air tools 4.6 gallon ultra quiet and oil-free 2.0 hp aluminum twin tank air compressor",
"Source": "localhost",
"Total": 60
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "ad-tech: high-temp glue sticks, 5/16\" x 4\", 100pk",
"Source": "localhost",
"Total": 37
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "campbell hausfeld 1 gallon air compressor",
"Source": "localhost",
"Total": 93.9
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "black & decker 5.2a 3.25\" planer kit, 7698k",
"Source": "localhost",
"Total": 33.8
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "black and decker 1/2\" 7-amp variable speed drill, dr560",
"Source": "localhost",
"Total": 25.2
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "hitachi 2 1/2\" 15 gauge angled finish nailer with air duster",
"Source": "localhost",
"Total": 9.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "porter cable-piece180dk-2 18-volt drill driver kit",
"Source": "localhost",
"Total": 97.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "3m 37717 spray trigger nozzle head",
"Source": "localhost",
"Total": 92.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "dremel 8v max cordless rotary tool, 8100-n/21",
"Source": "localhost",
"Total": 88.1
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "dremel cleaning/polishing mini accessory kit, 684-02",
"Source": "localhost",
"Total": 20.2
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "sharpe manufacturing 6765-1 replacement dessicant beads - 5 lb.",
"Source": "localhost",
"Total": 71.3
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "fpc corporation hot melt glue sticks fprdt20",
"Source": "localhost",
"Total": 18.8
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "atd tools atd-10836 3. 6-volt cordless rechargeable screwdriver kit",
"Source": "localhost",
"Total": 68.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "12-volt lith-ion drill w/ bonus case & 150-piece socket set",
"Source": "localhost",
"Total": 43.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "hitachi 1 3/8\" 23 gauge pin nailer",
"Source": "localhost",
"Total": 91
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "dremel minimite rotary tool w/bonus tools set & bag",
"Source": "localhost",
"Total": 8.3
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "eclipse 900-015 helping hands soldering aid",
"Source": "localhost",
"Total": 51.8
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "black & decker 20-volt lithium drill and 133 pieces home project kit, ld120pk",
"Source": "localhost",
"Total": 4.5
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "dremel carving/engraving mini accessory kit, 689-03",
"Source": "localhost",
"Total": 30.2
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "eclipse dp-366d desoldering pump",
"Source": "localhost",
"Total": 89.9
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "audiopipe thsy3075c pipeman train horn air compressor",
"Source": "localhost",
"Total": 90.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "buffalo tools 4.8v cordless screwdriver",
"Source": "localhost",
"Total": 63.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "stalwart 0.5\" chuck hammer drill",
"Source": "localhost",
"Total": 11.8
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "alpha fry am13460 rosin core solder and dispenser",
"Source": "localhost",
"Total": 23.1
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "stanley sharpshooter stapler, tr250a",
"Source": "localhost",
"Total": 66.5
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "crawford storehorse 36\" sawhorse w/top protector",
"Source": "localhost",
"Total": 52.5
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "rockwell rk3440k versacut circular saw kit",
"Source": "localhost",
"Total": 21.9
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "wagan 3-in-1 275 psi air compressor",
"Source": "localhost",
"Total": 98.2
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "ingersoll rand 1/2 air impact wrench 231ha",
"Source": "localhost",
"Total": 28.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "rockwell shopseries 4-1/2\" angle grinder",
"Source": "localhost",
"Total": 41.4
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "campbell hausfeld 1-1/4\" brad nails",
"Source": "localhost",
"Total": 13.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "surebonder full size high temperature glue gun",
"Source": "localhost",
"Total": 47.5
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "powryte 3/8\" air impact wrench, 100101a",
"Source": "localhost",
"Total": 44.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "campbell hausfeld 17-piece air accessory kit",
"Source": "localhost",
"Total": 3.6
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "acme automotive inline adj air regulator",
"Source": "localhost",
"Total": 66.3
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "bostitch 6.5 amp 3/8\" drill, bte100k",
"Source": "localhost",
"Total": 49.3
},
{
"EmailAddress": "[email protected]",
"PreferredLanguage": "ENU",
"Product": "dremel 4000-1/26 120v variable speed rotary tool",
"Source": "localhost",