-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwritten.txt
More file actions
2012 lines (2012 loc) · 67.3 KB
/
Copy pathwritten.txt
File metadata and controls
2012 lines (2012 loc) · 67.3 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
1,
"product": {
"title": "Crayola Markers Broad Line 10ct Classic",
"link": "https://www.target.com/p/crayola-markers-broad-line-10ct-classic/-/A-14152241",
"tcin": "14152241",
"dpci": "081-04-0334",
"class_id": 4,
"department_id": 81,
"brand": "Crayola",
"brand_link": "https://www.target.com/b/crayola/-/N-5xoy2",
"feature_bullets": [
"CRAYOLA MARKERS: 10 Count Crayola Broad Line Markers in Classic, Long Lasting Colors.",
"ARTS AND CRAFTS: Perfect for school supplies, kids arts and crafts, and more.",
"CLASSIC COLORS: These Crayola Markers contain vibrant colors that won't bleed through paper.",
"BROAD LINE MARKERS: Durable Markers are ideal for full-coverage coloring.",
"SAFE AND NONTOXIC: Tried and true classic markers are safe for ages 3 & Up."
],
"rating": 4.9,
"ratings_total": 1676,
"main_image": "https://target.scene7.com/is/image/Target/GUEST_9d24bb1d-eb8b-4500-9bfa-e333e597c76a",
"images": [
"https://target.scene7.com/is/image/Target/GUEST_9d24bb1d-eb8b-4500-9bfa-e333e597c76a",
"https://target.scene7.com/is/image/Target/GUEST_c864e26f-942e-45bb-8800-1e321c843c99",
"https://target.scene7.com/is/image/Target/GUEST_dc09df75-1e5d-4152-b5ac-c2ad4f4aedf0",
"https://target.scene7.com/is/image/Target/GUEST_88212b27-9bd0-4df7-bfff-7b6810f4587b",
"https://target.scene7.com/is/image/Target/GUEST_776a3442-b536-420e-af1a-66d9499007ad"
]
},
"offers": {
"primary": {
"price": 2.59,
"currency": "USD",
"symbol": "$"
},
"all_offers": [
{
"price": 2.59,
"currency": "USD",
"symbol": "$"
}
]
},
"fulfillment": {
"type": "1p"
}
},
{
2,
"product": {
"title": "Crayola 10ct Washable Broad Line Markers - Classic Colors",
"link": "https://www.target.com/p/crayola-10ct-washable-broad-line-markers-classic-colors/-/A-15225908",
"tcin": "15225908",
"dpci": "081-04-3620",
"class_id": 4,
"department_id": 81,
"brand": "Crayola",
"brand_link": "https://www.target.com/b/crayola/-/N-5xoy2",
"feature_bullets": [
"CRAYOLA MARKERS: Features 10 Ultra-Clean Markers in classic colors that are perfect for the classroom.",
"WASHABLE MARKERS: Crayola Washable Markers are now Ultra-Clean; washable from skin, clothing and now From painted walls.",
"SCHOOL SUPPLIES: A popular item on back-to-school lists for school projects, homework, and crafts.",
"THICK & THIN LINES: Broad line markers with conical tip allows kids to color with thick lines or draw with thin lines.",
"GENERAL NOTE: Packaging, contents, and colors may vary. We recommend retaining packaging for future reference."
],
"rating": 4.8,
"ratings_total": 1350,
"main_image": "https://target.scene7.com/is/image/Target/GUEST_54475765-cbe0-4354-a3e4-be0f68d0aefb",
"images": [
"https://target.scene7.com/is/image/Target/GUEST_54475765-cbe0-4354-a3e4-be0f68d0aefb",
"https://target.scene7.com/is/image/Target/GUEST_64db52e8-c421-4bb0-90cb-708c7eb7f630",
"https://target.scene7.com/is/image/Target/GUEST_4ad2bd56-5f96-462b-8738-8a0f8b0f9b2e"
],
"videos": [
{
"link": "https://target.scene7.com/is/content/Target/5b184c284ead3a0001d05f96_Flash9_Autox720p_2600k",
"type": "video/mp4"
}
]
},
"offers": {
"primary": {
"price": 3.99,
"currency": "USD",
"symbol": "$"
},
"all_offers": [
{
"price": 3.99,
"currency": "USD",
"symbol": "$"
}
]
},
"fulfillment": {
"type": "1p"
}
},
{
3,
"product": {
"title": "Crayola 10ct Kids Fine Line Markers Classic Colors",
"link": "https://www.target.com/p/crayola-10ct-kids-fine-line-markers-classic-colors/-/A-14152244",
"tcin": "14152244",
"dpci": "081-04-0231",
"class_id": 4,
"department_id": 81,
"brand": "Crayola",
"brand_link": "https://www.target.com/b/crayola/-/N-5xoy2",
"feature_bullets": [
"\u00b7 10ct Crayola Markers in Classic, Long-Lasting Colors.",
"\u00b7 Contain Vibrant Color that Won't Bleed Through.",
"\u00b7 Durable Fine Line Markers for Drawing.",
"\u00b7 Perfect Coloring Tools and School Supplies.",
"\u00b7 Safe and Nontoxic, Ages 3 & Up!"
],
"rating": 4.8,
"ratings_total": 1033,
"main_image": "https://target.scene7.com/is/image/Target/GUEST_1fab9f63-f109-4c34-bb80-e81f0ac5934c",
"images": [
"https://target.scene7.com/is/image/Target/GUEST_1fab9f63-f109-4c34-bb80-e81f0ac5934c",
"https://target.scene7.com/is/image/Target/GUEST_903ea421-32ce-437f-9921-cab7afb61a9e",
"https://target.scene7.com/is/image/Target/GUEST_1a5cd2cd-7640-4479-9118-ad95e77157ee",
"https://target.scene7.com/is/image/Target/GUEST_7ba61bd8-4fac-4e34-bd79-385d3a6cb07c"
]
},
"offers": {
"primary": {
"price": 2.59,
"currency": "USD",
"symbol": "$"
},
"all_offers": [
{
"price": 2.59,
"currency": "USD",
"symbol": "$"
}
]
},
"fulfillment": {
"type": "1p"
}
},
{
4,
"product": {
"title": "10ct Washable Markers Broad Tip Classic Colors - Mondo Llama™",
"link": "https://www.target.com/p/10ct-washable-markers-broad-tip-classic-colors-mondo-llama-8482/-/A-81212666",
"tcin": "81212666",
"dpci": "081-04-7441",
"class_id": 4,
"department_id": 81,
"brand": "Mondo Llama",
"brand_link": "https://www.target.com/b/mondo-llama/-/N-q643leml01z",
"feature_bullets": [
"Broad tip markers offer a wider streak",
"Features 10 colors from across the spectrum",
"Washes from skin, most washable clothes and most painted walls",
"Keep away from wallpaper, unfinished wood, vinyl, carpeting and other material that cannot be washed"
],
"rating": 4.6,
"ratings_total": 1588,
"main_image": "https://target.scene7.com/is/image/Target/GUEST_185da343-af51-4b9a-8056-69c7d6b6f2be",
"images": [
"https://target.scene7.com/is/image/Target/GUEST_185da343-af51-4b9a-8056-69c7d6b6f2be",
"https://target.scene7.com/is/image/Target/GUEST_2f985b3a-ab0a-4ef2-a31b-e928f31103a4",
"https://target.scene7.com/is/image/Target/GUEST_ca24275d-0c37-417b-b36b-ef8ceb4b228d",
"https://target.scene7.com/is/image/Target/GUEST_d27de7ee-972d-48e9-a0b1-2fe49f0dcfc9",
"https://target.scene7.com/is/image/Target/GUEST_c31cb988-b70b-4443-8dd5-8caaba08c5cb"
],
"videos": [
{
"link": "https://target.scene7.com/is/content/Target/GUEST_bc11f4c0-2428-4517-908c-802a3ea141a6_Flash9_Autox720p_2600k",
"type": "video/mp4"
}
]
},
"offers": {
"primary": {
"price": 2.25,
"currency": "USD",
"symbol": "$"
},
"all_offers": [
{
"price": 2.25,
"currency": "USD",
"symbol": "$"
}
]
},
"fulfillment": {
"type": "1p"
}
},
{
5,
"product": {
"title": "Expo 4pk Dry Erase Markers Chisel Tip Black",
"link": "https://www.target.com/p/expo-4pk-dry-erase-markers-chisel-tip-black/-/A-14395396",
"tcin": "14395396",
"dpci": "081-02-0655",
"class_id": 2,
"department_id": 81,
"brand": "Expo",
"brand_link": "https://www.target.com/b/expo/-/N-56c8i",
"feature_bullets": [
"Versatile chisel tip allows for broad or fine writing",
"Low-odor ink formula erases cleanly and is ideal for classrooms, offices, and home offices",
"For optimal results, use on nonporous surfaces such as porcelain, melamine whiteboards, and glass",
"Consistent, skip-free marking in bold black color",
"Includes: 4 Black dry erase markers"
],
"rating": 4.7,
"ratings_total": 943,
"main_image": "https://target.scene7.com/is/image/Target/GUEST_bb41978b-7a80-4cd6-bba3-f0bbdc9fedac",
"images": [
"https://target.scene7.com/is/image/Target/GUEST_bb41978b-7a80-4cd6-bba3-f0bbdc9fedac",
"https://target.scene7.com/is/image/Target/GUEST_398301b4-2d70-4a25-80c4-e84a52485d8f",
"https://target.scene7.com/is/image/Target/GUEST_c061822e-9562-4811-9a74-a7b6bbd59233",
"https://target.scene7.com/is/image/Target/GUEST_5e9f321d-7428-4883-884d-db039fa03460",
"https://target.scene7.com/is/image/Target/GUEST_a1e8f369-d651-4eab-95da-41618dee0e5f",
"https://target.scene7.com/is/image/Target/GUEST_4d58eb27-ecac-49f4-aa27-fda04ad8ebe7",
"https://target.scene7.com/is/image/Target/GUEST_9fc8bea8-ad32-4d22-bb66-42cd79943e78",
"https://target.scene7.com/is/image/Target/GUEST_2dd9d26b-92fb-4863-a12f-43eacd582f7a",
"https://target.scene7.com/is/image/Target/GUEST_c6451696-d036-4663-880c-2aa7384d9b1f"
],
"videos": [
{
"link": "https://target.scene7.com/is/content/Target/GUEST_0b5b6fae-3e90-4b37-be13-75d2f644383f_Flash9_Autox720p_2600k",
"type": "video/mp4"
},
{
"link": "https://target.scene7.com/is/content/Target/GUEST_04f75756-41cf-4871-a090-d4785aa79bc4_Flash9_Autox720p_2600k",
"type": "video/mp4"
}
]
},
"offers": {
"primary": {
"price": 4.99,
"currency": "USD",
"symbol": "$"
},
"all_offers": [
{
"price": 4.99,
"currency": "USD",
"symbol": "$"
}
]
},
"fulfillment": {
"type": "1p"
}
},
{
6,
"product": {
"title": "Sharpie 2pk Permanent Markers Fine Tip Black",
"link": "https://www.target.com/p/sharpie-2pk-permanent-markers-fine-tip-black/-/A-14790195",
"tcin": "14790195",
"dpci": "081-02-0590",
"class_id": 2,
"department_id": 81,
"brand": "Sharpie",
"brand_link": "https://www.target.com/b/sharpie/-/N-56cak",
"feature_bullets": [
"Proudly permanent ink marks on paper, plastic, metal, and most other surfaces",
"Intensely brilliant colors create eye-popping, vibrant impressions",
"Remarkably resilient ink dries quickly and resists fading and water; AP certified",
"Endlessly versatile fine tip makes impressively bold, detailed marks",
"Includes 2 black Sharpie permanent markers"
],
"rating": 4.9,
"ratings_total": 1272,
"main_image": "https://target.scene7.com/is/image/Target/GUEST_a157e9b4-23a4-4866-a805-b27271fa47da",
"images": [
"https://target.scene7.com/is/image/Target/GUEST_a157e9b4-23a4-4866-a805-b27271fa47da",
"https://target.scene7.com/is/image/Target/GUEST_67de2d4d-383a-411f-afc1-82b7e47a58d3",
"https://target.scene7.com/is/image/Target/GUEST_5e5e5130-0690-42a0-8849-3dd77f11bd5a",
"https://target.scene7.com/is/image/Target/GUEST_2d8bef45-98b4-4be7-98a4-b61b3f300291",
"https://target.scene7.com/is/image/Target/GUEST_f68bac48-10f1-4814-9e1b-f36e9f4bde56",
"https://target.scene7.com/is/image/Target/GUEST_6543a767-0197-4bca-9044-000298d37b2b"
],
"videos": [
{
"link": "https://target.scene7.com/is/content/Target/GUEST_44967733-7805-4ee8-adcf-b51fbeb6dcbc_Flash9_Autox720p_2600k",
"type": "video/mp4"
}
]
},
"offers": {
"primary": {
"price": 1.99,
"currency": "USD",
"symbol": "$"
},
"all_offers": [
{
"price": 1.99,
"currency": "USD",
"symbol": "$"
}
]
},
"fulfillment": {
"type": "1p"
}
},
{
7,
"product": {
"title": "10ct Markers Broad Tip Classic Colors - Mondo Llama™",
"link": "https://www.target.com/p/10ct-markers-broad-tip-classic-colors-mondo-llama-8482/-/A-81212669",
"tcin": "81212669",
"dpci": "081-04-7606",
"class_id": 4,
"department_id": 81,
"brand": "Mondo Llama",
"brand_link": "https://www.target.com/b/mondo-llama/-/N-q643leml01z",
"feature_bullets": [
"10ct classic markers for drawing and coloring",
"Includes, pink, gray, black, brown, purple, blue, green, yellow, orange and red",
"2mm broad-tip design allows for making small lines and filling in larger areas",
"Great for coloring and activity books or freehand creations",
"Non-toxic ink and suitable for ages 3+"
],
"rating": 4.6,
"ratings_total": 1118,
"main_image": "https://target.scene7.com/is/image/Target/GUEST_53222811-0a5a-4c72-9321-e1df4c90b0a1",
"images": [
"https://target.scene7.com/is/image/Target/GUEST_53222811-0a5a-4c72-9321-e1df4c90b0a1",
"https://target.scene7.com/is/image/Target/GUEST_07407ea0-9a44-487d-92f1-1b105c6051f6",
"https://target.scene7.com/is/image/Target/GUEST_68e3c061-96c4-4af0-8939-daf39fac06b9",
"https://target.scene7.com/is/image/Target/GUEST_efe0f1ce-ce9e-4218-8e68-8e46eb107e49",
"https://target.scene7.com/is/image/Target/GUEST_0e8cc657-058f-42f1-bcb8-19a5997e7787"
],
"videos": [
{
"link": "https://target.scene7.com/is/content/Target/GUEST_ed942b7f-ffcf-46b2-8168-0858593f74e9_Flash9_Autox720p_2600k",
"type": "video/mp4"
}
]
},
"offers": {
"primary": {
"price": 2.25,
"currency": "USD",
"symbol": "$"
},
"all_offers": [
{
"price": 2.25,
"currency": "USD",
"symbol": "$"
}
]
},
"fulfillment": {
"type": "1p"
}
},
{
8,
"product": {
"title": "Sharpie 4pk Highlighters Smear Guard Chisel Tip Multicolored",
"link": "https://www.target.com/p/sharpie-4pk-highlighters-smear-guard-chisel-tip-multicolored/-/A-83529308",
"tcin": "83529308",
"dpci": "081-02-6496",
"class_id": 2,
"department_id": 81,
"brand": "Sharpie",
"brand_link": "https://www.target.com/b/sharpie/-/N-56cak",
"feature_bullets": [
"Sharpie Tank Highlighters with wide barrel and large ink supply that delivers dependable highlighting",
"Bright fluorescent ink stands out on the page",
"Narrow chisel tip great for highlighting, underlining, and writing notes",
"Resists smearing (let ink dry before highlighting)",
"Includes 4 assorted highlighters"
],
"rating": 4.8,
"ratings_total": 413,
"main_image": "https://target.scene7.com/is/image/Target/GUEST_08031594-100f-4830-b3cc-7ba81e0c9f20",
"images": [
"https://target.scene7.com/is/image/Target/GUEST_08031594-100f-4830-b3cc-7ba81e0c9f20",
"https://target.scene7.com/is/image/Target/GUEST_b824adf8-26ef-47f4-be47-81ca14d098d6",
"https://target.scene7.com/is/image/Target/GUEST_d64bb962-3d6b-40c5-9c8b-d5e6be1ffcb7",
"https://target.scene7.com/is/image/Target/GUEST_6f9d9718-927b-4093-b5fa-036259f88020"
]
},
"offers": {
"primary": {
"price": 3.79,
"currency": "USD",
"symbol": "$"
},
"all_offers": [
{
"price": 3.79,
"currency": "USD",
"symbol": "$"
}
]
},
"fulfillment": {
"type": "1p"
}
},
{
9,
"product": {
"title": "BiC 5pk Highlighter Brite Liner Assorted",
"link": "https://www.target.com/p/bic-5pk-highlighter-brite-liner-assorted/-/A-83620041",
"tcin": "83620041",
"dpci": "081-02-8639",
"class_id": 2,
"department_id": 81,
"brand": "BiC",
"brand_link": "https://www.target.com/b/bic/-/N-5pteu",
"feature_bullets": [
"ACMI approved non-toxic",
"Colored and yellow highlighter won\u2019t dry out when left uncapped for 8 hours",
"These colored and yellow highlighters feature a chisel tip for broad highlighting and fine underlining",
"Includes 5 BIC Highlighters in an assortment of vibrantly bright, fluorescent ink colors"
],
"rating": 4.8,
"ratings_total": 691,
"main_image": "https://target.scene7.com/is/image/Target/GUEST_a85a94b8-259e-4e13-8135-d0051dd31bee",
"images": [
"https://target.scene7.com/is/image/Target/GUEST_a85a94b8-259e-4e13-8135-d0051dd31bee",
"https://target.scene7.com/is/image/Target/GUEST_cef7b0a9-4d32-4b10-9954-16a41c42593d",
"https://target.scene7.com/is/image/Target/GUEST_0077f104-3229-430f-a147-c1942edca78e",
"https://target.scene7.com/is/image/Target/GUEST_d7f36bb1-6684-41b9-84b9-835d256d1250",
"https://target.scene7.com/is/image/Target/GUEST_dbca1a91-621b-4244-8a67-7524dbde487f",
"https://target.scene7.com/is/image/Target/GUEST_4eb58664-d937-4b1d-b522-efdc8c9dd0aa",
"https://target.scene7.com/is/image/Target/GUEST_a099567b-2a26-47e2-bc4c-261057c04b81",
"https://target.scene7.com/is/image/Target/GUEST_e125ab6b-3c1d-4f53-96f2-c44fe9025b46",
"https://target.scene7.com/is/image/Target/GUEST_f0f0422b-1a2e-45c2-aa8b-c4146b2e53a4"
],
"videos": [
{
"link": "https://target.scene7.com/is/content/Target/GUEST_87f59bc4-69fc-4bdf-877d-88f4c98410bd_Flash9_Autox720p_2600k",
"type": "video/mp4"
}
]
},
"offers": {
"primary": {
"price": 2.19,
"currency": "USD",
"symbol": "$"
},
"all_offers": [
{
"price": 2.19,
"currency": "USD",
"symbol": "$"
}
]
},
"fulfillment": {
"type": "1p"
}
},
{
10,
"product": {
"title": "Crayola 10ct Kids Broadline Markers - Bold and Bright",
"link": "https://www.target.com/p/crayola-10ct-kids-broadline-markers-bold-and-bright/-/A-14152243",
"tcin": "14152243",
"dpci": "081-04-0331",
"class_id": 4,
"department_id": 81,
"brand": "Crayola",
"brand_link": "https://www.target.com/b/crayola/-/N-5xoy2",
"feature_bullets": [
"Features 10 Crayola Markers in Bold & Bright Colors.",
"Colors Wash from Skin and Most Washable Clothing.",
"Broad Line Markers are Great for Drawing Thick, Clear Lines.",
"Bold & Bright Colors Offer Pops of Color to Your Artwork!",
"Safe & Nontoxic, Ages 4 & Up."
],
"rating": 4.8,
"ratings_total": 808,
"main_image": "https://target.scene7.com/is/image/Target/GUEST_76af1d21-f1e0-4656-957d-fbbfabe9d763",
"images": [
"https://target.scene7.com/is/image/Target/GUEST_76af1d21-f1e0-4656-957d-fbbfabe9d763",
"https://target.scene7.com/is/image/Target/GUEST_840a25fe-c28f-4885-a8f0-611bb952858f",
"https://target.scene7.com/is/image/Target/GUEST_473cee38-dccb-4ffa-bf16-07e4a59aeb56",
"https://target.scene7.com/is/image/Target/GUEST_6ca1784e-16d1-47a3-b42c-0345a7c84927",
"https://target.scene7.com/is/image/Target/GUEST_eb0d9604-8870-46ef-be42-d4e352f45b69"
]
},
"offers": {
"primary": {
"price": 2.59,
"currency": "USD",
"symbol": "$"
},
"all_offers": [
{
"price": 2.59,
"currency": "USD",
"symbol": "$"
}
]
},
"fulfillment": {
"type": "1p"
}
},
{
11,
"product": {
"title": "Expo 4pk Dry Erase Markers Chisel Tip Multicolored",
"link": "https://www.target.com/p/expo-4pk-dry-erase-markers-chisel-tip-multicolored/-/A-10804811",
"tcin": "10804811",
"dpci": "081-02-1024",
"class_id": 2,
"department_id": 81,
"brand": "Expo",
"brand_link": "https://www.target.com/b/expo/-/N-56c8i",
"feature_bullets": [
"Chisel tip for easy use",
"Low odor, ideal for classrooms & office use",
"Bright, vivid, non toxic ink is quick-drying, smear proof, easy to see from a distance, and provides consistent color quality",
"Versatile chisel tip allows for broad or fine writing",
"Erases cleanly and easily with a dry cloth or Expo eraser",
"Package quantity: 4"
],
"rating": 4.6,
"ratings_total": 691,
"main_image": "https://target.scene7.com/is/image/Target/GUEST_64e27165-1c98-4ec0-9c35-587dc15e149b",
"images": [
"https://target.scene7.com/is/image/Target/GUEST_64e27165-1c98-4ec0-9c35-587dc15e149b",
"https://target.scene7.com/is/image/Target/GUEST_f84eeebb-db1c-4244-ab69-efaafafa1605",
"https://target.scene7.com/is/image/Target/GUEST_1a170477-001a-4a16-b0fa-f2f2583c0439",
"https://target.scene7.com/is/image/Target/GUEST_4d58eb27-ecac-49f4-aa27-fda04ad8ebe7",
"https://target.scene7.com/is/image/Target/GUEST_9fc8bea8-ad32-4d22-bb66-42cd79943e78",
"https://target.scene7.com/is/image/Target/GUEST_e7825ca8-eb25-43e5-ab65-3c858f9d6e32",
"https://target.scene7.com/is/image/Target/GUEST_261215f2-64a0-4032-862b-c63faa4063e6"
],
"videos": [
{
"link": "https://target.scene7.com/is/content/Target/GUEST_0b5b6fae-3e90-4b37-be13-75d2f644383f_Flash9_Autox720p_2600k",
"type": "video/mp4"
},
{
"link": "https://target.scene7.com/is/content/Target/GUEST_04f75756-41cf-4871-a090-d4785aa79bc4_Flash9_Autox720p_2600k",
"type": "video/mp4"
}
]
},
"offers": {
"primary": {
"price": 4.99,
"currency": "USD",
"symbol": "$"
},
"all_offers": [
{
"price": 4.99,
"currency": "USD",
"symbol": "$"
}
]
},
"fulfillment": {
"type": "1p"
}
},
{
12,
"product": {
"title": "Sharpie Pocket 4pk Highlighters Narrow Chisel Tip Multicolored",
"link": "https://www.target.com/p/sharpie-pocket-4pk-highlighters-narrow-chisel-tip-multicolored/-/A-78025470",
"tcin": "78025470",
"dpci": "081-02-3451",
"class_id": 2,
"department_id": 81,
"brand": "Sharpie",
"brand_link": "https://www.target.com/b/sharpie/-/N-56cak",
"feature_bullets": [
"Bright, easy-to-see colors make your highlighted text easy to read",
"Resists smearing of many pen and marker inks (let ink dry before highlighting)",
"Easy-glide, narrow chisel tip is great for highlighting, underlining or writing notes",
"Slim shape is easy to control and slips into backpacks or notebooks",
"Includes: Fluorescent Pink, Yellow, Orange and Blue highlighters"
],
"rating": 4.7,
"ratings_total": 611,
"main_image": "https://target.scene7.com/is/image/Target/GUEST_dd2740a1-b9a7-4a4f-906d-3244ff2b517e",
"images": [
"https://target.scene7.com/is/image/Target/GUEST_dd2740a1-b9a7-4a4f-906d-3244ff2b517e",
"https://target.scene7.com/is/image/Target/GUEST_29507d0a-f7ee-483e-b6c1-72237ea26e7a",
"https://target.scene7.com/is/image/Target/GUEST_a6980245-9cab-435d-8469-4f01064e04b8",
"https://target.scene7.com/is/image/Target/GUEST_3680fd7d-ecec-40a9-a13d-7722546532ca"
],
"videos": [
{
"link": "https://target.scene7.com/is/content/Target/GUEST_0bf20858-cdf8-4e8a-bdc6-723433b97c61_Flash9_Autox720p_2600k",
"type": "video/mp4"
},
{
"link": "https://target.scene7.com/is/content/Target/GUEST_75fa3d67-3821-4e47-8ddf-14aa56078d75_Flash9_Autox720p_2600k",
"type": "video/mp4"
}
]
},
"offers": {
"primary": {
"price": 2.49,
"currency": "USD",
"symbol": "$"
},
"all_offers": [
{
"price": 2.49,
"currency": "USD",
"symbol": "$"
}
]
},
"fulfillment": {
"type": "1p"
}
},
{
13,
"product": {
"title": "Expo 4pk Dry Erase Markers Fine Tip Black",
"link": "https://www.target.com/p/expo-4pk-dry-erase-markers-fine-tip-black/-/A-52901870",
"tcin": "52901870",
"dpci": "081-02-1586",
"class_id": 2,
"department_id": 81,
"brand": "Expo",
"brand_link": "https://www.target.com/b/expo/-/N-56c8i",
"feature_bullets": [
"Dry erase markers in bold black",
"Fine tip perfect for accurate, detailed lines",
"Low odor ink, ideal for home, classroom, and office use",
"Erase cleanly and easily with an EXPO eraser",
"Includes 4 black dry erase markers"
],
"rating": 4.7,
"ratings_total": 636,
"main_image": "https://target.scene7.com/is/image/Target/GUEST_ac0367ea-ee57-447e-8ed7-50d2ef6b501e",
"images": [
"https://target.scene7.com/is/image/Target/GUEST_ac0367ea-ee57-447e-8ed7-50d2ef6b501e",
"https://target.scene7.com/is/image/Target/GUEST_60ef76ae-c00e-42af-aa46-9a1cc9584079",
"https://target.scene7.com/is/image/Target/GUEST_a49645f0-b1de-4a2a-b4b5-7a4a15ac27c6",
"https://target.scene7.com/is/image/Target/GUEST_f63c4e9e-b75d-4e5e-9b11-4dfbe7e56197",
"https://target.scene7.com/is/image/Target/GUEST_e9a5625b-1ed2-4db2-bb89-802feaf87b38",
"https://target.scene7.com/is/image/Target/GUEST_37ba5ac1-add0-41ed-9278-1834aa92b4ae",
"https://target.scene7.com/is/image/Target/GUEST_3fe06a0d-2b0a-4ab1-a2d1-8188a099c37a",
"https://target.scene7.com/is/image/Target/GUEST_f4c2e588-9ef4-4e5a-b20c-de4d113a95f1"
],
"videos": [
{
"link": "https://target.scene7.com/is/content/Target/GUEST_8263f60d-6cf2-45b6-8ac5-c3a9ccf32c6f_Flash9_Autox720p_2600k",
"type": "video/mp4"
},
{
"link": "https://target.scene7.com/is/content/Target/GUEST_04f75756-41cf-4871-a090-d4785aa79bc4_Flash9_Autox720p_2600k",
"type": "video/mp4"
}
]
},
"offers": {
"primary": {
"price": 4.89,
"currency": "USD",
"symbol": "$"
},
"all_offers": [
{
"price": 4.89,
"currency": "USD",
"symbol": "$"
}
]
},
"fulfillment": {
"type": "1p"
}
},
{
14,
"product": {
"title": "10ct Washable Markers Fine Tip Classic Colors - Mondo Llama™",
"link": "https://www.target.com/p/10ct-washable-markers-fine-tip-classic-colors-mondo-llama-8482/-/A-81212683",
"tcin": "81212683",
"dpci": "081-04-1625",
"class_id": 4,
"department_id": 81,
"brand": "Mondo Llama",
"brand_link": "https://www.target.com/b/mondo-llama/-/N-q643leml01z",
"feature_bullets": [
"Fine tip markers offer a neat streak",
"Features 10 colors from across the spectrum",
"Washes from skin, most washable clothes and most painted walls",
"Keep away from wallpaper, unfinished wood, vinyl, carpeting and other material that cannot be washed"
],
"rating": 4.6,
"ratings_total": 783,
"main_image": "https://target.scene7.com/is/image/Target/GUEST_2a0bc3ba-7ae8-4717-bfe0-1a79e853b506",
"images": [
"https://target.scene7.com/is/image/Target/GUEST_2a0bc3ba-7ae8-4717-bfe0-1a79e853b506",
"https://target.scene7.com/is/image/Target/GUEST_d15ea89a-ec93-4d84-b3aa-7cf5f94bb75a",
"https://target.scene7.com/is/image/Target/GUEST_6b2e234f-6469-4e6c-9bab-066f4e460653",
"https://target.scene7.com/is/image/Target/GUEST_f3913709-30d0-45fc-9f28-476ef7d0bdca",
"https://target.scene7.com/is/image/Target/GUEST_9e114a55-0c1c-464e-b013-158948b1a02b"
],
"videos": [
{
"link": "https://target.scene7.com/is/content/Target/GUEST_3dc57661-4cf2-4f9f-8cc4-c8b9efc713b8_Flash9_Autox720p_2600k",
"type": "video/mp4"
}
]
},
"offers": {
"primary": {
"price": 2.25,
"currency": "USD",
"symbol": "$"
},
"all_offers": [
{
"price": 2.25,
"currency": "USD",
"symbol": "$"
}
]
},
"fulfillment": {
"type": "1p"
}
},
{
15,
"product": {
"title": "Crayola 10ct Ultra-Clean Washable Markers Fine Line Classic Colors",
"link": "https://www.target.com/p/crayola-10ct-ultra-clean-washable-markers-fine-line-classic-colors/-/A-15225907",
"tcin": "15225907",
"dpci": "081-04-3619",
"class_id": 4,
"department_id": 81,
"brand": "Crayola",
"brand_link": "https://www.target.com/b/crayola/-/N-5xoy2",
"feature_bullets": [
"CRAYOLA MARKERS: Features 10 Ultra Clean Markers in classic colors that are perfect for the classroom.",
"WASHABLE MARKERS: Crayola Washable Markers are now Ultra-Clean; washable from skin, clothing and now from painted walls.",
"SCHOOL SUPPLIES: A popular item on back to school lists for school projects, homework, and crafts.",
"FINE TIP FOR THE DETAILS: The fine line tip is great for detailed coloring pages and drawings.",
"SAFE AND NONTOXIC: Ideal for kids ages 3 & up."
],
"rating": 4.8,
"ratings_total": 408,
"main_image": "https://target.scene7.com/is/image/Target/GUEST_72907133-e808-456d-9159-5b1bd79d0035",
"images": [
"https://target.scene7.com/is/image/Target/GUEST_72907133-e808-456d-9159-5b1bd79d0035",
"https://target.scene7.com/is/image/Target/GUEST_60ecaec9-d570-4375-b60d-e8a30974ce29",
"https://target.scene7.com/is/image/Target/GUEST_f033abc5-eb4e-4fb8-890b-6145d74975ca",
"https://target.scene7.com/is/image/Target/GUEST_764b8607-31e5-41ae-ad3c-fe085e059669",
"https://target.scene7.com/is/image/Target/GUEST_8a960801-5b79-4b9c-a115-8bed7fe88789",
"https://target.scene7.com/is/image/Target/GUEST_9dc3f249-285a-4936-848a-6590d066ce33"
],
"videos": [
{
"link": "https://target.scene7.com/is/content/Target/5b184c284ead3a0001d05f96_Flash9_Autox720p_2600k",
"type": "video/mp4"
}
]
},
"offers": {
"primary": {
"price": 3.99,
"currency": "USD",
"symbol": "$"
},
"all_offers": [
{
"price": 3.99,
"currency": "USD",
"symbol": "$"
}
]
},
"fulfillment": {
"type": "1p"
}
},
{
16,
"product": {
"title": "Sharpie 4pk Highlighters Smear Guard Chisel Tip Yellow",
"link": "https://www.target.com/p/sharpie-4pk-highlighters-smear-guard-chisel-tip-yellow/-/A-83529335",
"tcin": "83529335",
"dpci": "081-02-6652",
"class_id": 2,
"department_id": 81,
"brand": "Sharpie",
"brand_link": "https://www.target.com/b/sharpie/-/N-56cak",
"feature_bullets": [
"Sharpie Tank Highlighters with wide barrel and large ink supply that delivers dependable highlighting",
"Bright fluorescent ink stands out on the page",
"Narrow chisel tip great for highlighting, underlining, and writing notes",
"Resists smearing (let ink dry before highlighting)",
"Includes 4 fluorescent yellow highlighters"
],
"rating": 4.9,
"ratings_total": 385,
"main_image": "https://target.scene7.com/is/image/Target/GUEST_55d10428-9db6-4e4c-845b-1fb666259af5",
"images": [
"https://target.scene7.com/is/image/Target/GUEST_55d10428-9db6-4e4c-845b-1fb666259af5",
"https://target.scene7.com/is/image/Target/GUEST_555c306f-31d9-44e4-8e92-1baa30362296",
"https://target.scene7.com/is/image/Target/GUEST_7d972b33-205c-490f-b947-87d358a22bb6",
"https://target.scene7.com/is/image/Target/GUEST_6f9d9718-927b-4093-b5fa-036259f88020",
"https://target.scene7.com/is/image/Target/GUEST_dcfacb74-3235-4c0e-9ca5-0c9c99333e22",
"https://target.scene7.com/is/image/Target/GUEST_1c19ec48-9187-47b6-b304-95764cb3ca32",
"https://target.scene7.com/is/image/Target/GUEST_3d9a616a-e35a-43de-ac3d-8d641db6dbef",
"https://target.scene7.com/is/image/Target/GUEST_6d833fba-8081-4241-a306-5135dcf520dd"
]
},
"offers": {
"primary": {
"price": 3.79,
"currency": "USD",
"symbol": "$"
},
"all_offers": [
{
"price": 3.79,
"currency": "USD",
"symbol": "$"
}
]
},
"fulfillment": {
"type": "1p"
}
},
{
17,
"product": {
"title": "Crayola 10ct Washable Markers Broad Line - Bright Colors",
"link": "https://www.target.com/p/crayola-10ct-washable-markers-broad-line-bright-colors/-/A-15225909",
"tcin": "15225909",
"dpci": "081-04-3621",
"class_id": 4,
"department_id": 81,
"brand": "Crayola",
"brand_link": "https://www.target.com/b/crayola/-/N-5xoy2",
"feature_bullets": [
"CRAYOLA ULTRA CLEAN MARKERS: Features 10 Crayola Ultra Clean Washable Markers in Bright Colors.",
"COLOR MAX ENHANCED: Each marker comes Color Max enhanced with brighter and more beautiful colors.",
"WASHABLE MARKERS: Washable markers wash easily from skin, clothing and most painted walls.",
"COLORING SUPPLIES: Add these Crayola Markers to arts and crafts supplies at home or bundle with other Crayola products for a coloring gift for kids!",
"SAFE & NONTOXIC: Great for kids ages 3 & Up.",
"Unscented"
],
"rating": 4.8,
"ratings_total": 658,
"main_image": "https://target.scene7.com/is/image/Target/GUEST_1ee1f4e0-dac9-4b70-9d02-71361e425177",
"images": [
"https://target.scene7.com/is/image/Target/GUEST_1ee1f4e0-dac9-4b70-9d02-71361e425177",
"https://target.scene7.com/is/image/Target/GUEST_f58ec63d-cdfa-45c4-a124-fcdf50381c52",
"https://target.scene7.com/is/image/Target/GUEST_4fc2b8ce-a36c-47f9-a4bb-c10358cab94f"
]
},
"offers": {
"primary": {
"price": 3.99,
"currency": "USD",
"symbol": "$"
},
"all_offers": [
{
"price": 3.99,
"currency": "USD",
"symbol": "$"
}
]
},
"fulfillment": {
"type": "1p"
}
},
{
18,
"product": {
"title": "Sharpie 2pk Permanent Markers Ultra Fine Tip Black",
"link": "https://www.target.com/p/sharpie-2pk-permanent-markers-ultra-fine-tip-black/-/A-10804810",
"tcin": "10804810",
"dpci": "081-02-0593",
"class_id": 2,
"department_id": 81,
"brand": "Sharpie",
"brand_link": "https://www.target.com/b/sharpie/-/N-56cak",
"feature_bullets": [
"Proudly permanent ink marks on paper, plastic, metal, and most other surfaces",
"Intensely brilliant colors create eye-popping, vibrant impressions",
"Remarkably resilient ink dries quickly and resists fading and water; AP certified",
"Endlessly versatile ultra-fine point has a precise, narrow tip for extreme control",
"Includes 2 black Sharpie permanent markers"
],
"rating": 4.8,
"ratings_total": 604,
"main_image": "https://target.scene7.com/is/image/Target/GUEST_57685015-8422-4915-b201-f0c31c57d77b",
"images": [
"https://target.scene7.com/is/image/Target/GUEST_57685015-8422-4915-b201-f0c31c57d77b",
"https://target.scene7.com/is/image/Target/GUEST_8ff81175-684c-4996-b469-8ce5dcd26bd4",
"https://target.scene7.com/is/image/Target/GUEST_c74dd3d3-2832-417e-bd43-3161eccd940d",
"https://target.scene7.com/is/image/Target/GUEST_09e93e2a-993f-4c17-94f5-0e4b752fd341",
"https://target.scene7.com/is/image/Target/GUEST_c3b9a7e4-1b8d-4fcb-83fe-6f3c5c2ffd70",
"https://target.scene7.com/is/image/Target/GUEST_d8cbe3c0-5535-4d18-8f7c-d571e1df7415"
],
"videos": [
{
"link": "https://target.scene7.com/is/content/Target/GUEST_44967733-7805-4ee8-adcf-b51fbeb6dcbc_Flash9_Autox720p_2600k",
"type": "video/mp4"
}
]
},
"offers": {
"primary": {
"price": 1.99,
"currency": "USD",
"symbol": "$"
},
"all_offers": [
{
"price": 1.99,
"currency": "USD",
"symbol": "$"
}
]
},
"fulfillment": {
"type": "1p"
}
},
{
19,
"product": {
"title": "Sharpie 5pk Permanent Markers Fine Tip Black",
"link": "https://www.target.com/p/sharpie-5pk-permanent-markers-fine-tip-black/-/A-78025465",
"tcin": "78025465",
"dpci": "081-02-0493",
"class_id": 2,
"department_id": 81,
"brand": "Sharpie",
"brand_link": "https://www.target.com/b/sharpie/-/N-56cak",
"feature_bullets": [
"Proudly permanent ink marks on paper, plastic, metal, and most other surfaces",
"Intensely brilliant colors create eye popping, vibrant impressions",
"Remarkably resilient ink dries quickly and resists fading and water; AP certified",
"Endlessly versatile fine tip makes impressively bold, detailed marks",
"Includes 5 Black Sharpie permanent markers"
],
"rating": 4.9,
"ratings_total": 430,
"main_image": "https://target.scene7.com/is/image/Target/GUEST_4d9a5f22-2748-48b8-95e8-4706b35966f0",
"images": [
"https://target.scene7.com/is/image/Target/GUEST_4d9a5f22-2748-48b8-95e8-4706b35966f0",
"https://target.scene7.com/is/image/Target/GUEST_67de2d4d-383a-411f-afc1-82b7e47a58d3",
"https://target.scene7.com/is/image/Target/GUEST_5e5e5130-0690-42a0-8849-3dd77f11bd5a",
"https://target.scene7.com/is/image/Target/GUEST_cc86f0a7-ca9f-4667-a252-0565fe36ba58",
"https://target.scene7.com/is/image/Target/GUEST_e3dc8ba1-9054-43d5-bd05-1f75a3ab41fb",
"https://target.scene7.com/is/image/Target/GUEST_444eff62-9fa6-4168-984f-e12950320103"
],
"videos": [
{
"link": "https://target.scene7.com/is/content/Target/GUEST_44967733-7805-4ee8-adcf-b51fbeb6dcbc_Flash9_Autox720p_2600k",
"type": "video/mp4"
}
]
},
"offers": {
"primary": {
"price": 4.89,
"currency": "USD",
"symbol": "$"
},
"all_offers": [
{
"price": 4.89,
"currency": "USD",
"symbol": "$"
}
]
},
"fulfillment": {
"type": "1p"
}
},
{
20,