-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDynamite_Clothing-Dynamite_US_Google_Product_Feed-shopping 2.xml
executable file
·1193 lines (1185 loc) · 71 KB
/
Dynamite_Clothing-Dynamite_US_Google_Product_Feed-shopping 2.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<feed>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.475-07:00</last_updated>
<id>0449192</id>
<title>Dynamite Off-The-Shoulder Crop Top CORAL STRIPE</title>
<description>Cropped for days. This new and trendy crop top features an off-the-shoulder neckline, elasticized detailing and lightweight fabric, perfect for sunny weather. Throw on your hottest denim, heels and statement jewellery and you'll have heads turning!</description>
<link>http://www.kqzyfj.com/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fofftheshoulder-crop-top%2Fp%2F100040622%3Fcolour%3D591%26LGWCODE%3D0449192%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100040622/100040622_591_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/offtheshoulder-crop-top/p/100040622?colour=591</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100040622/100040622_591_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100040622/100040622_591_alt2_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>29.95 USD</price>
<sale_price>29.95 USD</sale_price>
<google_product_category>212</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Shirts & Tops</google_product_category_name>
<product_type>TRENDING > LINE 'EM UP</product_type>
<brand>Dynamite</brand>
<mpn>0449192</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>CORAL STRIPE</color>
<gender>female</gender>
<size>XS</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100040622</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.498-07:00</last_updated>
<id>0433905</id>
<title>Dynamite Belted Linen Shorts KHAKI</title>
<description>Sun's out, legs out. When temps rise, turn to these effortlessly trendy linen shorts. They feature a belted waistline and casual front pockets that match up perfectly with a hot bodysuit and bold accessories.</description>
<link>http://www.dpbolvw.net/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fbelted-linen-shorts%2Fp%2F100035284%3Fcolour%3D720%26LGWCODE%3D0433905%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100035284/100035284_720_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/belted-linen-shorts/p/100035284?colour=720</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100035284/100035284_720_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100035284/100035284_720_alt2_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>34.95 USD</price>
<sale_price>20.00 USD</sale_price>
<google_product_category>169</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing Accessories > Belts</google_product_category_name>
<product_type>CLOTHING > ONLINE EXCLUSIVES</product_type>
<brand>Dynamite</brand>
<mpn>0433905</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>KHAKI</color>
<gender>female</gender>
<size>XS</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100035284</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.503-07:00</last_updated>
<id>0449288</id>
<title>Dynamite Pleated Halter Top NAVY/ POLKA DOTS</title>
<description>The perfect summer essential. Halter every look with this flawless piece that features pleated detailing and a trendy neckline. Pair this new item with high rise denim, statement heels and your fave jewellery. Bring on the sun!</description>
<link>http://www.jdoqocy.com/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fpleated-halter-top%2Fp%2F100040616%3Fcolour%3D201%26LGWCODE%3D0449288%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100040616/100040616_201_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/pleated-halter-top/p/100040616?colour=201</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100040616/100040616_201_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100040616/100040616_201_alt2_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>29.95 USD</price>
<sale_price>29.95 USD</sale_price>
<google_product_category>212</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Shirts & Tops</google_product_category_name>
<product_type>CLOTHING > TOPS > Camis & Tank Tops</product_type>
<brand>Dynamite</brand>
<mpn>0449288</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>NAVY/ POLKA DOTS</color>
<gender>female</gender>
<size>S</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100040616</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.513-07:00</last_updated>
<id>0449270</id>
<title>Dynamite Cropped Tank With Smocked Detail CAMEL/GREY STRIPES</title>
<description>Less is more. This cropped tank features smocked back detailing and a flattering fit, perfect to show yourself off. Make a statement with this cropped gem by styling with your fave denim or skirt and a hot pair of heels.</description>
<link>http://www.dpbolvw.net/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fcropped-tank-with-smocked-detail%2Fp%2F100040611%3Fcolour%3D0CV%26LGWCODE%3D0449270%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100040611/100040611_0CV_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/cropped-tank-with-smocked-detail/p/100040611?colour=0CV</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100040611/100040611_0CV_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100040611/100040611_0CV_alt2_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>29.95 USD</price>
<sale_price>18.00 USD</sale_price>
<google_product_category>212</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Shirts & Tops</google_product_category_name>
<product_type>SALE > NEWLY ADDED</product_type>
<brand>Dynamite</brand>
<mpn>0449270</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>CAMEL/GREY STRIPES</color>
<gender>female</gender>
<size>S</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100040611</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.568-07:00</last_updated>
<id>0430522</id>
<title>Dynamite Off-The-Shoulder Top With Tie STRIPE</title>
<description>A little tie goes a long way. This off-the-shoulder top with stylish tie detail is the perfect top for layering over jeans, skirts, and more. Flaunt it around at the office or pair with a bold lip for after-hours with the girls.</description>
<link>http://www.kqzyfj.com/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fofftheshoulder-top-with-tie%2Fp%2F100035684%3Fcolour%3D591%26LGWCODE%3D0430522%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100035684/100035684_591_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/offtheshoulder-top-with-tie/p/100035684?colour=591</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100035684/100035684_591_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100035684/100035684_591_alt2_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100035684/100035684_591_alt3_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>39.95 USD</price>
<sale_price>22.00 USD</sale_price>
<google_product_category>212</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Shirts & Tops</google_product_category_name>
<product_type>CLOTHING > TOPS > Shirts & Blouses</product_type>
<brand>Dynamite</brand>
<mpn>0430522</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>STRIPE</color>
<gender>female</gender>
<size>L</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100035684</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.638-07:00</last_updated>
<id>0428383</id>
<title>Dynamite T-Shirt With Back Detail GREY</title>
<description>Basic but better. This take on a classic tee is everything your wardrobe needs right now. Featuring a v-neck front and an open back detail, pair it up with all your fave jeans, skirts, joggers and more!</description>
<link>http://www.anrdoezrs.net/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Ftshirt-with-back-detail%2Fp%2F100037486%3Fcolour%3D120%26LGWCODE%3D0428383%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100037486/100037486_120_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/tshirt-with-back-detail/p/100037486?colour=120</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100037486/100037486_120_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100037486/100037486_120_alt2_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100037486/100037486_120_alt3_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100037486/100037486_120_alt4_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>19.95 USD</price>
<sale_price>19.95 USD</sale_price>
<google_product_category>212</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Shirts & Tops</google_product_category_name>
<product_type>CLOTHING > TOPS > Tops at 30% Off</product_type>
<brand>Dynamite</brand>
<mpn>0428383</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>GREY</color>
<gender>female</gender>
<size>L</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100037486</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.639-07:00</last_updated>
<id>0460411</id>
<title>Dynamite Crew Neck Slogan Tee HIGH RISK RED/ WHITE</title>
<description>Basically, perfect! Complete your wardrobe with this basic tee that features a crew neckline and embroidered detailing, perfect to transition from work to play. Style this staple with a fresh pair of denim, sandals and statement accessories for a casual take on the trend. </description>
<link>http://www.dpbolvw.net/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fcrew-neck-graphic-tee%2Fp%2Fprod3030147%3Fcolour%3D0ED%26LGWCODE%3D0460411%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100041967/100041967_0ED_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/crew-neck-graphic-tee/p/prod3030147?colour=0ED</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100041967/100041967_0ED_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100041967/100041967_0ED_alt2_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>24.95 USD</price>
<sale_price>24.95 USD</sale_price>
<google_product_category>212</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Shirts & Tops</google_product_category_name>
<product_type>CLOTHING > TOPS > Tops at 30% Off</product_type>
<brand>Dynamite</brand>
<mpn>0460411</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>HIGH RISK RED/ WHITE</color>
<gender>female</gender>
<size>XS</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>prod3030147</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.697-07:00</last_updated>
<id>0429752</id>
<title>Dynamite Bonded Bralette BLACK FLORAL</title>
<description>The bralette that moves with you. From tanks to t-shirts, this ultra-comfy, lightweight bralette is a must-have staple in your lingerie rotation. It features adjustable straps and a thick waistband.</description>
<link>http://www.dpbolvw.net/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fbonded-bralette%2Fp%2F100037986%3Fcolour%3D003%26LGWCODE%3D0429752%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100037986/100037986_003_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/bonded-bralette/p/100037986?colour=003</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100037986/100037986_003_alt1_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>22.95 USD</price>
<sale_price>8.00 USD</sale_price>
<google_product_category>213</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Underwear & Socks</google_product_category_name>
<product_type>CLOTHING > INTIMATES</product_type>
<brand>Dynamite</brand>
<mpn>0429752</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>BLACK FLORAL</color>
<gender>female</gender>
<size>M</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100037986</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.698-07:00</last_updated>
<id>0463588</id>
<title>Dynamite Textured Cardigan JET BLACK/SNOW WHITE MIX</title>
<description>Get comfy! This cardigan is all a girl needs for a laid-back cool look, it features a trendy texture, drop shoulder sleeves and an open front. Pair this piece with your go-to cami and leggings for a casual take on the trend.</description>
<link>http://www.dpbolvw.net/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Ftextured-cardigan%2Fp%2F100042462%3Fcolour%3D09Y%26LGWCODE%3D0463588%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100042462/100042462_09Y_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/textured-cardigan/p/100042462?colour=09Y</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100042462/100042462_09Y_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100042462/100042462_09Y_alt2_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100042462/100042462_09Y_alt3_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100042462/100042462_09Y_alt4_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>59.95 USD</price>
<sale_price>59.95 USD</sale_price>
<google_product_category>212</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Shirts & Tops</google_product_category_name>
<product_type>TRENDING > LINE 'EM UP</product_type>
<brand>Dynamite</brand>
<mpn>0463588</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>JET BLACK/SNOW WHITE MIX</color>
<gender>female</gender>
<size>XXS</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100042462</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>0.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.699-07:00</last_updated>
<id>0450679</id>
<title>Dynamite Lace V-Neck Bodysuit SNOW WHITE/NUDE</title>
<description>Ready to take the plunge!? Introducing your fave bodysuit yet, this hot item features all over lace detailing and a plunging neckline, perfect to steal all the attention. Pair it with a pretty skirt and a chic pair of heels. Note: This item is final sale due to hygienic purposes.</description>
<link>http://www.jdoqocy.com/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Flace-vneck-bodysuit%2Fp%2F100040286%3Fcolour%3D590%26LGWCODE%3D0450679%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100040286/100040286_590_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/lace-vneck-bodysuit/p/100040286?colour=590</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100040286/100040286_590_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100040286/100040286_590_alt2_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100040286/100040286_590_alt3_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>34.95 USD</price>
<sale_price>34.95 USD</sale_price>
<google_product_category>212</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Shirts & Tops</google_product_category_name>
<product_type>CLOTHING > TOPS > Bodysuits</product_type>
<brand>Dynamite</brand>
<mpn>0450679</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>SNOW WHITE/NUDE</color>
<gender>female</gender>
<size>XS</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100040286</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.700-07:00</last_updated>
<id>0450680</id>
<title>Dynamite Lace V-Neck Bodysuit SNOW WHITE/NUDE</title>
<description>Ready to take the plunge!? Introducing your fave bodysuit yet, this hot item features all over lace detailing and a plunging neckline, perfect to steal all the attention. Pair it with a pretty skirt and a chic pair of heels. Note: This item is final sale due to hygienic purposes.</description>
<link>http://www.dpbolvw.net/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Flace-vneck-bodysuit%2Fp%2F100040286%3Fcolour%3D590%26LGWCODE%3D0450680%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100040286/100040286_590_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/lace-vneck-bodysuit/p/100040286?colour=590</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100040286/100040286_590_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100040286/100040286_590_alt2_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100040286/100040286_590_alt3_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>34.95 USD</price>
<sale_price>34.95 USD</sale_price>
<google_product_category>212</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Shirts & Tops</google_product_category_name>
<product_type>CLOTHING > TOPS > Bodysuits</product_type>
<brand>Dynamite</brand>
<mpn>0450680</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>SNOW WHITE/NUDE</color>
<gender>female</gender>
<size>S</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100040286</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.707-07:00</last_updated>
<id>0442045</id>
<title>Dynamite Belted Linen Shorts BLACK</title>
<description>Easy breezy. These easy-to-wear shorts are a spring staple! Featuring casual front pockets and a flattering high rise, match them up with a stylish slogan tee or tucked in blouse for an effortlessly chic look.</description>
<link>http://www.kqzyfj.com/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fbelted-linen-short%2Fp%2F100039296%3Fcolour%3D000%26LGWCODE%3D0442045%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100039296/100039296_000_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/belted-linen-short/p/100039296?colour=000</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100039296/100039296_000_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100039296/100039296_000_alt2_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100039296/100039296_000_alt3_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>34.95 USD</price>
<sale_price>34.95 USD</sale_price>
<google_product_category>169</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing Accessories > Belts</google_product_category_name>
<product_type>CLOTHING > ONLINE EXCLUSIVES</product_type>
<brand>Dynamite</brand>
<mpn>0442045</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>BLACK</color>
<gender>female</gender>
<size>L</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100039296</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.708-07:00</last_updated>
<id>0449537</id>
<title>Dynamite Smocked Tube Top PINK FLORAL</title>
<description>Bad to the bone. Show off your form with this essential cropped tube top that features fully smocked detailing and a flattering fit. Style this new number with high rise denim and your face pumps. Throw over a statement jacket to add a little edge!</description>
<link>http://www.kqzyfj.com/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fsmocked-tube-top%2Fp%2F100040291%3Fcolour%3D471%26LGWCODE%3D0449537%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100040291/100040291_471_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/smocked-tube-top/p/100040291?colour=471</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100040291/100040291_471_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100040291/100040291_471_alt2_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100040291/100040291_471_alt3_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>19.95 USD</price>
<sale_price>10.00 USD</sale_price>
<google_product_category>212</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Shirts & Tops</google_product_category_name>
<product_type>SALE > NEWLY ADDED</product_type>
<brand>Dynamite</brand>
<mpn>0449537</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>PINK FLORAL</color>
<gender>female</gender>
<size>XS/S</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100040291</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.710-07:00</last_updated>
<id>0406794</id>
<title>Dynamite Kate Skinny Jeans With Hem Detail BLACK</title>
<description>We're all about feeling good in your skinnies. Featuring a skinny leg and a stylish hem detail, you'll never want to take these essential jeans off! Pair it up with an embellished top or keep it laid-back with a trendy button-up blouse.</description>
<link>http://www.kqzyfj.com/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fkate-jeans-with-hem-detail%2Fp%2F100033980%3Fcolour%3D000%26LGWCODE%3D0406794%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100033980/100033980_000_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/kate-jeans-with-hem-detail/p/100033980?colour=000</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100033980/100033980_000_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100033980/100033980_000_alt2_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100033980/100033980_000_alt3_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>59.95 USD</price>
<sale_price>25.00 USD</sale_price>
<google_product_category>204</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Pants</google_product_category_name>
<product_type>CLOTHING > JEANS > Jeans</product_type>
<brand>Dynamite</brand>
<mpn>0406794</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>BLACK</color>
<gender>female</gender>
<size>25</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100033980</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.712-07:00</last_updated>
<id>0435733</id>
<title>Dynamite Bustier Crop Top bright rose</title>
<description>Raindrop. Crop top. With its breathtaking strapless design, this built-in bra will have you wearing this bustier all over the weekend! Elevate this look with a pencil skirt, your fave boyfriend blazer and sky-high heels for a modern take on evening wear. Feeling sporty? Pair this piece with high waisted denim and a sheer top for a casual take on the trend.</description>
<link>http://www.dpbolvw.net/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fbustier-crop-top%2Fp%2F100033500%3Fcolour%3D400%26LGWCODE%3D0435733%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100033500/100033500_400_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/bustier-crop-top/p/100033500?colour=400</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100033500/100033500_400_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100033500/100033500_400_alt2_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100033500/100033500_400_alt3_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>29.95 USD</price>
<sale_price>15.00 USD</sale_price>
<google_product_category>212</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Shirts & Tops</google_product_category_name>
<product_type>SALE > NEWLY ADDED</product_type>
<brand>Dynamite</brand>
<mpn>0435733</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>bright rose</color>
<gender>female</gender>
<size>XS</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100033500</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.717-07:00</last_updated>
<id>0462850</id>
<title>Dynamite Tube Top JET BLACK</title>
<description>Fitted & fab! Show off your form with this tube top that features a super sexy fit. From Sunday brunch to evening cocktails, pair this tube top with your fave denim and sky-high pumps. </description>
<link>http://www.jdoqocy.com/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Ftube-top%2Fp%2F100042016%3Fcolour%3D06V%26LGWCODE%3D0462850%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100042016/100042016_06V_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/tube-top/p/100042016?colour=06V</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100042016/100042016_06V_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100042016/100042016_06V_alt2_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>19.95 USD</price>
<sale_price>19.95 USD</sale_price>
<google_product_category>212</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Shirts & Tops</google_product_category_name>
<product_type>CLOTHING > TOPS > T-Shirts</product_type>
<brand>Dynamite</brand>
<mpn>0462850</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>JET BLACK</color>
<gender>female</gender>
<size>XS</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100042016</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.718-07:00</last_updated>
<id>0403481</id>
<title>Dynamite Chenille Sweater With Chain Back - FINAL SALE BLACK</title>
<description>All chained up. This ultra-soft chenille sweater is the perfect addition to your wardrobe! Featuring an allover chenille fabric and a hot wrap back with chain detailing, this sweater is equal parts chic and cozy.</description>
<link>http://www.anrdoezrs.net/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fchenille-sweater-with-chain-back%2Fp%2F100035770%3Fcolour%3D000%26LGWCODE%3D0403481%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100035770/100035770_000_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/chenille-sweater-with-chain-back/p/100035770?colour=000</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100035770/100035770_000_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100035770/100035770_000_alt2_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100035770/100035770_000_alt3_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>49.95 USD</price>
<sale_price>15.00 USD</sale_price>
<google_product_category>212</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Shirts & Tops</google_product_category_name>
<product_type>SALE > CLEARANCE : UP TO 70% OFF</product_type>
<brand>Dynamite</brand>
<mpn>0403481</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>BLACK</color>
<gender>female</gender>
<size>XXS</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100035770</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.720-07:00</last_updated>
<id>0462585</id>
<title>Dynamite Satin Wide Leg Jumpsuit YELLOW/WHITE DOTS</title>
<description>Sexy in satin! This easy-to-wear jumpsuit is all you'll ever need to create the most stylish look this season. With a wide leg, short sleeves and lightweight fabric, style this jumpsuit with a classic heel and signature shades for a fashionable look.</description>
<link>http://www.anrdoezrs.net/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fsatin-wide-leg-jumpsuit%2Fp%2F100041569%3Fcolour%3D0PM%26LGWCODE%3D0462585%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100041569/100041569_0PM_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/satin-wide-leg-jumpsuit/p/100041569?colour=0PM</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100041569/100041569_0PM_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100041569/100041569_0PM_alt2_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>59.95 USD</price>
<sale_price>59.95 USD</sale_price>
<google_product_category>5250</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > One-Pieces > Jumpsuits & Rompers</google_product_category_name>
<product_type>CLOTHING > DRESSES & JUMPSUITS > Jumpsuits</product_type>
<brand>Dynamite</brand>
<mpn>0462585</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>YELLOW/WHITE DOTS</color>
<gender>female</gender>
<size>XXS</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100041569</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>0.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.721-07:00</last_updated>
<id>0462384</id>
<title>Dynamite Cami With Lace Trim JET BLACK</title>
<description>Featuring fine lace trimming and adjustable straps, this super hot cami is the perfect piece to top off every fashionable look. From work weeks to dinner dates, style this piece under a blazer and pair it with high rise denim and a chic heels. Stunning!</description>
<link>http://www.kqzyfj.com/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fcami-with-lace-trim%2Fp%2Fprod3030146%3Fcolour%3D06V%26LGWCODE%3D0462384%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100042127/100042127_06V_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/cami-with-lace-trim/p/prod3030146?colour=06V</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100042127/100042127_06V_alt1_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>24.95 USD</price>
<sale_price>24.95 USD</sale_price>
<google_product_category>212</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Shirts & Tops</google_product_category_name>
<product_type>CLOTHING > TOPS > Camis & Tank Tops</product_type>
<brand>Dynamite</brand>
<mpn>0462384</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>JET BLACK</color>
<gender>female</gender>
<size>XS</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>prod3030146</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.722-07:00</last_updated>
<id>0429744</id>
<title>Dynamite Bonded Bralette BLACK FLORAL</title>
<description>The bralette that moves with you. From tanks to t-shirts, this ultra-comfy, lightweight bralette is a must-have staple in your lingerie rotation. It features adjustable straps and a thick waistband.</description>
<link>http://www.tkqlhce.com/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fbonded-bralette%2Fp%2F100037986%3Fcolour%3D003%26LGWCODE%3D0429744%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100037986/100037986_003_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/bonded-bralette/p/100037986?colour=003</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100037986/100037986_003_alt1_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>22.95 USD</price>
<sale_price>8.00 USD</sale_price>
<google_product_category>213</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Underwear & Socks</google_product_category_name>
<product_type>CLOTHING > INTIMATES</product_type>
<brand>Dynamite</brand>
<mpn>0429744</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>BLACK FLORAL</color>
<gender>female</gender>
<size>S</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100037986</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.723-07:00</last_updated>
<id>0461893</id>
<title>Dynamite Knot Front Midi Skirt NAVY/ POLKA DOTS</title>
<description>Tie the knot! This pretty skirt features a trendy front knot detail, midi length and a lightweight fabric, perfect for the summer season. From desk to dinner, show off in style and pair this skirt with a fitted cami and chic heels. You're smokin'!</description>
<link>http://www.anrdoezrs.net/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fknot-front-midi-skirt%2Fp%2Fprod3040029%3Fcolour%3D0PU%26LGWCODE%3D0461893%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100040791/100040791_0PU_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/knot-front-midi-skirt/p/prod3040029?colour=0PU</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100040791/100040791_0PU_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100040791/100040791_0PU_alt2_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100040791/100040791_0PU_alt3_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>49.95 USD</price>
<sale_price>49.95 USD</sale_price>
<google_product_category>1581</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Skirts</google_product_category_name>
<product_type>CLOTHING > SKIRTS</product_type>
<brand>Dynamite</brand>
<mpn>0461893</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>NAVY/ POLKA DOTS</color>
<gender>female</gender>
<size>XS</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>prod3040029</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>0.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.724-07:00</last_updated>
<id>0456839</id>
<title>Dynamite Halter Lace Bodysuit PALE MAUVE</title>
<description>Look back at it! Featuring a sexy open back detail, adjustable halter neck and plunging neckline, this lace bodysuit is ALL you'll ever need. Style this hot gem with your fave skirt or high rise denim for a definite look to remember. Note: This item is final sale due to hygienic purposes.</description>
<link>http://www.tkqlhce.com/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fhalter-lace-bodysuit%2Fp%2Fprod3030126%3Fcolour%3D06R%26LGWCODE%3D0456839%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100039214/100039214_06R_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/halter-lace-bodysuit/p/prod3030126?colour=06R</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100039214/100039214_06R_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100039214/100039214_06R_alt2_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>34.95 USD</price>
<sale_price>34.95 USD</sale_price>
<google_product_category>212</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Shirts & Tops</google_product_category_name>
<product_type>CLOTHING > INTIMATES</product_type>
<brand>Dynamite</brand>
<mpn>0456839</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>PALE MAUVE</color>
<gender>female</gender>
<size>XS</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>prod3030126</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.725-07:00</last_updated>
<id>0468126</id>
<title>Dynamite Satin V-Neck Cami SILKY CLOUD</title>
<description>A definite fave! This satin cami features highpoint straps and a sexy v-neckline, perfect to top off every weekend look. From brunch to downtown shopping, elevate every look by styling this new gem with high rise denim and a chic wedge for a flawless look. You'll be catching the feeeeels!</description>
<link>http://www.kqzyfj.com/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fsatin-vneck-cami%2Fp%2Fprod3030119%3Fcolour%3D0IS%26LGWCODE%3D0468126%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100042804/100042804_0IS_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/satin-vneck-cami/p/prod3030119?colour=0IS</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100042804/100042804_0IS_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100042804/100042804_0IS_alt2_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100042804/100042804_0IS_alt3_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>19.95 USD</price>
<sale_price>19.95 USD</sale_price>
<google_product_category>212</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Shirts & Tops</google_product_category_name>
<product_type>CLOTHING > TOPS > Camis & Tank Tops</product_type>
<brand>Dynamite</brand>
<mpn>0468126</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>SILKY CLOUD</color>
<gender>female</gender>
<size>XXS</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>prod3030119</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.726-07:00</last_updated>
<id>0462869</id>
<title>Dynamite Soft Kimono BEIGE/FLOWING FLORAL</title>
<description>So soft, so sweet. Top off every fashionable look with this new kimono, it features an open front, midi sleeves and stunning satin feel. From desk to dinner, stand out and style this kimono over a bodysuit and a pair of your fave denim. Style queen!</description>
<link>http://www.anrdoezrs.net/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fsoft-kimono%2Fp%2F100041579%3Fcolour%3D0JG%26LGWCODE%3D0462869%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100041579/100041579_0JG_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/soft-kimono/p/100041579?colour=0JG</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100041579/100041579_0JG_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100041579/100041579_0JG_alt2_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100041579/100041579_0JG_alt3_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>49.95 USD</price>
<sale_price>49.95 USD</sale_price>
<product_type>TRENDING > SUMMER ESSENTIALS</product_type>
<brand>Dynamite</brand>
<mpn>0462869</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>BEIGE/FLOWING FLORAL</color>
<gender>female</gender>
<size>XL</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100041579</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>0.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.727-07:00</last_updated>
<id>0463714</id>
<title>Dynamite Button Up Blouse BLUE/ WHITE STRIPES</title>
<description>Loosen up those buttons! This trendy blouse is all you need to catch all the attention, it features functional front pockets, button up placket, and long sleeves. Tuck this hot blouse into your fave denim bottoms or pair it with a hot skirt. </description>
<link>http://www.dpbolvw.net/click-8431052-13320837?url=https%3A%2F%2Fwww.dynamiteclothing.com%2Fus%2Fbutton-up-blouse%2Fp%2F100042040%3Fcolour%3D0KI%26LGWCODE%3D0463714%3B144447%3B8769</link>
<impression_url>http://www.awltovhc.com/image-8431052-13320837</impression_url>
<image_link>https://images.gdicdn.com/images/product/100042040/100042040_0KI_810x916.jpg</image_link>
<mobile_link>https://m.dynamiteclothing.com/us/button-up-blouse/p/100042040?colour=0KI</mobile_link>
<additional_image_link>https://images.gdicdn.com/images/product/100042040/100042040_0KI_alt1_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100042040/100042040_0KI_alt2_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100042040/100042040_0KI_alt3_810x916.jpg</additional_image_link>
<additional_image_link>https://images.gdicdn.com/images/product/100042040/100042040_0KI_alt4_810x916.jpg</additional_image_link>
<availability>in stock</availability>
<price>39.95 USD</price>
<sale_price>39.95 USD</sale_price>
<google_product_category>212</google_product_category>
<google_product_category_name>Apparel & Accessories > Clothing > Shirts & Tops</google_product_category_name>
<product_type>CLOTHING > ONLINE EXCLUSIVES</product_type>
<brand>Dynamite</brand>
<mpn>0463714</mpn>
<identifier_exists>yes</identifier_exists>
<condition>new</condition>
<adult>no</adult>
<is_bundle>no</is_bundle>
<age_group>adult</age_group>
<color>BLUE/ WHITE STRIPES</color>
<gender>female</gender>
<size>XS</size>
<size_type>regular</size_type>
<size_system>EU</size_system>
<item_group_id>100042040</item_group_id>
<custom_label_4>ENGLISH</custom_label_4>
<shipping_label>3-7 business days</shipping_label>
<shipping><country>US</country>
<price>9.00 USD</price>
</shipping>
</entry>
<entry>
<program_name>Dynamite Clothing</program_name>
<program_url>http://www.dynamiteclothing.com</program_url>
<catalog_name>Dynamite (US) Google Product Feed</catalog_name>
<last_updated>2018-08-02T02:28:21.728-07:00</last_updated>