sanjeev21 commited on
Commit
bfcf5a4
·
1 Parent(s): b01e61a

first commit

Browse files
airtory_logo.PNG ADDED
app.py ADDED
@@ -0,0 +1,378 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import re
3
+ import altair as alt
4
+ from folder_management import create_folder, remove_files_folder
5
+
6
+ st.set_page_config('Product Recommendation Application', layout='wide', page_icon='airtory_logo.PNG')
7
+
8
+
9
+ # Functions/Pages
10
+ def intro():
11
+ import streamlit as st
12
+
13
+ st.markdown("## Welcome to the Product Recommendation Application! 👋")
14
+ st.sidebar.success("Select a page from above.")
15
+
16
+ st.markdown(
17
+ """
18
+ **👈 Select a page from the navigation bar to the left**
19
+
20
+ ### Functionality of Pages
21
+ #### Generate Recommendations Page
22
+ - This page allows you to generate recommendations for a particular keyword/publisherid combo.
23
+ - The recommendations for each keyword/publisherid combo, are stored in a separate SQLite Database Table.
24
+ - Ideally, for each keyword/publisherid combo, the recommendations should only be generated once per day. To mock this, you are only allowed to generate recommendations for a specific keyword/publisherid combo once.
25
+ #### Product Recommendations Page
26
+ - This page displays the Product Recommendations for each keyword/publisherid combo for which the recommendations were generated in the previous page.
27
+ - You can currently select the available keywords from the dropdown provided in the side bar.
28
+ - For the time being, the Publisher ID is restricted to a single known value. This can be easily updated later.
29
+ - Note: Since the click tracker I was using had issues, as a workaround I had to use a Button instead. So now, to register a click against a product, you need to click on the 'Select' button provided below each product.
30
+ - For each session, once a product is clicked on, it is no longer displayed.
31
+ - You can choose the number of recommendations to be displayed, between 1 & 5.
32
+ - The maximum number of recommendations that are available for display for each keyword/publisherid combo is restricted to 50.
33
+ - The minumum number depends on the products available from bizrate.
34
+ - If/when all available recommendations for a keyword/publisherid combo has been clicked on, you can either choose a different keyword, reload the application to create a new session.
35
+ #### Analytics Page
36
+ - Displays a Line Chart and a Bar Chart, to show the distribution of clicks across Session ID, Keyword, Publisher ID, SKU or Date.
37
+ - Displays a table of the most clicked SKU's
38
+ """
39
+ )
40
+
41
+
42
+ def generate_recommendations():
43
+ import os
44
+ import string
45
+ import random
46
+ import streamlit as st
47
+ import warnings
48
+ warnings.filterwarnings('ignore')
49
+
50
+ # custom module
51
+ # from clickcounter import clickcounter
52
+ from folder_management import create_folder, remove_files_folder
53
+ from sqlite_database import create_insert_table, query_table, insert_clickdata_table, check_for_table
54
+ from recommend import query_bizrate, recommend, generate_clickreport
55
+
56
+ # Functions
57
+ def random_string(N=7):
58
+ res = ''.join(random.choices(string.ascii_lowercase + string.digits, k=N))
59
+ return str(res)
60
+
61
+ def query_and_recommend(keyword, publisherid):
62
+ query_bizrate(keyword, publisherid)
63
+ recommend(keyword, publisherid)
64
+ generate_clickreport()
65
+
66
+ # Main Program
67
+
68
+ # st.set_page_config('Generate Recommendations', layout='wide')
69
+
70
+ st.title('Generate Recommendations')
71
+ st.markdown('''<pre style="text-align:center">
72
+ <strong><span style="color:#6a8759">
73
+ Generate Recommendations for any Keyword - Publisher ID Combo. <br><br> </span></strong></pre>''',
74
+ unsafe_allow_html=True)
75
+
76
+ col1, col2 = st.columns(2)
77
+
78
+ selected_keyword = ''
79
+ publisher_id = ''
80
+
81
+ with col1:
82
+ selected_keyword = st.text_input('Enter a single word as keyword:', 'bed')
83
+ selected_keyword = selected_keyword.lower()
84
+ selected_keyword = selected_keyword.replace('-', '')
85
+ selected_keyword = ''.join(re.split(r"[ \|\\\/,.]", selected_keyword))
86
+ # selected_keyword = ''.join(selected_keyword.split())
87
+ st.write(selected_keyword)
88
+
89
+ with col2:
90
+ publisher_id = st.text_input("Enter a Publisher ID: ", '726189')
91
+ # st.write(publisher_id)
92
+
93
+ keyword_pubid_list = []
94
+ for file in os.listdir('bizrate'):
95
+ keyword_pubid_list.append(file.replace(".xml", ""))
96
+
97
+ if selected_keyword + "_" + publisher_id in keyword_pubid_list:
98
+ st.error('Keyword - Publisher ID Combo Exists!')
99
+ else:
100
+ st.info("Keyword - Publisher ID Combo doesn't exist. Must be queried")
101
+ st.button('Generate Recommendations', key=random_string(), on_click=query_and_recommend,
102
+ args=([selected_keyword, publisher_id]))
103
+
104
+
105
+ def display_recommendations():
106
+ import pandas as pd
107
+ import numpy as np
108
+ import requests
109
+ from bs4 import BeautifulSoup
110
+ import urllib.parse
111
+ import os
112
+ import string
113
+ import random
114
+
115
+ import time
116
+
117
+ import streamlit as st
118
+ import uuid
119
+
120
+ import warnings
121
+ import sys
122
+
123
+ warnings.filterwarnings('ignore')
124
+
125
+ # custom module
126
+ # from clickcounter import clickcounter
127
+ from folder_management import create_folder, remove_files_folder
128
+ from sqlite_database import create_insert_table, query_table, insert_clickdata_table, check_for_table
129
+
130
+ # Functions
131
+ def random_string(N=7):
132
+ res = ''.join(random.choices(string.ascii_lowercase + string.digits, k=N))
133
+ return str(res)
134
+
135
+ # def display_products(dfp):
136
+ # product_list = list(dfp['title'])
137
+ # image_list = list(dfp['Image'])
138
+ # price_list = list(dfp['price'])
139
+ # org_price = list(dfp['originalPrice'])
140
+ # disc_list = list(dfp['markdownPercent'])
141
+ # dfp['Skus'] = dfp['Skus'].astype('object')
142
+ # sku_list = list(dfp['Skus'])
143
+ # url_list = list(dfp['url'])
144
+ # clicked_sku, counter_dict = clickcounter(image_list, sku_list, price_list, disc_list, org_price, url_list, product_list)
145
+ # return clicked_sku, counter_dict
146
+
147
+ # Main Program
148
+ # st.set_page_config('Product Recommender System', layout='wide')
149
+ st.title('Product Recommender System')
150
+ st.markdown('''<pre style="text-align:center">
151
+ <strong><span style="color:#6a8759">
152
+ It will take as inputs: Keyword and Publisher ID.
153
+ Displays (upto) Top 5 Recommendations &amp; Collects Click Information. <br><br> </span></strong></pre>''',
154
+ unsafe_allow_html=True)
155
+
156
+ # Generating Session ID:
157
+ if 'store' not in st.session_state:
158
+ st.session_state.store = False
159
+
160
+ try:
161
+ df_session = pd.read_excel('df_session.xlsx')
162
+ df_row = pd.DataFrame({'ID': uuid.uuid4()}, index=[0])
163
+ df_session = pd.concat([df_session, df_row], ignore_index=True)
164
+ df_session.to_excel('df_session.xlsx', index=False)
165
+ df_sku = pd.DataFrame({'SessionID': pd.Series(dtype='object'), 'Keyword': pd.Series(dtype='object'),
166
+ 'Skus': pd.Series(dtype='object'),
167
+ 'Count': pd.Series(dtype='int')}) # Initializing the SKU-Count DataFrame
168
+ df_sku.to_excel('df_sku.xlsx', index=False)
169
+
170
+ except FileNotFoundError:
171
+ df_session = pd.DataFrame({'ID': uuid.uuid4()}, index=[0]) # Initializing the SKU-Count DataFrame
172
+ df_session.to_excel('df_session.xlsx', index=False)
173
+
174
+ df_session = pd.read_excel('df_session.xlsx')
175
+ session_id = list(df_session['ID'])[-1]
176
+ # st.sidebar.write(session_id) # Uncomment to display the Session ID
177
+
178
+ # Inputs
179
+
180
+ # selected_keyword = st.sidebar.text_input("Enter a single word as Keyword: ", 'aquaman')
181
+ # publisher_id = st.sidebar.text_input("Enter Publisher ID: ", '725895')
182
+ list_keywords = []
183
+ list_publisherid = []
184
+ for file in os.listdir('bizrate'):
185
+ keyword_publisherid = file.replace(".xml", "")
186
+ list_keywords.append(keyword_publisherid.split("_")[0])
187
+ list_publisherid.append(keyword_publisherid.split("_")[1])
188
+ # list_keywords = ['aquaman', 'superman', 'batman', 'shoes', 'electronics', 'wallet', 'movies', 'books'] # Temporary
189
+ list_publisherid = ['726189'] # For the time being Publisher ID is being HardCoded.
190
+ selected_keyword = st.sidebar.selectbox("Select a Keyword:", set(sorted(list_keywords)))
191
+ publisher_id = st.sidebar.selectbox("Select a Publisher ID:", set(list_publisherid))
192
+
193
+ # st.write(selected_keyword)
194
+ # st.write(publisher_id)
195
+
196
+ # Query clickReport.db, aggregate clicks and sort most clicked
197
+ clickreport_df = query_table('clickReport', 'clickReport')
198
+ clicked_df = clickreport_df[clickreport_df['keyword'] == selected_keyword]
199
+ clicked_df = clicked_df[['keyword', 'Skus', 'clicks']].groupby(['keyword', 'Skus']).sum().reset_index()
200
+ clicked_df = clicked_df.sort_values(by='clicks', ascending=False)
201
+ to_display_df = clicked_df.copy()
202
+ clicked_df = clicked_df[['Skus', 'clicks']]
203
+ print("LINE 202: Most Clicked: \n {}".format(clicked_df.head()))
204
+ # Query Recommended Data as per Keyword and Publisher ID
205
+
206
+ try:
207
+ rec_df = query_table('RecSysData', selected_keyword + "_" + publisher_id)
208
+ rec_df = pd.merge(clicked_df, rec_df, how='right', on=['Skus'])
209
+ rec_df = rec_df.sort_values(by='clicks', ascending=False)
210
+ print("LINE 209: \n {}".format(rec_df.head()))
211
+ print("LINE 210: \n {}".format(rec_df.columns))
212
+ except pd.errors.DatabaseError:
213
+ # st.error('This Keyword Publisher ID Combo Doesnt Exist!')
214
+ rec_df = pd.DataFrame({}, columns=['title', 'Brand', 'url', 'Image', 'Skus', 'price', 'originalPrice',
215
+ 'markdownPercent', 'totalPrice', 'condition', 'stock', 'relevancy'])
216
+ rec_df = pd.merge(clicked_df, rec_df, how='left', on=['Skus'])
217
+ rec_df = rec_df.sort_values(by='clicks', ascending=False)
218
+
219
+ # Logic to Decide which SKU's to Display
220
+
221
+ # 1. If a SKU has already been clicked on. It cannot be displayed again.
222
+
223
+ try:
224
+ click_data_df = query_table('session_data', 'session_data')
225
+
226
+ if click_data_df.empty:
227
+ # df_top_rec = rec_df.head(5)
228
+ rec_df = rec_df.head(5)
229
+ else:
230
+ displayed_skus = list(click_data_df[click_data_df['session_id'] == session_id][
231
+ 'Skus']) # List of SKU's already displayed in the current session
232
+ # st.write("Clicked SKUs in this Session: ")
233
+ # st.write(displayed_skus)
234
+ rec_df = rec_df[~rec_df['Skus'].isin(displayed_skus)]
235
+ except pd.errors.DatabaseError as e:
236
+ print(e)
237
+
238
+ # Top 5 Recommendations
239
+ # top_df = rec_df.head(5).reset_index()
240
+ try:
241
+ top_df = rec_df.head().sample(5).reset_index() # random 5 recommendations
242
+ except Exception as e:
243
+ # st.error(e)
244
+ top_df = rec_df.head(5).reset_index()
245
+
246
+ recs_to_display = 0
247
+ if len(top_df) > 5:
248
+ recs_to_display = st.sidebar.slider('Recommendations to Display', 1, 5)
249
+ elif len(top_df) > 1:
250
+ recs_to_display = st.sidebar.slider('Recommendations to Display', 1, len(top_df), len(top_df))
251
+ else:
252
+ recs_to_display = 1
253
+
254
+ # recs_to_display image width dictionary
255
+ image_width_dictionary = {
256
+ 5: 200,
257
+ 4: 240,
258
+ 3: 280,
259
+ 2: 320,
260
+ 1: 400}
261
+
262
+ if recs_to_display > 0:
263
+ idx = 0
264
+ cols = st.columns(recs_to_display)
265
+ for col in cols:
266
+ with col:
267
+ try:
268
+ title = top_df['title'][idx]
269
+ img_link = top_df['url'][idx]
270
+ sku = top_df['Skus'][idx]
271
+ list_price = top_df['originalPrice'][idx]
272
+ selling_price = top_df['price'][idx]
273
+ discount = top_df['markdownPercent'][idx]
274
+ st.image(top_df['Image'][idx], width=image_width_dictionary[recs_to_display])
275
+ # st.write('SKU: {}'.format(sku))
276
+ # st.write('SKU: {}'.format(sku))
277
+ # st.write('SKU: {}'.format(sku))
278
+ content = '''<p><strong> <a href={}>{}</a> </strong> <br>
279
+ <strong>SKU:</strong> {} <br>
280
+ <strong>S.P:</strong> $ {}<br>
281
+ <strong>Discount:</strong> % {} <br>
282
+ <strong>L.P:</strong> $ {} <br>
283
+ </p>'''.format(img_link, title, sku, selling_price, discount, list_price)
284
+ st.markdown(content, unsafe_allow_html=True)
285
+ st.button('Select', key=random_string(), on_click=insert_clickdata_table,
286
+ args=([session_id, selected_keyword, publisher_id, sku, 1]))
287
+ except KeyError:
288
+ st.info('No more recommendations to display for this Keyword-PublisherID Combo!')
289
+ st.info('You can search for another keyword or reload the page!')
290
+ idx += 1
291
+ else:
292
+ st.text(
293
+ 'No more recommendations to display for this Keyword-PublisherID Combo! You can search for another keyword or reload the page!')
294
+
295
+ # Display Click Table showing total clicks and clicks in current session
296
+ st.write("\n")
297
+ st.write("\n")
298
+ st.write("Most Clicked SKUs for keyword : {}".format(selected_keyword))
299
+ st.dataframe(to_display_df.reset_index(drop=True).head(10))
300
+ st.write("Clicked SKUs in this Session: ")
301
+ st.dataframe(click_data_df[click_data_df['session_id'] == session_id].reset_index(drop=True))
302
+
303
+
304
+ def display_analytics():
305
+ import pandas as pd
306
+ import numpy as np
307
+ import requests
308
+ from bs4 import BeautifulSoup
309
+ import urllib.parse
310
+ import os
311
+ import string
312
+ import random
313
+
314
+ import time
315
+
316
+ import streamlit as st
317
+ import uuid
318
+
319
+ import warnings
320
+
321
+ warnings.filterwarnings('ignore')
322
+
323
+ # custom module
324
+ # from clickcounter import clickcounter
325
+ from folder_management import create_folder, remove_files_folder
326
+ from sqlite_database import create_insert_table, query_table, insert_clickdata_table, check_for_table
327
+
328
+ # Main Program
329
+ # st.set_page_config('Analytics', layout='wide')
330
+ st.title('Analytics')
331
+
332
+ df = query_table('session_data', 'session_data')
333
+ # print(pd.Timestamp(df['clicked_at'][0]).date())
334
+ df['date'] = df['clicked_at'].map(lambda x: pd.Timestamp(x).date())
335
+ x_col_list = list(df.columns)
336
+ x_col_list.remove('count')
337
+ x_col_list.remove('clicked_at')
338
+ print(x_col_list)
339
+ column = st.selectbox('Select a Dimension:', x_col_list)
340
+
341
+ # Grouping the DataFrame
342
+ if column:
343
+ grouped_df = df.groupby([column]).sum().reset_index()
344
+ if column != 'date':
345
+ grouped_df = grouped_df.sort_values(by='count', ascending=False)
346
+ grouped_df.rename(columns={'count': 'clicks'}, inplace=True)
347
+ # st.dataframe(grouped_df.head())
348
+ col1, col2 = st.columns(2)
349
+ with col1:
350
+ # st.line_chart(grouped_df, x=column, y='clicks')
351
+ alt_line_chart = alt.Chart(grouped_df).mark_line(color='#3ac81e').encode(x=column, y='clicks')
352
+ st.altair_chart(alt_line_chart, use_container_width=True)
353
+
354
+ with col2:
355
+ # st.bar_chart(grouped_df, x=column, y='clicks')
356
+ alt_bar_chart = alt.Chart(grouped_df).mark_bar(color='#3ac81e').encode(x=column, y='clicks')
357
+ st.altair_chart(alt_bar_chart, use_container_width=True)
358
+
359
+ st.title("Top Products")
360
+ agg_df = df[['keyword', 'publisherid', 'Skus', 'count']]
361
+ agg_df.rename(columns={'keyword': 'Keywords', 'publisherid': 'PublisherID', 'count': 'Clicks'}, inplace=True)
362
+ agg_df = agg_df.groupby(['Skus', 'Keywords', 'PublisherID']).sum().reset_index()
363
+ agg_df = agg_df.sort_values(by='Clicks', ascending=False).reset_index(drop=True)
364
+ st.dataframe(agg_df.head(20), width=1000)
365
+
366
+
367
+ create_folder('bizrate')
368
+ create_folder('sqlite_databases')
369
+
370
+ page_names_to_funcs = {
371
+ "—": intro,
372
+ "Generate Recommendations": generate_recommendations,
373
+ "Product Recommendations": display_recommendations,
374
+ "Analytics": display_analytics
375
+ }
376
+
377
+ page_name = st.sidebar.selectbox("Choose a Page", page_names_to_funcs.keys())
378
+ page_names_to_funcs[page_name]()
bizrate/bed_726189.xml ADDED
@@ -0,0 +1 @@
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?><ProductResponse xmlns="http://www.shopzilla.com/services/catalog"><Classification><searchUrl>https://www.bizrate.com/bed?rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</searchUrl></Classification><Offers includedResults="11" totalResults="11"><PriceSet><minPrice integral="44156">$441.56</minPrice><maxPrice integral="214900">$2,149.00</maxPrice></PriceSet><Offer merchantId="321427" categoryId="8340" id="22649923364"><title>Movido Bed White</title><mature>false</mature><description>Upgrade to a style that is elegant and refined with the Movido Bed in White. Offering straight clean lines, white leatherette upholstery, and polished chrome legs, this piece exudes class while providing comfort. The dual adjustable headboard allows...</description><manufacturer>Modani Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.modani.com%2Fsale-modani-furniture%2Fmovido-bed-white%3Futm_source%3Dconnexity%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321427&amp;cat_id=8340&amp;atom=8341&amp;prod_id=&amp;oid=22649923364&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=2d4131f169db8a34&amp;af_sid=9&amp;mpid=BED-MOVI-WH-QUEE&amp;keyword=bed&amp;a=476c77957cce8865c306e7437e0449e5&amp;dv=17346c566c2fa1d74201af7a0c85b6068b2109daf29dd44c&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d9.cnnx.io/image/obj/22649923364;sq=60;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN7p-ZqiQF2-Sy-B5DLFcwmg==</Image><Image xsize="100" ysize="100">https://d9.cnnx.io/image/obj/22649923364;sq=100;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN7p-ZqiQF2-Sy-B5DLFcwmg==</Image><Image xsize="160" ysize="160">https://d9.cnnx.io/image/obj/22649923364;sq=160;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN7p-ZqiQF2-Sy-B5DLFcwmg==</Image><Image xsize="400" ysize="400">https://d9.cnnx.io/image/obj/22649923364;sq=400;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN7p-ZqiQF2-Sy-B5DLFcwmg==</Image></Images><Skus><sku>BEDMOVIWHQUEE</sku></Skus><sku>BEDMOVIWHQUEE</sku><detailUrl>https://www.bizrate.com/oid22649923364?af_sid=9&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="169900">$1,699.00</price><originalPrice integral="185000">$1,850.00</originalPrice><markdownPercent>8.16</markdownPercent><totalPrice integral="169900">$1,699.00</totalPrice><bidded>true</bidded><merchantProductId>BED-MOVI-WH-QUEE</merchantProductId><merchantName>modani</merchantName><merchantLogoUrl>https://s7.cnnx.io/merchant/little/321427.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><relevancy>150.432800</relevancy></Offer><Offer merchantId="321427" categoryId="8340" id="22649923583"><title>William Bed White</title><mature>false</mature><description>The grandeur of the oversized headboard on the William Bed in White will turn any space into a room fit for royalty. The sharp, clean lines and tufted, square panels add charisma and personality, while the padded cushioning lends support. The expansive...</description><manufacturer>Modani Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.modani.com%2Fsale-modani-furniture%2Fwilliam-bed-white%3Futm_source%3Dconnexity%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321427&amp;cat_id=8340&amp;atom=8341&amp;prod_id=&amp;oid=22649923583&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=39c10e6a6d36ff7a&amp;af_sid=9&amp;mpid=BED-WILL-WH-QUEE-SET&amp;keyword=bed&amp;a=476c77957cce8865c306e7437e0449e5&amp;dv=17346c566c2fa1d74201af7a0c85b6068b2109daf29dd44c&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d8.cnnx.io/image/obj/22649923583;sq=60;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN9J-fSudNmtqTqmD-eo-QLxcVXiA7FFMCMrW2HplqCxJ2vSgUhOfSe1QyUB7SoE9Z9f-48tnrJjl3IQ==</Image><Image xsize="100" ysize="100">https://d8.cnnx.io/image/obj/22649923583;sq=100;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN9J-fSudNmtqTqmD-eo-QLxcVXiA7FFMCMrW2HplqCxJ2vSgUhOfSe1QyUB7SoE9Z9f-48tnrJjl3IQ==</Image><Image xsize="160" ysize="160">https://d8.cnnx.io/image/obj/22649923583;sq=160;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN9J-fSudNmtqTqmD-eo-QLxcVXiA7FFMCMrW2HplqCxJ2vSgUhOfSe1QyUB7SoE9Z9f-48tnrJjl3IQ==</Image><Image xsize="400" ysize="400">https://d8.cnnx.io/image/obj/22649923583;sq=400;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN9J-fSudNmtqTqmD-eo-QLxcVXiA7FFMCMrW2HplqCxJ2vSgUhOfSe1QyUB7SoE9Z9f-48tnrJjl3IQ==</Image></Images><Skus><sku>BEDWILLWHQUEESET</sku></Skus><sku>BEDWILLWHQUEESET</sku><detailUrl>https://www.bizrate.com/oid22649923583?af_sid=9&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="214900">$2,149.00</price><originalPrice integral="250000">$2,500.00</originalPrice><markdownPercent>14.04</markdownPercent><totalPrice integral="214900">$2,149.00</totalPrice><bidded>true</bidded><merchantProductId>BED-WILL-WH-QUEE-SET</merchantProductId><merchantName>modani</merchantName><merchantLogoUrl>https://s7.cnnx.io/merchant/little/321427.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><relevancy>148.424420</relevancy></Offer><Offer merchantId="321427" categoryId="8340" id="22649923441"><title>Hiro Modern Bed</title><mature>false</mature><description>Our Hiro Modern Bed is the perfect combination of classic Japanese structural design and modern influence. The headboard is formed from two slats of live wood that rest on a sheet metal base. The two headboard slats are supported by three unique...</description><manufacturer>Modani Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.modani.com%2Fsale-modani-furniture%2Fhiro-modern-bed%3Futm_source%3Dconnexity%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321427&amp;cat_id=8340&amp;atom=8341&amp;prod_id=&amp;oid=22649923441&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=dd4f5ada6173f844&amp;af_sid=9&amp;mpid=BED-HIRO-BR-QUEE-SET&amp;keyword=bed&amp;a=476c77957cce8865c306e7437e0449e5&amp;dv=17346c566c2fa1d74201af7a0c85b6068b2109daf29dd44c&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d6.cnnx.io/image/obj/22649923441;sq=60;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN65-f-bZ77qRGO-N15Kq4RIPi7mG_BW8=</Image><Image xsize="100" ysize="100">https://d6.cnnx.io/image/obj/22649923441;sq=100;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN65-f-bZ77qRGO-N15Kq4RIPi7mG_BW8=</Image><Image xsize="160" ysize="160">https://d6.cnnx.io/image/obj/22649923441;sq=160;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN65-f-bZ77qRGO-N15Kq4RIPi7mG_BW8=</Image><Image xsize="400" ysize="400">https://d6.cnnx.io/image/obj/22649923441;sq=400;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN65-f-bZ77qRGO-N15Kq4RIPi7mG_BW8=</Image></Images><Skus><sku>BEDHIROBRQUEESET</sku></Skus><sku>BEDHIROBRQUEESET</sku><detailUrl>https://www.bizrate.com/oid22649923441?af_sid=9&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="189900">$1,899.00</price><originalPrice integral="269000">$2,690.00</originalPrice><markdownPercent>29.41</markdownPercent><totalPrice integral="189900">$1,899.00</totalPrice><bidded>true</bidded><merchantProductId>BED-HIRO-BR-QUEE-SET</merchantProductId><merchantName>modani</merchantName><merchantLogoUrl>https://s7.cnnx.io/merchant/little/321427.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><relevancy>147.889760</relevancy></Offer><Offer merchantId="44084" categoryId="8340" id="23079753699"><title>Flash Furniture XU-BD10-12PSM-K-GG King Size Platform Bed Frame w/ Queen Size Mattress - Steel, Black</title><mature>false</mature><description>The Hotel Room Amenities &amp; Supplies by Flash Furniture: Platform Bed Frame and Mattress, 14 king size frame, 12-1/2 clearance from bottom, 19 gauge solid steel and metal screw construction, 650 lb. capacity, felt pads between middle rail and support...</description><manufacturer>Flash Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.katom.com%2F916-XUBD1012PSMKGG.html%3Futm_source%3DShopzilla%26utm_medium%3DCSE%26utm_campaign%3DFlash%2BFurniture%26utm_content%3DSZ_REDIRECT_ID%26utm_term%3D916XUBD1012PSMKGG%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=44084&amp;cat_id=8340&amp;atom=8341&amp;prod_id=&amp;oid=23079753699&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=b36a09646b4cd691&amp;af_sid=9&amp;mpid=916-XUBD1012PSMKGG&amp;keyword=bed&amp;a=a633a3c54179a8a9095cb9f843592d55&amp;dv=17346c566c2fa1d7d9c03a0fd29a156508ca615b6d8d8342&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d9.cnnx.io/image/obj/23079753699;sq=60;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrjwMME6bsxH1gfvqvKvraHKy8huYSjjP4J5i546IrnwWK4FI4U=</Image><Image xsize="100" ysize="100">https://d9.cnnx.io/image/obj/23079753699;sq=100;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrjwMME6bsxH1gfvqvKvraHKy8huYSjjP4J5i546IrnwWK4FI4U=</Image><Image xsize="160" ysize="160">https://d9.cnnx.io/image/obj/23079753699;sq=160;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrjwMME6bsxH1gfvqvKvraHKy8huYSjjP4J5i546IrnwWK4FI4U=</Image><Image xsize="400" ysize="400">https://d9.cnnx.io/image/obj/23079753699;sq=400;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrjwMME6bsxH1gfvqvKvraHKy8huYSjjP4J5i546IrnwWK4FI4U=</Image></Images><Skus><sku>XUBD1012PSMKGG</sku></Skus><sku>XUBD1012PSMKGG</sku><upc>889142990246</upc><gtin>889142990246</gtin><ean13>0889142990246</ean13><detailUrl>https://www.bizrate.com/oid23079753699?af_sid=9&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="44156">$441.56</price><originalPrice integral="75070">$750.70</originalPrice><markdownPercent>41.18</markdownPercent><totalPrice integral="44156">$441.56</totalPrice><bidded>true</bidded><merchantProductId>916-XUBD1012PSMKGG</merchantProductId><merchantName>KaTom</merchantName><merchantLogoUrl>https://s9.cnnx.io/merchant/little/44084.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>151.000</shipWeight><relevancy>60.960175</relevancy></Offer><Offer merchantId="321427" categoryId="8340" id="23822068530"><title>William Bed Gray</title><mature>false</mature><description>The grandeur of the oversized headboard on the William Bed in Gray will turn any space into a room fit for royalty. The sharp, clean lines and tufted, square panels add charisma and personality, while the padded cushioning lends support. The expansive...</description><manufacturer>Modani Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.modani.com%2Fbedroom%2Fbeds%2Fwilliam-bed-gray%3Futm_source%3Dconnexity%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321427&amp;cat_id=8340&amp;atom=8341&amp;prod_id=&amp;oid=23822068530&amp;pos=1&amp;b_id=18&amp;bid_type=8&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=39c10e6a6d36ff7a&amp;af_sid=9&amp;mpid=BED-WILL-GY-QUEE-SET&amp;keyword=bed&amp;a=476c77957cce8865c306e7437e0449e5&amp;dv=a14c0c6e477cf6880006d97c206b5c30ef72a411a9dd810e&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d10.cnnx.io/image/obj/23822068530;sq=60;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN4J-XtV2YUAj0ohuOAfx1A3oU12KecefrocKTReVMsPL9urvh-_TU1be2</Image><Image xsize="100" ysize="100">https://d10.cnnx.io/image/obj/23822068530;sq=100;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN4J-XtV2YUAj0ohuOAfx1A3oU12KecefrocKTReVMsPL9urvh-_TU1be2</Image><Image xsize="160" ysize="160">https://d10.cnnx.io/image/obj/23822068530;sq=160;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN4J-XtV2YUAj0ohuOAfx1A3oU12KecefrocKTReVMsPL9urvh-_TU1be2</Image><Image xsize="400" ysize="400">https://d10.cnnx.io/image/obj/23822068530;sq=400;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN4J-XtV2YUAj0ohuOAfx1A3oU12KecefrocKTReVMsPL9urvh-_TU1be2</Image></Images><Skus><sku>BEDWILLGYQUEESET</sku></Skus><sku>BEDWILLGYQUEESET</sku><detailUrl>https://www.bizrate.com/oid23822068530?af_sid=9&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="214900">$2,149.00</price><originalPrice integral="250000">$2,500.00</originalPrice><markdownPercent>14.04</markdownPercent><totalPrice integral="214900">$2,149.00</totalPrice><bidded>true</bidded><merchantProductId>BED-WILL-GY-QUEE-SET</merchantProductId><merchantName>modani</merchantName><merchantLogoUrl>https://s7.cnnx.io/merchant/little/321427.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><relevancy>147.889760</relevancy></Offer><Offer merchantId="321427" categoryId="8340" id="22649923535"><title>Massimo Bed Gray</title><mature>false</mature><description>Our grand Massimo Bed in stormy gray makes a bold style statement in any space, commanding attention with its imposing wraparound frame and quilted upholstery. Crafted from sturdy pine and flexible wood slats, this stunning piece ensures you'll always...</description><manufacturer>Modani Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.modani.com%2Fbedroom%2Fbeds%2Fmassimo-bed-gray%3Futm_source%3Dconnexity%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321427&amp;cat_id=8340&amp;atom=8341&amp;prod_id=&amp;oid=22649923535&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=3158a2be5dee7c1b&amp;af_sid=9&amp;mpid=BED-MASS-GY-QUEE-SET&amp;keyword=bed&amp;a=476c77957cce8865c306e7437e0449e5&amp;dv=17346c566c2fa1d74201af7a0c85b6068b2109daf29dd44c&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d10.cnnx.io/image/obj/22649923535;sq=60;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN7p-Xo4Gb0RnTfgeWK_-OcGxed96KnTRE4L6RIIvxL0dGvqVX37kP</Image><Image xsize="100" ysize="100">https://d10.cnnx.io/image/obj/22649923535;sq=100;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN7p-Xo4Gb0RnTfgeWK_-OcGxed96KnTRE4L6RIIvxL0dGvqVX37kP</Image><Image xsize="160" ysize="160">https://d10.cnnx.io/image/obj/22649923535;sq=160;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN7p-Xo4Gb0RnTfgeWK_-OcGxed96KnTRE4L6RIIvxL0dGvqVX37kP</Image><Image xsize="400" ysize="400">https://d10.cnnx.io/image/obj/22649923535;sq=400;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN7p-Xo4Gb0RnTfgeWK_-OcGxed96KnTRE4L6RIIvxL0dGvqVX37kP</Image></Images><Skus><sku>BEDMASSGYQUEESET</sku></Skus><sku>BEDMASSGYQUEESET</sku><detailUrl>https://www.bizrate.com/oid22649923535?af_sid=9&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="129900">$1,299.00</price><originalPrice integral="149000">$1,490.00</originalPrice><markdownPercent>12.82</markdownPercent><totalPrice integral="129900">$1,299.00</totalPrice><bidded>true</bidded><merchantProductId>BED-MASS-GY-QUEE-SET</merchantProductId><merchantName>modani</merchantName><merchantLogoUrl>https://s7.cnnx.io/merchant/little/321427.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><relevancy>146.294860</relevancy></Offer><Offer merchantId="321427" categoryId="8340" id="22649923530"><title>Casa Fabric Bed Gray</title><mature>false</mature><description>You don’t have to compromise style for comfort with our Casa Bed in Gray. Wrapped in a Gray Fabric, this bed showcases a top stitched, foam filled headboard for added comfort and style.*Also available in White eco-leather.</description><manufacturer>Modani Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.modani.com%2Fsale-modani-furniture%2Fcasa-fabric-bed-gray%3Futm_source%3Dconnexity%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321427&amp;cat_id=8340&amp;atom=8341&amp;prod_id=&amp;oid=22649923530&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=a018d8718408453e&amp;af_sid=9&amp;mpid=BED-CASA-GY-FAB-QUEE-SET&amp;keyword=bed&amp;a=476c77957cce8865c306e7437e0449e5&amp;dv=17346c566c2fa1d74201af7a0c85b6068b2109daf29dd44c&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d10.cnnx.io/image/obj/22649923530;sq=60;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN4J-XtV2YTgj0rgCBH_x3AnAD2ErNWApiYSeku6xISSIvncfwuzAKIVNABSETbKi-eLOmhLsg6zU1re6a8wSPO5A=</Image><Image xsize="100" ysize="100">https://d10.cnnx.io/image/obj/22649923530;sq=100;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN4J-XtV2YTgj0rgCBH_x3AnAD2ErNWApiYSeku6xISSIvncfwuzAKIVNABSETbKi-eLOmhLsg6zU1re6a8wSPO5A=</Image><Image xsize="160" ysize="160">https://d10.cnnx.io/image/obj/22649923530;sq=160;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN4J-XtV2YTgj0rgCBH_x3AnAD2ErNWApiYSeku6xISSIvncfwuzAKIVNABSETbKi-eLOmhLsg6zU1re6a8wSPO5A=</Image><Image xsize="400" ysize="400">https://d10.cnnx.io/image/obj/22649923530;sq=400;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN4J-XtV2YTgj0rgCBH_x3AnAD2ErNWApiYSeku6xISSIvncfwuzAKIVNABSETbKi-eLOmhLsg6zU1re6a8wSPO5A=</Image></Images><Skus><sku>BEDCASAGYFABQUEESET</sku></Skus><sku>BEDCASAGYFABQUEESET</sku><detailUrl>https://www.bizrate.com/oid22649923530?af_sid=9&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="79900">$799.00</price><originalPrice integral="99000">$990.00</originalPrice><markdownPercent>19.29</markdownPercent><totalPrice integral="79900">$799.00</totalPrice><bidded>true</bidded><merchantProductId>BED-CASA-GY-FAB-QUEE-SET</merchantProductId><merchantName>modani</merchantName><merchantLogoUrl>https://s7.cnnx.io/merchant/little/321427.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><relevancy>145.494420</relevancy></Offer><Offer merchantId="321427" categoryId="8340" id="22649923381"><title>Movido Bed Gray</title><mature>false</mature><description>Upgrade to a style that is elegant and refined with the Movido Bed in Gray. Offering straight clean lines, gray leatherette upholstery, and polished chrome legs, this piece exudes class while providing comfort. The dual adjustable headboard allows for...</description><manufacturer>Modani Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.modani.com%2Fbedroom%2Fmovido-bed-gray%3Futm_source%3Dconnexity%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321427&amp;cat_id=8340&amp;atom=8341&amp;prod_id=&amp;oid=22649923381&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=e07fd37aeb3c69c2&amp;af_sid=9&amp;mpid=BED-MOVI-GY-QUEE&amp;keyword=bed&amp;a=476c77957cce8865c306e7437e0449e5&amp;dv=17346c566c2fa1d74201af7a0c85b6068b2109daf29dd44c&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d6.cnnx.io/image/obj/22649923381;sq=60;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN7p-ZqiQF2-Sy-ERJZ1ltjkEfEuLbBoY=</Image><Image xsize="100" ysize="100">https://d6.cnnx.io/image/obj/22649923381;sq=100;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN7p-ZqiQF2-Sy-ERJZ1ltjkEfEuLbBoY=</Image><Image xsize="160" ysize="160">https://d6.cnnx.io/image/obj/22649923381;sq=160;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN7p-ZqiQF2-Sy-ERJZ1ltjkEfEuLbBoY=</Image><Image xsize="400" ysize="400">https://d6.cnnx.io/image/obj/22649923381;sq=400;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN7p-ZqiQF2-Sy-ERJZ1ltjkEfEuLbBoY=</Image></Images><Skus><sku>BEDMOVIGYQUEE</sku></Skus><sku>BEDMOVIGYQUEE</sku><detailUrl>https://www.bizrate.com/oid22649923381?af_sid=9&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="185000">$1,850.00</price><originalPrice integral="185000">$1,850.00</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="185000">$1,850.00</totalPrice><bidded>true</bidded><merchantProductId>BED-MOVI-GY-QUEE</merchantProductId><merchantName>modani</merchantName><merchantLogoUrl>https://s7.cnnx.io/merchant/little/321427.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><relevancy>144.201480</relevancy></Offer><Offer merchantId="321427" categoryId="8340" id="22649923507"><title>Envy Bed</title><mature>false</mature><description>Sleep in refined luxury with the Envy Bed. Crafted out of solid Acacia wood with a contrasting natural and black matte lacquered finish, this bed blends modern style with timeless details. The low lying platform design provides a harmonious balance...</description><manufacturer>Modani Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.modani.com%2Fsale-modani-furniture%2Fenvy-bed%3Futm_source%3Dconnexity%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321427&amp;cat_id=8340&amp;atom=8341&amp;prod_id=&amp;oid=22649923507&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=dd4f5ada6173f844&amp;af_sid=9&amp;mpid=BED-ENVY-QUEE-SET&amp;keyword=bed&amp;a=476c77957cce8865c306e7437e0449e5&amp;dv=17346c566c2fa1d74201af7a0c85b6068b2109daf29dd44c&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d7.cnnx.io/image/obj/22649923507;sq=60;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN5p-Y64f89EqxzCviF0bw3Q9qd1r5QquW_3Un87uBXU9hCYXzaBGpzuamI64_uJDelUeqHKlCkP_dRpws6wrTj5QywA==</Image><Image xsize="100" ysize="100">https://d7.cnnx.io/image/obj/22649923507;sq=100;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN5p-Y64f89EqxzCviF0bw3Q9qd1r5QquW_3Un87uBXU9hCYXzaBGpzuamI64_uJDelUeqHKlCkP_dRpws6wrTj5QywA==</Image><Image xsize="160" ysize="160">https://d7.cnnx.io/image/obj/22649923507;sq=160;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN5p-Y64f89EqxzCviF0bw3Q9qd1r5QquW_3Un87uBXU9hCYXzaBGpzuamI64_uJDelUeqHKlCkP_dRpws6wrTj5QywA==</Image><Image xsize="400" ysize="400">https://d7.cnnx.io/image/obj/22649923507;sq=400;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN5p-Y64f89EqxzCviF0bw3Q9qd1r5QquW_3Un87uBXU9hCYXzaBGpzuamI64_uJDelUeqHKlCkP_dRpws6wrTj5QywA==</Image></Images><Skus><sku>BEDENVYQUEESET</sku></Skus><sku>BEDENVYQUEESET</sku><detailUrl>https://www.bizrate.com/oid22649923507?af_sid=9&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="189900">$1,899.00</price><originalPrice integral="279000">$2,790.00</originalPrice><markdownPercent>31.94</markdownPercent><totalPrice integral="189900">$1,899.00</totalPrice><bidded>true</bidded><merchantProductId>BED-ENVY-QUEE-SET</merchantProductId><merchantName>modani</merchantName><merchantLogoUrl>https://s7.cnnx.io/merchant/little/321427.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><relevancy>144.201480</relevancy></Offer><Offer merchantId="321427" categoryId="8340" id="23658757630"><title>Oliver Bed White</title><mature>false</mature><description>You don’t have to compromise style for comfort with our Oliver Bed in White. Wrapped in white eco-leather, this bed showcases a top stitched, foam filled headboard for added comfort and style.</description><manufacturer>Modani Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.modani.com%2Fbedroom%2Fbeds%2Foliver-bed-white%3Futm_source%3Dconnexity%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321427&amp;cat_id=8340&amp;atom=8341&amp;prod_id=&amp;oid=23658757630&amp;pos=1&amp;b_id=18&amp;bid_type=8&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=8b6a59e587ff8547&amp;af_sid=9&amp;mpid=BED-OLIV-WH-QUEE-SET&amp;keyword=bed&amp;a=476c77957cce8865c306e7437e0449e5&amp;dv=a14c0c6e477cf6880006d97c206b5c30ef72a411a9dd810e&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d10.cnnx.io/image/obj/23658757630;sq=60;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN4J-XtV2YTgiGpwyLVc1pWmYS2V9dcs2Lo21C0Y79sJ3YYUaWDG2eDg==</Image><Image xsize="100" ysize="100">https://d10.cnnx.io/image/obj/23658757630;sq=100;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN4J-XtV2YTgiGpwyLVc1pWmYS2V9dcs2Lo21C0Y79sJ3YYUaWDG2eDg==</Image><Image xsize="160" ysize="160">https://d10.cnnx.io/image/obj/23658757630;sq=160;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN4J-XtV2YTgiGpwyLVc1pWmYS2V9dcs2Lo21C0Y79sJ3YYUaWDG2eDg==</Image><Image xsize="400" ysize="400">https://d10.cnnx.io/image/obj/23658757630;sq=400;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN4J-XtV2YTgiGpwyLVc1pWmYS2V9dcs2Lo21C0Y79sJ3YYUaWDG2eDg==</Image></Images><Skus><sku>BEDOLIVWHQUEESET</sku></Skus><sku>BEDOLIVWHQUEESET</sku><detailUrl>https://www.bizrate.com/oid23658757630?af_sid=9&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="99000">$990.00</price><originalPrice integral="99000">$990.00</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="99000">$990.00</totalPrice><bidded>true</bidded><merchantProductId>BED-OLIV-WH-QUEE-SET</merchantProductId><merchantName>modani</merchantName><merchantLogoUrl>https://s7.cnnx.io/merchant/little/321427.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><relevancy>142.972530</relevancy></Offer><Offer merchantId="321427" categoryId="8340" id="22649923506"><title>Giorgio Bed White</title><mature>false</mature><description>Admire the comfort and style of our Giorgio Bed in White. Embellished with sleek metal trim and fully upholstered, this bed is tailored to modern design.Design Tip: Pair with one of Modani's signature mattresses for a complete bedroom set.</description><manufacturer>Modani Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.modani.com%2Fbedroom%2Fbeds%2Fbed-gior-wh-quee-v2-set%3Futm_source%3Dconnexity%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321427&amp;cat_id=8340&amp;atom=8341&amp;prod_id=&amp;oid=22649923506&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=43caf09a1fd438a4&amp;af_sid=9&amp;mpid=BED-GIOR-WH-QUEE-V2-SET&amp;keyword=bed&amp;a=476c77957cce8865c306e7437e0449e5&amp;dv=17346c566c2fa1d74201af7a0c85b6068b2109daf29dd44c&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d6.cnnx.io/image/obj/22649923506;sq=60;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN5J-f8vQ56MClPVg-I019YCdvWwzlH_I=</Image><Image xsize="100" ysize="100">https://d6.cnnx.io/image/obj/22649923506;sq=100;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN5J-f8vQ56MClPVg-I019YCdvWwzlH_I=</Image><Image xsize="160" ysize="160">https://d6.cnnx.io/image/obj/22649923506;sq=160;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN5J-f8vQ56MClPVg-I019YCdvWwzlH_I=</Image><Image xsize="400" ysize="400">https://d6.cnnx.io/image/obj/22649923506;sq=400;p=0;t=ooPwmM0WTWKOFhYQSlc4ez3GY2lI2X9_UJ-6JrG-16zRfCOBP5daBbV6e6CN5J-f8vQ56MClPVg-I019YCdvWwzlH_I=</Image></Images><Skus><sku>BEDGIORWHQUEEV2SET</sku></Skus><sku>BEDGIORWHQUEEV2SET</sku><detailUrl>https://www.bizrate.com/oid22649923506?af_sid=9&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="159900">$1,599.00</price><originalPrice integral="179000">$1,790.00</originalPrice><markdownPercent>10.67</markdownPercent><totalPrice integral="159900">$1,599.00</totalPrice><bidded>true</bidded><merchantProductId>BED-GIOR-WH-QUEE-V2-SET</merchantProductId><merchantName>modani</merchantName><merchantLogoUrl>https://s7.cnnx.io/merchant/little/321427.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><relevancy>142.154920</relevancy></Offer></Offers></ProductResponse>
bizrate/bench_726189.xml ADDED
The diff for this file is too large to render. See raw diff
 
bizrate/cologne_726189.xml ADDED
The diff for this file is too large to render. See raw diff
 
bizrate/gummy_726189.xml ADDED
@@ -0,0 +1 @@
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?><ProductResponse xmlns="http://www.shopzilla.com/services/catalog"><Classification><searchUrl>https://www.bizrate.com/gummy?rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</searchUrl></Classification><Offers includedResults="27" totalResults="27"><PriceSet><minPrice integral="2999">$29.99</minPrice><maxPrice integral="9999">$99.99</maxPrice></PriceSet><Offer merchantId="321920" categoryId="150" id="22712859173"><title>Full Spectrum CBD + THC Gummies</title><mature>false</mature><description>Our CBD Gummies are the best tasting way to take your Five daily dose. Try our CBD + Melatonin gummies if you need a little extra help sleeping.</description><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Fcbd-gummies%3Fvariant%3D39671924555866%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859173&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=cfbf9532e1e82faa&amp;cobrand=1&amp;ppr=03ca6ed47cd5f287&amp;af_sid=59&amp;mpid=39671924555866&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=2fc41cebcb335deed7af8a70d349dc991ab15c252bd5abd7&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d8.cnnx.io/image/obj/22712859173;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-d3QMjeA0Qcm3qBmunMVVRJQcBkBKMgdG_P7PU_-rUzRSF0w==</Image><Image xsize="100" ysize="100">https://d8.cnnx.io/image/obj/22712859173;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-d3QMjeA0Qcm3qBmunMVVRJQcBkBKMgdG_P7PU_-rUzRSF0w==</Image><Image xsize="160" ysize="160">https://d8.cnnx.io/image/obj/22712859173;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-d3QMjeA0Qcm3qBmunMVVRJQcBkBKMgdG_P7PU_-rUzRSF0w==</Image><Image xsize="400" ysize="400">https://d8.cnnx.io/image/obj/22712859173;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-d3QMjeA0Qcm3qBmunMVVRJQcBkBKMgdG_P7PU_-rUzRSF0w==</Image></Images><Skus><sku>6524087561500170</sku></Skus><sku>6524087561500170</sku><upc>850022141584</upc><gtin>850022141584</gtin><ean13>0850022141584</ean13><detailUrl>https://www.bizrate.com/oid22712859173?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="7599">$75.99</price><originalPrice integral="7599">$75.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="7599">$75.99</totalPrice><bidded>true</bidded><merchantProductId>39671924555866</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>225.280030</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859176"><title>Full Spectrum CBD + THC Gummies</title><mature>false</mature><description>Our CBD Gummies are the best tasting way to take your Five daily dose. Try our CBD + Melatonin gummies if you need a little extra help sleeping.</description><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Fcbd-gummies%3Fvariant%3D39982426357850%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859176&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=cfbf9532e1e82faa&amp;cobrand=1&amp;ppr=03ca6ed47cd5f287&amp;af_sid=59&amp;mpid=39982426357850&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=2fc41cebcb335deed7af8a70d349dc991ab15c252bd5abd7&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d6.cnnx.io/image/obj/22712859176;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-F-6DDC_ae3IuwS_Ib5rphWQ36qjYJdlkkiCvD16JCM8wcN3v3SUP31oP_oAbtjPwnWrcfoqOFxk-U03Bo6OAedPBqskuwhLzCOOE9Hw==</Image><Image xsize="100" ysize="100">https://d6.cnnx.io/image/obj/22712859176;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-F-6DDC_ae3IuwS_Ib5rphWQ36qjYJdlkkiCvD16JCM8wcN3v3SUP31oP_oAbtjPwnWrcfoqOFxk-U03Bo6OAedPBqskuwhLzCOOE9Hw==</Image><Image xsize="160" ysize="160">https://d6.cnnx.io/image/obj/22712859176;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-F-6DDC_ae3IuwS_Ib5rphWQ36qjYJdlkkiCvD16JCM8wcN3v3SUP31oP_oAbtjPwnWrcfoqOFxk-U03Bo6OAedPBqskuwhLzCOOE9Hw==</Image><Image xsize="400" ysize="400">https://d6.cnnx.io/image/obj/22712859176;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-F-6DDC_ae3IuwS_Ib5rphWQ36qjYJdlkkiCvD16JCM8wcN3v3SUP31oP_oAbtjPwnWrcfoqOFxk-U03Bo6OAedPBqskuwhLzCOOE9Hw==</Image></Images><Skus><sku>6524087570025830</sku></Skus><sku>6524087570025830</sku><detailUrl>https://www.bizrate.com/oid22712859176?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="7599">$75.99</price><originalPrice integral="7599">$75.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="7599">$75.99</totalPrice><bidded>true</bidded><merchantProductId>39982426357850</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>225.280030</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859171"><title>Full Spectrum CBD + THC Gummies</title><mature>false</mature><description>Our CBD Gummies are the best tasting way to take your Five daily dose. Try our CBD + Melatonin gummies if you need a little extra help sleeping.</description><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Fcbd-gummies%3Fvariant%3D39671891558490%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859171&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=cfbf9532e1e82faa&amp;cobrand=1&amp;ppr=25ca26056d640834&amp;af_sid=59&amp;mpid=39671891558490&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=2fc41cebcb335deed7af8a70d349dc991ab15c252bd5abd7&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d6.cnnx.io/image/obj/22712859171;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-d3QMjeA0QcmnqBmunMVVRJQf_WZjTbDQbmxxFj8u6v7-XtA==</Image><Image xsize="100" ysize="100">https://d6.cnnx.io/image/obj/22712859171;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-d3QMjeA0QcmnqBmunMVVRJQf_WZjTbDQbmxxFj8u6v7-XtA==</Image><Image xsize="160" ysize="160">https://d6.cnnx.io/image/obj/22712859171;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-d3QMjeA0QcmnqBmunMVVRJQf_WZjTbDQbmxxFj8u6v7-XtA==</Image><Image xsize="400" ysize="400">https://d6.cnnx.io/image/obj/22712859171;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-d3QMjeA0QcmnqBmunMVVRJQf_WZjTbDQbmxxFj8u6v7-XtA==</Image></Images><Skus><sku>6524087560500150</sku></Skus><sku>6524087560500150</sku><upc>850022141515</upc><gtin>850022141515</gtin><ean13>0850022141515</ean13><detailUrl>https://www.bizrate.com/oid22712859171?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="3999">$39.99</price><originalPrice integral="3999">$39.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="3999">$39.99</totalPrice><bidded>true</bidded><merchantProductId>39671891558490</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>224.377060</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859203"><title>Rosin Gummies</title><mature>false</mature><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Frosin-gummies%3Fvariant%3D39703089840218%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859203&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=cfbf9532e1e82faa&amp;cobrand=1&amp;ppr=6d786ab3d6a96df0&amp;af_sid=59&amp;mpid=39703089840218&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=a14c0c6e477cf688545aa3b749d9961302ed84cce3f8ff75&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d8.cnnx.io/image/obj/22712859203;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEME7DdBGF7GO5sfbM65BpaNY2UCX_8AQjZNQyyt8RN9-v3y3A</Image><Image xsize="100" ysize="100">https://d8.cnnx.io/image/obj/22712859203;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEME7DdBGF7GO5sfbM65BpaNY2UCX_8AQjZNQyyt8RN9-v3y3A</Image><Image xsize="160" ysize="160">https://d8.cnnx.io/image/obj/22712859203;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEME7DdBGF7GO5sfbM65BpaNY2UCX_8AQjZNQyyt8RN9-v3y3A</Image><Image xsize="400" ysize="400">https://d8.cnnx.io/image/obj/22712859203;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEME7DdBGF7GO5sfbM65BpaNY2UCX_8AQjZNQyyt8RN9-v3y3A</Image></Images><Skus><sku>6524088510300000</sku></Skus><sku>6524088510300000</sku><detailUrl>https://www.bizrate.com/oid22712859203?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="7799">$77.99</price><originalPrice integral="7799">$77.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="7799">$77.99</totalPrice><bidded>true</bidded><merchantProductId>39703089840218</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>224.349270</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859189"><title>Full Spectrum CBD + THC Gummies (20 ct)</title><mature>false</mature><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Ffull-spectrum-cbd-thc-gummies-20-ct-landers%3Fvariant%3D39962733084762%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859189&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=17f646d3edc5f025&amp;cobrand=1&amp;ppr=25ca26056d640834&amp;af_sid=59&amp;mpid=39962733084762&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=2fc41cebcb335deed7af8a70d349dc991ab15c252bd5abd7&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d9.cnnx.io/image/obj/22712859189;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjDdBGF6lHcSe1qysoOfO2pfp5Bv0fhWfxnWPdyF7L8sZcOFfNCEcmTUpbeCEPCEayq-N_VFf_lIZshE0QBAaQTVpOoQWNzhG0F</Image><Image xsize="100" ysize="100">https://d9.cnnx.io/image/obj/22712859189;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjDdBGF6lHcSe1qysoOfO2pfp5Bv0fhWfxnWPdyF7L8sZcOFfNCEcmTUpbeCEPCEayq-N_VFf_lIZshE0QBAaQTVpOoQWNzhG0F</Image><Image xsize="160" ysize="160">https://d9.cnnx.io/image/obj/22712859189;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjDdBGF6lHcSe1qysoOfO2pfp5Bv0fhWfxnWPdyF7L8sZcOFfNCEcmTUpbeCEPCEayq-N_VFf_lIZshE0QBAaQTVpOoQWNzhG0F</Image><Image xsize="400" ysize="400">https://d9.cnnx.io/image/obj/22712859189;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjDdBGF6lHcSe1qysoOfO2pfp5Bv0fhWfxnWPdyF7L8sZcOFfNCEcmTUpbeCEPCEayq-N_VFf_lIZshE0QBAaQTVpOoQWNzhG0F</Image></Images><Skus><sku>6524087560500150</sku></Skus><sku>6524087560500150</sku><upc>850022141515</upc><gtin>850022141515</gtin><ean13>0850022141515</ean13><detailUrl>https://www.bizrate.com/oid22712859189?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="3999">$39.99</price><originalPrice integral="3999">$39.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="3999">$39.99</totalPrice><bidded>true</bidded><merchantProductId>39962733084762</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>203.078450</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859202"><title>Rosin Gummies</title><mature>false</mature><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Frosin-gummies%3Fvariant%3D39703089807450%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859202&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=be85fa8f6ad737f6&amp;cobrand=1&amp;ppr=25ca26056d640834&amp;af_sid=59&amp;mpid=39703089807450&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=2fc41cebcb335deed7af8a70d349dc991ab15c252bd5abd7&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d7.cnnx.io/image/obj/22712859202;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjDdBGF7NuV5V6vmwHD8QvHhylw_FgE3NKZiM5ueAFTzhfW</Image><Image xsize="100" ysize="100">https://d7.cnnx.io/image/obj/22712859202;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjDdBGF7NuV5V6vmwHD8QvHhylw_FgE3NKZiM5ueAFTzhfW</Image><Image xsize="160" ysize="160">https://d7.cnnx.io/image/obj/22712859202;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjDdBGF7NuV5V6vmwHD8QvHhylw_FgE3NKZiM5ueAFTzhfW</Image><Image xsize="400" ysize="400">https://d7.cnnx.io/image/obj/22712859202;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjDdBGF7NuV5V6vmwHD8QvHhylw_FgE3NKZiM5ueAFTzhfW</Image></Images><Skus><sku>6524088520300000</sku></Skus><sku>6524088520300000</sku><upc>850022141737</upc><gtin>850022141737</gtin><ean13>0850022141737</ean13><detailUrl>https://www.bizrate.com/oid22712859202?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="3999">$39.99</price><originalPrice integral="3999">$39.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="3999">$39.99</totalPrice><bidded>true</bidded><merchantProductId>39703089807450</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>179.370800</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859190"><title>Full Spectrum CBD + THC Gummies (20 ct)</title><mature>false</mature><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Ffull-spectrum-cbd-thc-gummies-20-ct-landers%3Fvariant%3D39990854910042%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859190&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=be85fa8f6ad737f6&amp;cobrand=1&amp;ppr=25ca26056d640834&amp;af_sid=59&amp;mpid=39990854910042&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=2fc41cebcb335deed7af8a70d349dc991ab15c252bd5abd7&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d10.cnnx.io/image/obj/22712859190;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjDdBGF7NuF_U6dvCvr5Cf9hnJyzXirP2jcBbUvXeNDil1BtoSmm048mFpJmXOO0twrF2oXHGfBiLUgA2modxmKNhX5JBEwR3Ogid9WEuBkm5V-</Image><Image xsize="100" ysize="100">https://d10.cnnx.io/image/obj/22712859190;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjDdBGF7NuF_U6dvCvr5Cf9hnJyzXirP2jcBbUvXeNDil1BtoSmm048mFpJmXOO0twrF2oXHGfBiLUgA2modxmKNhX5JBEwR3Ogid9WEuBkm5V-</Image><Image xsize="160" ysize="160">https://d10.cnnx.io/image/obj/22712859190;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjDdBGF7NuF_U6dvCvr5Cf9hnJyzXirP2jcBbUvXeNDil1BtoSmm048mFpJmXOO0twrF2oXHGfBiLUgA2modxmKNhX5JBEwR3Ogid9WEuBkm5V-</Image><Image xsize="400" ysize="400">https://d10.cnnx.io/image/obj/22712859190;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjDdBGF7NuF_U6dvCvr5Cf9hnJyzXirP2jcBbUvXeNDil1BtoSmm048mFpJmXOO0twrF2oXHGfBiLUgA2modxmKNhX5JBEwR3Ogid9WEuBkm5V-</Image></Images><Skus><sku>6524087570025818</sku></Skus><sku>6524087570025818</sku><upc>850022141782</upc><gtin>850022141782</gtin><ean13>0850022141782</ean13><detailUrl>https://www.bizrate.com/oid22712859190?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="3999">$39.99</price><originalPrice integral="3999">$39.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="3999">$39.99</totalPrice><bidded>true</bidded><merchantProductId>39990854910042</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>178.491290</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859205"><title>Rosin Gummies</title><mature>false</mature><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Frosin-gummies%3Fvariant%3D39703089905754%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859205&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=be85fa8f6ad737f6&amp;cobrand=1&amp;ppr=25ca26056d640834&amp;af_sid=59&amp;mpid=39703089905754&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=2fc41cebcb335deed7af8a70d349dc991ab15c252bd5abd7&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d10.cnnx.io/image/obj/22712859205;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjDdBGF5sSRIL9cDM9dBC9rZFUhvMfDEerEW0h5CPYVWEkEoI4=</Image><Image xsize="100" ysize="100">https://d10.cnnx.io/image/obj/22712859205;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjDdBGF5sSRIL9cDM9dBC9rZFUhvMfDEerEW0h5CPYVWEkEoI4=</Image><Image xsize="160" ysize="160">https://d10.cnnx.io/image/obj/22712859205;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjDdBGF5sSRIL9cDM9dBC9rZFUhvMfDEerEW0h5CPYVWEkEoI4=</Image><Image xsize="400" ysize="400">https://d10.cnnx.io/image/obj/22712859205;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjDdBGF5sSRIL9cDM9dBC9rZFUhvMfDEerEW0h5CPYVWEkEoI4=</Image></Images><Skus><sku>6524088510600000</sku></Skus><sku>6524088510600000</sku><upc>850022141751</upc><gtin>850022141751</gtin><ean13>0850022141751</ean13><detailUrl>https://www.bizrate.com/oid22712859205?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="3999">$39.99</price><originalPrice integral="3999">$39.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="3999">$39.99</totalPrice><bidded>true</bidded><merchantProductId>39703089905754</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>178.491290</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859187"><title>Full Spectrum CBD + THC Gummies (20 ct)</title><mature>false</mature><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Ffull-spectrum-cbd-thc-gummies-20-ct-landers%3Fvariant%3D39962733019226%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859187&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=42cebdc0db812186&amp;cobrand=1&amp;ppr=c3df62017714bfd0&amp;af_sid=59&amp;mpid=39962733019226&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=a14c0c6e477cf688545aa3b749d9961302ed84cce3f8ff75&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d7.cnnx.io/image/obj/22712859187;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMAmfcgCqmmBQeIQ1bisp-sMI3yVGdzIp8WhgZbCfIeW68tIfuV7FfONYJrb8XqZ60kOHa_C4dASorhzzZEypFh3qxIW59XzNmTka</Image><Image xsize="100" ysize="100">https://d7.cnnx.io/image/obj/22712859187;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMAmfcgCqmmBQeIQ1bisp-sMI3yVGdzIp8WhgZbCfIeW68tIfuV7FfONYJrb8XqZ60kOHa_C4dASorhzzZEypFh3qxIW59XzNmTka</Image><Image xsize="160" ysize="160">https://d7.cnnx.io/image/obj/22712859187;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMAmfcgCqmmBQeIQ1bisp-sMI3yVGdzIp8WhgZbCfIeW68tIfuV7FfONYJrb8XqZ60kOHa_C4dASorhzzZEypFh3qxIW59XzNmTka</Image><Image xsize="400" ysize="400">https://d7.cnnx.io/image/obj/22712859187;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMAmfcgCqmmBQeIQ1bisp-sMI3yVGdzIp8WhgZbCfIeW68tIfuV7FfONYJrb8XqZ60kOHa_C4dASorhzzZEypFh3qxIW59XzNmTka</Image></Images><Skus><sku>6524087160025150</sku></Skus><sku>6524087160025150</sku><upc>850022141348</upc><gtin>850022141348</gtin><ean13>0850022141348</ean13><detailUrl>https://www.bizrate.com/oid22712859187?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="2999">$29.99</price><originalPrice integral="2999">$29.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="2999">$29.99</totalPrice><bidded>true</bidded><merchantProductId>39962733019226</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>157.696010</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859206"><title>Rosin Gummies</title><mature>false</mature><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Frosin-gummies%3Fvariant%3D39703089938522%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859206&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=42cebdc0db812186&amp;cobrand=1&amp;ppr=6d786ab3d6a96df0&amp;af_sid=59&amp;mpid=39703089938522&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=2fc41cebcb335deed7af8a70d349dc991ab15c252bd5abd7&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d6.cnnx.io/image/obj/22712859206;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEME7DdBGF5rNQ6y0moiZOZWNz3TfixOVjnvdj2JFfMEJdAL8lvBA=</Image><Image xsize="100" ysize="100">https://d6.cnnx.io/image/obj/22712859206;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEME7DdBGF5rNQ6y0moiZOZWNz3TfixOVjnvdj2JFfMEJdAL8lvBA=</Image><Image xsize="160" ysize="160">https://d6.cnnx.io/image/obj/22712859206;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEME7DdBGF5rNQ6y0moiZOZWNz3TfixOVjnvdj2JFfMEJdAL8lvBA=</Image><Image xsize="400" ysize="400">https://d6.cnnx.io/image/obj/22712859206;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEME7DdBGF5rNQ6y0moiZOZWNz3TfixOVjnvdj2JFfMEJdAL8lvBA=</Image></Images><Skus><sku>6524088520900000</sku></Skus><sku>6524088520900000</sku><detailUrl>https://www.bizrate.com/oid22712859206?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="7799">$77.99</price><originalPrice integral="7799">$77.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="7799">$77.99</totalPrice><bidded>true</bidded><merchantProductId>39703089938522</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>157.696010</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859174"><title>Full Spectrum CBD + THC Gummies</title><mature>false</mature><description>Our CBD Gummies are the best tasting way to take your Five daily dose. Try our CBD + Melatonin gummies if you need a little extra help sleeping.</description><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Fcbd-gummies%3Fvariant%3D39982049755226%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859174&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=42cebdc0db812186&amp;cobrand=1&amp;ppr=25ca26056d640834&amp;af_sid=59&amp;mpid=39982049755226&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=2fc41cebcb335deed7af8a70d349dc991ab15c252bd5abd7&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d9.cnnx.io/image/obj/22712859174;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-F-6DDC_ae3IuwS_Ib4rphWQ1bTHb_RoEF-dQOeKsPRcjYB46hORTreQZjOM-rWLwajOel0AWt_xk0fQf8uEMFUAJs1aEkKryDKi1KVQ==</Image><Image xsize="100" ysize="100">https://d9.cnnx.io/image/obj/22712859174;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-F-6DDC_ae3IuwS_Ib4rphWQ1bTHb_RoEF-dQOeKsPRcjYB46hORTreQZjOM-rWLwajOel0AWt_xk0fQf8uEMFUAJs1aEkKryDKi1KVQ==</Image><Image xsize="160" ysize="160">https://d9.cnnx.io/image/obj/22712859174;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-F-6DDC_ae3IuwS_Ib4rphWQ1bTHb_RoEF-dQOeKsPRcjYB46hORTreQZjOM-rWLwajOel0AWt_xk0fQf8uEMFUAJs1aEkKryDKi1KVQ==</Image><Image xsize="400" ysize="400">https://d9.cnnx.io/image/obj/22712859174;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-F-6DDC_ae3IuwS_Ib4rphWQ1bTHb_RoEF-dQOeKsPRcjYB46hORTreQZjOM-rWLwajOel0AWt_xk0fQf8uEMFUAJs1aEkKryDKi1KVQ==</Image></Images><Skus><sku>6524087570025818</sku></Skus><sku>6524087570025818</sku><upc>850022141782</upc><gtin>850022141782</gtin><ean13>0850022141782</ean13><detailUrl>https://www.bizrate.com/oid22712859174?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="3999">$39.99</price><originalPrice integral="3999">$39.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="3999">$39.99</totalPrice><bidded>true</bidded><merchantProductId>39982049755226</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>157.044500</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859175"><title>Full Spectrum CBD + THC Gummies</title><mature>false</mature><description>Our CBD Gummies are the best tasting way to take your Five daily dose. Try our CBD + Melatonin gummies if you need a little extra help sleeping.</description><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Fcbd-gummies%3Fvariant%3D39982408138842%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859175&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=259faddac1edd1e0&amp;af_sid=59&amp;mpid=39982408138842&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=a14c0c6e477cf688545aa3b749d9961302ed84cce3f8ff75&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d10.cnnx.io/image/obj/22712859175;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-F-6DDC_ae3IuwS_Ib5LphWQ21VhDGPkLQdjfi85lbWqiyiY3mdEprTA4hxIFaf_PNNytpzbTqpxluB3FM4-VJF-1hHk77z0RHg4WTAg==</Image><Image xsize="100" ysize="100">https://d10.cnnx.io/image/obj/22712859175;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-F-6DDC_ae3IuwS_Ib5LphWQ21VhDGPkLQdjfi85lbWqiyiY3mdEprTA4hxIFaf_PNNytpzbTqpxluB3FM4-VJF-1hHk77z0RHg4WTAg==</Image><Image xsize="160" ysize="160">https://d10.cnnx.io/image/obj/22712859175;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-F-6DDC_ae3IuwS_Ib5LphWQ21VhDGPkLQdjfi85lbWqiyiY3mdEprTA4hxIFaf_PNNytpzbTqpxluB3FM4-VJF-1hHk77z0RHg4WTAg==</Image><Image xsize="400" ysize="400">https://d10.cnnx.io/image/obj/22712859175;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-F-6DDC_ae3IuwS_Ib5LphWQ21VhDGPkLQdjfi85lbWqiyiY3mdEprTA4hxIFaf_PNNytpzbTqpxluB3FM4-VJF-1hHk77z0RHg4WTAg==</Image></Images><Skus><sku>6524087570025830</sku></Skus><sku>6524087570025830</sku><detailUrl>https://www.bizrate.com/oid22712859175?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="5999">$59.99</price><originalPrice integral="5999">$59.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="5999">$59.99</totalPrice><bidded>true</bidded><merchantProductId>39982408138842</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>113.421230</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859182"><title>Full Spectrum CBD + THC Gummies</title><mature>false</mature><description>Our CBD Gummies are the best tasting way to take your Five daily dose. Try our CBD + Melatonin gummies if you need a little extra help sleeping.</description><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Fcbd-gummies%3Fvariant%3D39498467704922%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859182&amp;pos=1&amp;b_id=18&amp;bid_type=8&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=a919320c893726cb&amp;af_sid=59&amp;mpid=39498467704922&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=19554517b98ce7a2ec5f809e0dc8d6ee70463e24d8c205c1&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d7.cnnx.io/image/obj/22712859182;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmfcgCq79CWTvfiIe-HyIEtFsx0XhVKHsH4Ca9NcSODYXH9AASNRB0=</Image><Image xsize="100" ysize="100">https://d7.cnnx.io/image/obj/22712859182;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmfcgCq79CWTvfiIe-HyIEtFsx0XhVKHsH4Ca9NcSODYXH9AASNRB0=</Image><Image xsize="160" ysize="160">https://d7.cnnx.io/image/obj/22712859182;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmfcgCq79CWTvfiIe-HyIEtFsx0XhVKHsH4Ca9NcSODYXH9AASNRB0=</Image><Image xsize="400" ysize="400">https://d7.cnnx.io/image/obj/22712859182;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmfcgCq79CWTvfiIe-HyIEtFsx0XhVKHsH4Ca9NcSODYXH9AASNRB0=</Image></Images><Skus><sku>6524087160025170</sku></Skus><sku>6524087160025170</sku><detailUrl>https://www.bizrate.com/oid22712859182?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="6999">$69.99</price><originalPrice integral="6999">$69.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="6999">$69.99</totalPrice><bidded>true</bidded><merchantProductId>39498467704922</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>113.421230</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859185"><title>Full Spectrum CBD + THC Gummies</title><mature>false</mature><description>Our CBD Gummies are the best tasting way to take your Five daily dose. Try our CBD + Melatonin gummies if you need a little extra help sleeping.</description><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Fcbd-gummies%3Fvariant%3D39498505093210%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859185&amp;pos=1&amp;b_id=18&amp;bid_type=8&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=a919320c893726cb&amp;af_sid=59&amp;mpid=39498505093210&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=19554517b98ce7a2ec5f809e0dc8d6ee70463e24d8c205c1&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d10.cnnx.io/image/obj/22712859185;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmcYhed3ZV2gk5TzARXLX2EtYDclrfoyMnqz9FaXumvUmaTjg6Cyw==</Image><Image xsize="100" ysize="100">https://d10.cnnx.io/image/obj/22712859185;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmcYhed3ZV2gk5TzARXLX2EtYDclrfoyMnqz9FaXumvUmaTjg6Cyw==</Image><Image xsize="160" ysize="160">https://d10.cnnx.io/image/obj/22712859185;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmcYhed3ZV2gk5TzARXLX2EtYDclrfoyMnqz9FaXumvUmaTjg6Cyw==</Image><Image xsize="400" ysize="400">https://d10.cnnx.io/image/obj/22712859185;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmcYhed3ZV2gk5TzARXLX2EtYDclrfoyMnqz9FaXumvUmaTjg6Cyw==</Image></Images><Skus><sku>6524087190025170</sku></Skus><sku>6524087190025170</sku><detailUrl>https://www.bizrate.com/oid22712859185?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="6999">$69.99</price><originalPrice integral="6999">$69.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="6999">$69.99</totalPrice><bidded>true</bidded><merchantProductId>39498505093210</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>112.640015</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859188"><title>Full Spectrum CBD + THC Gummies (20 ct)</title><mature>false</mature><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Ffull-spectrum-cbd-thc-gummies-20-ct-landers%3Fvariant%3D39962733051994%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859188&amp;pos=1&amp;b_id=18&amp;bid_type=8&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=c3df62017714bfd0&amp;af_sid=59&amp;mpid=39962733051994&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=19554517b98ce7a2ec5f809e0dc8d6ee70463e24d8c205c1&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d8.cnnx.io/image/obj/22712859188;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMAmcYhfomC5kBEJLCTT2V_-PlDvbrHhp_oKHv53x5yGiSNi8-_qesFpaO7cgfARksizWSZeHIJmDChOf2P_jo5KdEWM0ibiejfw=</Image><Image xsize="100" ysize="100">https://d8.cnnx.io/image/obj/22712859188;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMAmcYhfomC5kBEJLCTT2V_-PlDvbrHhp_oKHv53x5yGiSNi8-_qesFpaO7cgfARksizWSZeHIJmDChOf2P_jo5KdEWM0ibiejfw=</Image><Image xsize="160" ysize="160">https://d8.cnnx.io/image/obj/22712859188;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMAmcYhfomC5kBEJLCTT2V_-PlDvbrHhp_oKHv53x5yGiSNi8-_qesFpaO7cgfARksizWSZeHIJmDChOf2P_jo5KdEWM0ibiejfw=</Image><Image xsize="400" ysize="400">https://d8.cnnx.io/image/obj/22712859188;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMAmcYhfomC5kBEJLCTT2V_-PlDvbrHhp_oKHv53x5yGiSNi8-_qesFpaO7cgfARksizWSZeHIJmDChOf2P_jo5KdEWM0ibiejfw=</Image></Images><Skus><sku>6524087190025150</sku></Skus><sku>6524087190025150</sku><upc>850022141355</upc><gtin>850022141355</gtin><ean13>0850022141355</ean13><detailUrl>https://www.bizrate.com/oid22712859188?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="2999">$29.99</price><originalPrice integral="2999">$29.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="2999">$29.99</totalPrice><bidded>true</bidded><merchantProductId>39962733051994</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>112.640015</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859204"><title>Rosin Gummies</title><mature>false</mature><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Frosin-gummies%3Fvariant%3D39703089872986%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859204&amp;pos=1&amp;b_id=18&amp;bid_type=8&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=846c5feb4bba8a0b&amp;af_sid=59&amp;mpid=39703089872986&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=19554517b98ce7a2ec5f809e0dc8d6ee70463e24d8c205c1&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d9.cnnx.io/image/obj/22712859204;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEzDdBGF7FOsnuQP3Ut8spgRCyf5AXdq5xxIgV1ZHRsBMQi9</Image><Image xsize="100" ysize="100">https://d9.cnnx.io/image/obj/22712859204;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEzDdBGF7FOsnuQP3Ut8spgRCyf5AXdq5xxIgV1ZHRsBMQi9</Image><Image xsize="160" ysize="160">https://d9.cnnx.io/image/obj/22712859204;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEzDdBGF7FOsnuQP3Ut8spgRCyf5AXdq5xxIgV1ZHRsBMQi9</Image><Image xsize="400" ysize="400">https://d9.cnnx.io/image/obj/22712859204;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEzDdBGF7FOsnuQP3Ut8spgRCyf5AXdq5xxIgV1ZHRsBMQi9</Image></Images><Skus><sku>6524088520600000</sku></Skus><sku>6524088520600000</sku><detailUrl>https://www.bizrate.com/oid22712859204?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="9999">$99.99</price><originalPrice integral="9999">$99.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="9999">$99.99</totalPrice><bidded>true</bidded><merchantProductId>39703089872986</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>112.556946</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859186"><title>Full Spectrum CBD + THC Gummies (20 ct)</title><mature>false</mature><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Ffull-spectrum-cbd-thc-gummies-20-ct-landers%3Fvariant%3D39962732986458%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859186&amp;pos=1&amp;b_id=18&amp;bid_type=8&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=c3df62017714bfd0&amp;af_sid=59&amp;mpid=39962732986458&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=19554517b98ce7a2ec5f809e0dc8d6ee70463e24d8c205c1&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d6.cnnx.io/image/obj/22712859186;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjGegLomH0r5raI3ZysESh5Wnu184KyYnQaQO9okOleCBurGoGYI84JuTKDBXiUwVcUqdgtSNlVMx56aIeGoFufGXNdIUUgGrU=</Image><Image xsize="100" ysize="100">https://d6.cnnx.io/image/obj/22712859186;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjGegLomH0r5raI3ZysESh5Wnu184KyYnQaQO9okOleCBurGoGYI84JuTKDBXiUwVcUqdgtSNlVMx56aIeGoFufGXNdIUUgGrU=</Image><Image xsize="160" ysize="160">https://d6.cnnx.io/image/obj/22712859186;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjGegLomH0r5raI3ZysESh5Wnu184KyYnQaQO9okOleCBurGoGYI84JuTKDBXiUwVcUqdgtSNlVMx56aIeGoFufGXNdIUUgGrU=</Image><Image xsize="400" ysize="400">https://d6.cnnx.io/image/obj/22712859186;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEjGegLomH0r5raI3ZysESh5Wnu184KyYnQaQO9okOleCBurGoGYI84JuTKDBXiUwVcUqdgtSNlVMx56aIeGoFufGXNdIUUgGrU=</Image></Images><Skus><sku>6524087000025150</sku></Skus><sku>6524087000025150</sku><upc>850022141331</upc><gtin>850022141331</gtin><ean13>0850022141331</ean13><detailUrl>https://www.bizrate.com/oid22712859186?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="2999">$29.99</price><originalPrice integral="2999">$29.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="2999">$29.99</totalPrice><bidded>true</bidded><merchantProductId>39962732986458</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>112.316770</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859207"><title>Rosin Gummies</title><mature>false</mature><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Frosin-gummies%3Fvariant%3D39703089971290%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859207&amp;pos=1&amp;b_id=18&amp;bid_type=8&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=846c5feb4bba8a0b&amp;af_sid=59&amp;mpid=39703089971290&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=19554517b98ce7a2ec5f809e0dc8d6ee70463e24d8c205c1&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d7.cnnx.io/image/obj/22712859207;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEzDdBGF5hWXZFoZBB297VEbzHqd67Pl0DGeVSmFGLf5s9Ml7ok=</Image><Image xsize="100" ysize="100">https://d7.cnnx.io/image/obj/22712859207;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEzDdBGF5hWXZFoZBB297VEbzHqd67Pl0DGeVSmFGLf5s9Ml7ok=</Image><Image xsize="160" ysize="160">https://d7.cnnx.io/image/obj/22712859207;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEzDdBGF5hWXZFoZBB297VEbzHqd67Pl0DGeVSmFGLf5s9Ml7ok=</Image><Image xsize="400" ysize="400">https://d7.cnnx.io/image/obj/22712859207;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMEzDdBGF5hWXZFoZBB297VEbzHqd67Pl0DGeVSmFGLf5s9Ml7ok=</Image></Images><Skus><sku>6524088510900000</sku></Skus><sku>6524088510900000</sku><detailUrl>https://www.bizrate.com/oid22712859207?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="9999">$99.99</price><originalPrice integral="9999">$99.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="9999">$99.99</totalPrice><bidded>true</bidded><merchantProductId>39703089971290</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>112.188530</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859172"><title>Full Spectrum CBD + THC Gummies</title><mature>false</mature><description>Our CBD Gummies are the best tasting way to take your Five daily dose. Try our CBD + Melatonin gummies if you need a little extra help sleeping.</description><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Fcbd-gummies%3Fvariant%3D39671981506650%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859172&amp;pos=1&amp;b_id=18&amp;bid_type=8&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=259faddac1edd1e0&amp;af_sid=59&amp;mpid=39671981506650&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=19554517b98ce7a2ec5f809e0dc8d6ee70463e24d8c205c1&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d7.cnnx.io/image/obj/22712859172;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-d3QMjeA0Qcm_qBmuePlJeKEUDNlCNPaKxbA1hiArA2wqk</Image><Image xsize="100" ysize="100">https://d7.cnnx.io/image/obj/22712859172;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-d3QMjeA0Qcm_qBmuePlJeKEUDNlCNPaKxbA1hiArA2wqk</Image><Image xsize="160" ysize="160">https://d7.cnnx.io/image/obj/22712859172;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-d3QMjeA0Qcm_qBmuePlJeKEUDNlCNPaKxbA1hiArA2wqk</Image><Image xsize="400" ysize="400">https://d7.cnnx.io/image/obj/22712859172;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDiGbR-d3QMjeA0Qcm_qBmuePlJeKEUDNlCNPaKxbA1hiArA2wqk</Image></Images><Skus><sku>6524087571000170</sku></Skus><sku>6524087571000170</sku><upc>850022141515</upc><gtin>850022141515</gtin><ean13>0850022141515</ean13><detailUrl>https://www.bizrate.com/oid22712859172?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="5999">$59.99</price><originalPrice integral="5999">$59.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="5999">$59.99</totalPrice><bidded>true</bidded><merchantProductId>39671981506650</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>112.174640</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859184"><title>Full Spectrum CBD + THC Gummies</title><mature>false</mature><description>Our CBD Gummies are the best tasting way to take your Five daily dose. Try our CBD + Melatonin gummies if you need a little extra help sleeping.</description><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Fcbd-gummies%3Fvariant%3D39683485859930%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859184&amp;pos=1&amp;b_id=18&amp;bid_type=8&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=22feb443abb79fb7&amp;af_sid=59&amp;mpid=39683485859930&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=19554517b98ce7a2ec5f809e0dc8d6ee70463e24d8c205c1&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d9.cnnx.io/image/obj/22712859184;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmcYhed3ZV2gk5TzAZXLX2EtYDclreWVmTnHIzxfSUf5SEEV8RJsQ==</Image><Image xsize="100" ysize="100">https://d9.cnnx.io/image/obj/22712859184;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmcYhed3ZV2gk5TzAZXLX2EtYDclreWVmTnHIzxfSUf5SEEV8RJsQ==</Image><Image xsize="160" ysize="160">https://d9.cnnx.io/image/obj/22712859184;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmcYhed3ZV2gk5TzAZXLX2EtYDclreWVmTnHIzxfSUf5SEEV8RJsQ==</Image><Image xsize="400" ysize="400">https://d9.cnnx.io/image/obj/22712859184;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmcYhed3ZV2gk5TzAZXLX2EtYDclreWVmTnHIzxfSUf5SEEV8RJsQ==</Image></Images><Skus><sku>6524087191000170</sku></Skus><sku>6524087191000170</sku><detailUrl>https://www.bizrate.com/oid22712859184?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="5599">$55.99</price><originalPrice integral="5599">$55.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="5599">$55.99</totalPrice><bidded>true</bidded><merchantProductId>39683485859930</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>112.141754</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859178"><title>Full Spectrum CBD + THC Gummies</title><mature>false</mature><description>Our CBD Gummies are the best tasting way to take your Five daily dose. Try our CBD + Melatonin gummies if you need a little extra help sleeping.</description><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Fcbd-gummies%3Fvariant%3D39683485204570%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859178&amp;pos=1&amp;b_id=18&amp;bid_type=8&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=22feb443abb79fb7&amp;af_sid=59&amp;mpid=39683485204570&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=19554517b98ce7a2ec5f809e0dc8d6ee70463e24d8c205c1&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d8.cnnx.io/image/obj/22712859178;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDWBfgKzxgxCFiLMW45oQASVCm0ULvcKcN_9ZIog9fnP30PJBJZqoGq8htM=</Image><Image xsize="100" ysize="100">https://d8.cnnx.io/image/obj/22712859178;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDWBfgKzxgxCFiLMW45oQASVCm0ULvcKcN_9ZIog9fnP30PJBJZqoGq8htM=</Image><Image xsize="160" ysize="160">https://d8.cnnx.io/image/obj/22712859178;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDWBfgKzxgxCFiLMW45oQASVCm0ULvcKcN_9ZIog9fnP30PJBJZqoGq8htM=</Image><Image xsize="400" ysize="400">https://d8.cnnx.io/image/obj/22712859178;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDWBfgKzxgxCFiLMW45oQASVCm0ULvcKcN_9ZIog9fnP30PJBJZqoGq8htM=</Image></Images><Skus><sku>6524087001000170</sku></Skus><sku>6524087001000170</sku><detailUrl>https://www.bizrate.com/oid22712859178?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="5599">$55.99</price><originalPrice integral="5599">$55.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="5599">$55.99</totalPrice><bidded>true</bidded><merchantProductId>39683485204570</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>111.985954</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859179"><title>Full Spectrum CBD + THC Gummies</title><mature>false</mature><description>Our CBD Gummies are the best tasting way to take your Five daily dose. Try our CBD + Melatonin gummies if you need a little extra help sleeping.</description><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Fcbd-gummies%3Fvariant%3D39498414129242%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859179&amp;pos=1&amp;b_id=18&amp;bid_type=8&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=a919320c893726cb&amp;af_sid=59&amp;mpid=39498414129242&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=19554517b98ce7a2ec5f809e0dc8d6ee70463e24d8c205c1&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d9.cnnx.io/image/obj/22712859179;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDWBfgKzxgxCFiLMW45oQASXCm0ULveivFl70X4mmLCPuUWwG2n0ZGY0OFQ=</Image><Image xsize="100" ysize="100">https://d9.cnnx.io/image/obj/22712859179;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDWBfgKzxgxCFiLMW45oQASXCm0ULveivFl70X4mmLCPuUWwG2n0ZGY0OFQ=</Image><Image xsize="160" ysize="160">https://d9.cnnx.io/image/obj/22712859179;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDWBfgKzxgxCFiLMW45oQASXCm0ULveivFl70X4mmLCPuUWwG2n0ZGY0OFQ=</Image><Image xsize="400" ysize="400">https://d9.cnnx.io/image/obj/22712859179;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDWBfgKzxgxCFiLMW45oQASXCm0ULveivFl70X4mmLCPuUWwG2n0ZGY0OFQ=</Image></Images><Skus><sku>6524087000025170</sku></Skus><sku>6524087000025170</sku><detailUrl>https://www.bizrate.com/oid22712859179?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="6999">$69.99</price><originalPrice integral="6999">$69.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="6999">$69.99</totalPrice><bidded>true</bidded><merchantProductId>39498414129242</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>111.580170</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859180"><title>Full Spectrum CBD + THC Gummies</title><mature>false</mature><description>Our CBD Gummies are the best tasting way to take your Five daily dose. Try our CBD + Melatonin gummies if you need a little extra help sleeping.</description><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Fcbd-gummies%3Fvariant%3D39498467344474%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859180&amp;pos=1&amp;b_id=18&amp;bid_type=8&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=c3df62017714bfd0&amp;af_sid=59&amp;mpid=39498467344474&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=19554517b98ce7a2ec5f809e0dc8d6ee70463e24d8c205c1&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d10.cnnx.io/image/obj/22712859180;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmfcgCq79CWTvfiIe-DyIEtFsx0XhWzPGqGGDK03ZXUZNXNB-fxAHI=</Image><Image xsize="100" ysize="100">https://d10.cnnx.io/image/obj/22712859180;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmfcgCq79CWTvfiIe-DyIEtFsx0XhWzPGqGGDK03ZXUZNXNB-fxAHI=</Image><Image xsize="160" ysize="160">https://d10.cnnx.io/image/obj/22712859180;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmfcgCq79CWTvfiIe-DyIEtFsx0XhWzPGqGGDK03ZXUZNXNB-fxAHI=</Image><Image xsize="400" ysize="400">https://d10.cnnx.io/image/obj/22712859180;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmfcgCq79CWTvfiIe-DyIEtFsx0XhWzPGqGGDK03ZXUZNXNB-fxAHI=</Image></Images><Skus><sku>6524087160025150</sku></Skus><sku>6524087160025150</sku><detailUrl>https://www.bizrate.com/oid22712859180?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="2999">$29.99</price><originalPrice integral="2999">$29.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="2999">$29.99</totalPrice><bidded>true</bidded><merchantProductId>39498467344474</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>111.580170</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859183"><title>Full Spectrum CBD + THC Gummies</title><mature>false</mature><description>Our CBD Gummies are the best tasting way to take your Five daily dose. Try our CBD + Melatonin gummies if you need a little extra help sleeping.</description><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Fcbd-gummies%3Fvariant%3D39498503815258%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859183&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=c3df62017714bfd0&amp;af_sid=59&amp;mpid=39498503815258&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=2fc41cebcb335deed7af8a70d349dc991ab15c252bd5abd7&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d8.cnnx.io/image/obj/22712859183;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmcYhed3ZV2gk5TzABXLX2EtYDclrexTy-QBJnYOctV1PMGzKvbJg==</Image><Image xsize="100" ysize="100">https://d8.cnnx.io/image/obj/22712859183;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmcYhed3ZV2gk5TzABXLX2EtYDclrexTy-QBJnYOctV1PMGzKvbJg==</Image><Image xsize="160" ysize="160">https://d8.cnnx.io/image/obj/22712859183;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmcYhed3ZV2gk5TzABXLX2EtYDclrexTy-QBJnYOctV1PMGzKvbJg==</Image><Image xsize="400" ysize="400">https://d8.cnnx.io/image/obj/22712859183;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmcYhed3ZV2gk5TzABXLX2EtYDclrexTy-QBJnYOctV1PMGzKvbJg==</Image></Images><Skus><sku>6524087190025150</sku></Skus><sku>6524087190025150</sku><upc>850022141355</upc><gtin>850022141355</gtin><ean13>0850022141355</ean13><detailUrl>https://www.bizrate.com/oid22712859183?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="2999">$29.99</price><originalPrice integral="2999">$29.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="2999">$29.99</totalPrice><bidded>true</bidded><merchantProductId>39498503815258</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>111.577200</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859177"><title>Full Spectrum CBD + THC Gummies</title><mature>false</mature><description>Our CBD Gummies are the best tasting way to take your Five daily dose. Try our CBD + Melatonin gummies if you need a little extra help sleeping.</description><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Fcbd-gummies%3Fvariant%3D39498407149658%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859177&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=c3df62017714bfd0&amp;af_sid=59&amp;mpid=39498407149658&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=a14c0c6e477cf688545aa3b749d9961302ed84cce3f8ff75&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d7.cnnx.io/image/obj/22712859177;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDWBfgKzxgxCFiLMW45oQASTCm0ULvcaVOdW8RkK5WE0jzV0Evz_Gcsn_Oo=</Image><Image xsize="100" ysize="100">https://d7.cnnx.io/image/obj/22712859177;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDWBfgKzxgxCFiLMW45oQASTCm0ULvcaVOdW8RkK5WE0jzV0Evz_Gcsn_Oo=</Image><Image xsize="160" ysize="160">https://d7.cnnx.io/image/obj/22712859177;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDWBfgKzxgxCFiLMW45oQASTCm0ULvcaVOdW8RkK5WE0jzV0Evz_Gcsn_Oo=</Image><Image xsize="400" ysize="400">https://d7.cnnx.io/image/obj/22712859177;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMDWBfgKzxgxCFiLMW45oQASTCm0ULvcaVOdW8RkK5WE0jzV0Evz_Gcsn_Oo=</Image></Images><Skus><sku>6524087000025150</sku></Skus><sku>6524087000025150</sku><detailUrl>https://www.bizrate.com/oid22712859177?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="2999">$29.99</price><originalPrice integral="2999">$29.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="2999">$29.99</totalPrice><bidded>true</bidded><merchantProductId>39498407149658</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>111.557060</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859181"><title>Full Spectrum CBD + THC Gummies</title><mature>false</mature><description>Our CBD Gummies are the best tasting way to take your Five daily dose. Try our CBD + Melatonin gummies if you need a little extra help sleeping.</description><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Fcbd-gummies%3Fvariant%3D39683486384218%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859181&amp;pos=1&amp;b_id=18&amp;bid_type=8&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=22feb443abb79fb7&amp;af_sid=59&amp;mpid=39683486384218&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=19554517b98ce7a2ec5f809e0dc8d6ee70463e24d8c205c1&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d6.cnnx.io/image/obj/22712859181;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmfcgCq79CWTvfiIe-FyIEtFsx0XhWk-SFhwOcQL8xWJZfyB2Egq6w=</Image><Image xsize="100" ysize="100">https://d6.cnnx.io/image/obj/22712859181;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmfcgCq79CWTvfiIe-FyIEtFsx0XhWk-SFhwOcQL8xWJZfyB2Egq6w=</Image><Image xsize="160" ysize="160">https://d6.cnnx.io/image/obj/22712859181;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmfcgCq79CWTvfiIe-FyIEtFsx0XhWk-SFhwOcQL8xWJZfyB2Egq6w=</Image><Image xsize="400" ysize="400">https://d6.cnnx.io/image/obj/22712859181;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMCmfcgCq79CWTvfiIe-FyIEtFsx0XhWk-SFhwOcQL8xWJZfyB2Egq6w=</Image></Images><Skus><sku>6524087161000170</sku></Skus><sku>6524087161000170</sku><detailUrl>https://www.bizrate.com/oid22712859181?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="5599">$55.99</price><originalPrice integral="5599">$55.99</originalPrice><markdownPercent>0.00</markdownPercent><totalPrice integral="5599">$55.99</totalPrice><bidded>true</bidded><merchantProductId>39683486384218</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>111.557060</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer><Offer merchantId="321920" categoryId="150" id="22712859325"><title>Sleep Bundle</title><mature>false</mature><description>&quot;Bundle up and hit the hay with the five™ sleep bundle, a nocturnal tag-team of gummies and tinctures that can quiet even the most active of minds. Make lights-out actually mean lights-out and enjoy your mornings with a refreshed mind.&quot;</description><manufacturer>Five CBD</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Ffivecbd.com%2Fproducts%2Fsleep-bundle%3Fvariant%3D32950498721882%26utm_source%3Dconnexity%26utm_medium%3Ddisplay%26utm_term%3DSZ_REDIRECT_ID%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=321920&amp;cat_id=150&amp;atom=10006&amp;prod_id=&amp;oid=22712859325&amp;pos=1&amp;b_id=18&amp;bid_type=8&amp;bamt=48cd9202db195e9b&amp;cobrand=1&amp;ppr=5db714189d17c5a8&amp;af_sid=59&amp;mpid=32950498721882&amp;keyword=gummy&amp;a=2777d274dbabbd8183bc27b6f346f683&amp;dv=19554517b98ce7a2ec5f809e0dc8d6ee70463e24d8c205c1&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d10.cnnx.io/image/obj/22712859325;sq=60;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMByaYQD32xN8L6ms3v0dwHYp9pkJH0QUOlwie2TsBl0HpQ==</Image><Image xsize="100" ysize="100">https://d10.cnnx.io/image/obj/22712859325;sq=100;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMByaYQD32xN8L6ms3v0dwHYp9pkJH0QUOlwie2TsBl0HpQ==</Image><Image xsize="160" ysize="160">https://d10.cnnx.io/image/obj/22712859325;sq=160;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMByaYQD32xN8L6ms3v0dwHYp9pkJH0QUOlwie2TsBl0HpQ==</Image><Image xsize="400" ysize="400">https://d10.cnnx.io/image/obj/22712859325;sq=400;p=0;t=ooPwmM0WTWKaBQ8QVFAzap1J4smEdUN8Dp3sZ5JEl342EbbBPnD419gD_I1mkMBBPvwZ9DDLkExEMByaYQD32xN8L6ms3v0dwHYp9pkJH0QUOlwie2TsBl0HpQ==</Image></Images><Skus><sku>6524120000000430</sku></Skus><sku>6524120000000430</sku><detailUrl>https://www.bizrate.com/oid22712859325?af_sid=59&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="6399">$63.99</price><originalPrice integral="8999">$89.99</originalPrice><markdownPercent>28.89</markdownPercent><totalPrice integral="6399">$63.99</totalPrice><bidded>true</bidded><merchantProductId>32950498721882</merchantProductId><merchantName>Five CBD</merchantName><merchantLogoUrl>https://s10.cnnx.io/merchant/little/321920.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>0.010</shipWeight><relevancy>10.380209</relevancy><googleCategoryId>Health &amp; Beauty &gt; Health Care &gt; Fitness &amp; Nutrition &gt; Vitamins &amp; Supplements</googleCategoryId></Offer></Offers></ProductResponse>
bizrate/rugs_726189.xml ADDED
@@ -0,0 +1 @@
 
 
1
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?><ProductResponse xmlns="http://www.shopzilla.com/services/catalog"><Classification><searchUrl>https://www.bizrate.com/rugs?rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</searchUrl></Classification><Offers includedResults="15" totalResults="15"><PriceSet><minPrice integral="2865">$28.65</minPrice><maxPrice integral="16317">$163.17</maxPrice></PriceSet><Offer merchantId="44084" categoryId="25000900" id="23729610063"><title>Flash Furniture YK-F968B-D9826-57-BL-GG Olefin Fiber Floor Mat, Stain Resistant - 5 x 7 ft, Blue/Gray, Multi-Colored</title><mature>false</mature><description>The Entrance Mats by Flash Furniture: Harken Collection Geometric Olefin Area Rug, 60 x 90, stain resistant, water repellant, non-shedding, jute backing, kid and pet friendly, blue/gray ( Flash Furniture - YK-F968B-D9826-57-BL-GG )</description><manufacturer>Flash Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.katom.com%2F916-YKF968BD982657BL.html%3Futm_source%3DShopzilla%26utm_medium%3DCSE%26utm_campaign%3DFlash%2BFurniture%26utm_content%3DSZ_REDIRECT_ID%26utm_term%3D916YKF968BD982657BL%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=44084&amp;cat_id=25000900&amp;atom=10705&amp;prod_id=&amp;oid=23729610063&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=42cebdc0db812186&amp;cobrand=1&amp;ppr=19b66c6f57d2d36b&amp;af_sid=19&amp;mpid=916-YKF968BD982657BL&amp;keyword=rugs&amp;a=a633a3c54179a8a9095cb9f843592d55&amp;dv=e7b953bd78f728911adad93887b9b0867a9121bc712093a8&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d8.cnnx.io/image/obj/23729610063;sq=60;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFgOcPE3gQJ86xpRtXWFDVVaL7z1Z6BXgDB-5NOJ</Image><Image xsize="100" ysize="100">https://d8.cnnx.io/image/obj/23729610063;sq=100;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFgOcPE3gQJ86xpRtXWFDVVaL7z1Z6BXgDB-5NOJ</Image><Image xsize="160" ysize="160">https://d8.cnnx.io/image/obj/23729610063;sq=160;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFgOcPE3gQJ86xpRtXWFDVVaL7z1Z6BXgDB-5NOJ</Image><Image xsize="400" ysize="400">https://d8.cnnx.io/image/obj/23729610063;sq=400;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFgOcPE3gQJ86xpRtXWFDVVaL7z1Z6BXgDB-5NOJ</Image></Images><Skus><sku>YKF968BD982657BLGG</sku></Skus><sku>YKF968BD982657BLGG</sku><detailUrl>https://www.bizrate.com/oid23729610063?af_sid=19&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="7971">$79.71</price><originalPrice integral="13552">$135.52</originalPrice><markdownPercent>41.18</markdownPercent><totalPrice integral="7971">$79.71</totalPrice><bidded>true</bidded><merchantProductId>916-YKF968BD982657BL</merchantProductId><merchantName>KaTom</merchantName><merchantLogoUrl>https://s9.cnnx.io/merchant/little/44084.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>31.000</shipWeight><relevancy>6.197442</relevancy><googleCategoryId>Hardware &gt; Building Materials &gt; Flooring &amp; Carpet</googleCategoryId></Offer><Offer merchantId="44084" categoryId="25000900" id="23729610065"><title>Flash Furniture YK-F968B-D9826-810-BL-GG Olefin Fiber Floor Mat, Stain Resistant - 8 x 10 ft, Blue/Gray, Multi-Colored</title><mature>false</mature><description>The Entrance Mats by Flash Furniture: Harken Collection Geometric Olefin Area Rug, 96 x 120, stain resistant, water repellant, non-shedding, jute backing, kid and pet friendly, blue/gray ( Flash Furniture - YK-F968B-D9826-810-BL-GG )</description><manufacturer>Flash Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.katom.com%2F916-YKF968BD9826810.html%3Futm_source%3DShopzilla%26utm_medium%3DCSE%26utm_campaign%3DFlash%2BFurniture%26utm_content%3DSZ_REDIRECT_ID%26utm_term%3D916YKF968BD9826810%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=44084&amp;cat_id=25000900&amp;atom=10705&amp;prod_id=&amp;oid=23729610065&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=42cebdc0db812186&amp;cobrand=1&amp;ppr=c5c49aa863ed6e06&amp;af_sid=19&amp;mpid=916-YKF968BD9826810&amp;keyword=rugs&amp;a=a633a3c54179a8a9095cb9f843592d55&amp;dv=e7b953bd78f728911adad93887b9b0867a9121bc712093a8&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d10.cnnx.io/image/obj/23729610065;sq=60;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFUIApIhiQVogRwHa_79iCeC8Lp_ZfuQvAOGsA==</Image><Image xsize="100" ysize="100">https://d10.cnnx.io/image/obj/23729610065;sq=100;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFUIApIhiQVogRwHa_79iCeC8Lp_ZfuQvAOGsA==</Image><Image xsize="160" ysize="160">https://d10.cnnx.io/image/obj/23729610065;sq=160;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFUIApIhiQVogRwHa_79iCeC8Lp_ZfuQvAOGsA==</Image><Image xsize="400" ysize="400">https://d10.cnnx.io/image/obj/23729610065;sq=400;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFUIApIhiQVogRwHa_79iCeC8Lp_ZfuQvAOGsA==</Image></Images><Skus><sku>YKF968BD9826810BLGG</sku></Skus><sku>YKF968BD9826810BLGG</sku><detailUrl>https://www.bizrate.com/oid23729610065?af_sid=19&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="15570">$155.70</price><originalPrice integral="26470">$264.70</originalPrice><markdownPercent>41.18</markdownPercent><totalPrice integral="15570">$155.70</totalPrice><bidded>true</bidded><merchantProductId>916-YKF968BD9826810</merchantProductId><merchantName>KaTom</merchantName><merchantLogoUrl>https://s9.cnnx.io/merchant/little/44084.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>35.000</shipWeight><relevancy>6.195223</relevancy><googleCategoryId>Hardware &gt; Building Materials &gt; Flooring &amp; Carpet</googleCategoryId></Offer><Offer merchantId="44084" categoryId="25000900" id="23729610057"><title>Flash Furniture YK-F968A-D9276I-57-BK-GG Olefin Fiber Floor Mat, Stain Resistant - 5 x 7 ft, Black/Gray, Multi-Colored</title><mature>false</mature><description>The Entrance Mats by Flash Furniture: Harken Collection Geometric Olefin Area Rug, 60 x 90, stain resistant, water repellant, non-shedding, jute backing, kid and pet friendly, black/gray ( Flash Furniture - YK-F968A-D9276I-57-BK-GG )</description><manufacturer>Flash Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.katom.com%2F916-YKF968AD9276I57.html%3Futm_source%3DShopzilla%26utm_medium%3DCSE%26utm_campaign%3DFlash%2BFurniture%26utm_content%3DSZ_REDIRECT_ID%26utm_term%3D916YKF968AD9276I57%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=44084&amp;cat_id=25000900&amp;atom=10705&amp;prod_id=&amp;oid=23729610057&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=42cebdc0db812186&amp;cobrand=1&amp;ppr=35aa3ac6211559d7&amp;af_sid=19&amp;mpid=916-YKF968AD9276I57&amp;keyword=rugs&amp;a=a633a3c54179a8a9095cb9f843592d55&amp;dv=e7b953bd78f728911adad93887b9b0867a9121bc712093a8&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d7.cnnx.io/image/obj/23729610057;sq=60;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQMBZIhiQUSnsuHhgZ2FAxgI7c9oC0jhQaHyA==</Image><Image xsize="100" ysize="100">https://d7.cnnx.io/image/obj/23729610057;sq=100;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQMBZIhiQUSnsuHhgZ2FAxgI7c9oC0jhQaHyA==</Image><Image xsize="160" ysize="160">https://d7.cnnx.io/image/obj/23729610057;sq=160;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQMBZIhiQUSnsuHhgZ2FAxgI7c9oC0jhQaHyA==</Image><Image xsize="400" ysize="400">https://d7.cnnx.io/image/obj/23729610057;sq=400;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQMBZIhiQUSnsuHhgZ2FAxgI7c9oC0jhQaHyA==</Image></Images><Skus><sku>YKF968AD9276I57BKGG</sku></Skus><sku>YKF968AD9276I57BKGG</sku><detailUrl>https://www.bizrate.com/oid23729610057?af_sid=19&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="8096">$80.96</price><originalPrice integral="13764">$137.64</originalPrice><markdownPercent>41.18</markdownPercent><totalPrice integral="8096">$80.96</totalPrice><bidded>true</bidded><merchantProductId>916-YKF968AD9276I57</merchantProductId><merchantName>KaTom</merchantName><merchantLogoUrl>https://s9.cnnx.io/merchant/little/44084.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>16.000</shipWeight><relevancy>6.194070</relevancy><googleCategoryId>Hardware &gt; Building Materials &gt; Flooring &amp; Carpet</googleCategoryId></Offer><Offer merchantId="44084" categoryId="25000900" id="23729610062"><title>Flash Furniture YK-F968B-D9826-27-BL-GG Olefin Fiber Floor Mat, Stain Resistant - 2 x 7 ft, Blue/Gray, Multi-Colored</title><mature>false</mature><description>The Entrance Mats by Flash Furniture: Harken Collection Geometric Olefin Area Rug, 24 x 84, stain resistant, water repellant, non-shedding, jute backing, kid and pet friendly, blue/gray ( Flash Furniture - YK-F968B-D9826-27-BL-GG )</description><manufacturer>Flash Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.katom.com%2F916-YKF968BD982627BL.html%3Futm_source%3DShopzilla%26utm_medium%3DCSE%26utm_campaign%3DFlash%2BFurniture%26utm_content%3DSZ_REDIRECT_ID%26utm_term%3D916YKF968BD982627BL%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=44084&amp;cat_id=25000900&amp;atom=10705&amp;prod_id=&amp;oid=23729610062&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=42cebdc0db812186&amp;cobrand=1&amp;ppr=ad64f96c20ca2a38&amp;af_sid=19&amp;mpid=916-YKF968BD982627BL&amp;keyword=rugs&amp;a=a633a3c54179a8a9095cb9f843592d55&amp;dv=e7b953bd78f728911adad93887b9b0867a9121bc712093a8&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d7.cnnx.io/image/obj/23729610062;sq=60;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeF8OcPE3gQImv7j0_RB1bTiBIM_MHm2JPVUUyTk5</Image><Image xsize="100" ysize="100">https://d7.cnnx.io/image/obj/23729610062;sq=100;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeF8OcPE3gQImv7j0_RB1bTiBIM_MHm2JPVUUyTk5</Image><Image xsize="160" ysize="160">https://d7.cnnx.io/image/obj/23729610062;sq=160;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeF8OcPE3gQImv7j0_RB1bTiBIM_MHm2JPVUUyTk5</Image><Image xsize="400" ysize="400">https://d7.cnnx.io/image/obj/23729610062;sq=400;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeF8OcPE3gQImv7j0_RB1bTiBIM_MHm2JPVUUyTk5</Image></Images><Skus><sku>YKF968BD982627BLGG</sku></Skus><sku>YKF968BD982627BLGG</sku><detailUrl>https://www.bizrate.com/oid23729610062?af_sid=19&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="2865">$28.65</price><originalPrice integral="4870">$48.70</originalPrice><markdownPercent>41.17</markdownPercent><totalPrice integral="2865">$28.65</totalPrice><bidded>true</bidded><merchantProductId>916-YKF968BD982627BL</merchantProductId><merchantName>KaTom</merchantName><merchantLogoUrl>https://s9.cnnx.io/merchant/little/44084.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>7.000</shipWeight><relevancy>6.194070</relevancy><googleCategoryId>Hardware &gt; Building Materials &gt; Flooring &amp; Carpet</googleCategoryId></Offer><Offer merchantId="44084" categoryId="25000900" id="23729610061"><title>Flash Furniture YK-F968A-D9276I-96-BK-GG Olefin Fiber Floor Mat, Stain Resistant - 6 x 9 ft, Black/Gray, Multi-Colored</title><mature>false</mature><description>The Entrance Mats by Flash Furniture: Harken Collection Geometric Olefin Area Rug, 96 x 120, stain resistant, water repellant, non-shedding, jute backing, kid and pet friendly, black/gray ( Flash Furniture - YK-F968A-D9276I-96-BK-GG )</description><manufacturer>Flash Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.katom.com%2F916-YKF968AD9276I96.html%3Futm_source%3DShopzilla%26utm_medium%3DCSE%26utm_campaign%3DFlash%2BFurniture%26utm_content%3DSZ_REDIRECT_ID%26utm_term%3D916YKF968AD9276I96%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=44084&amp;cat_id=25000900&amp;atom=10705&amp;prod_id=&amp;oid=23729610061&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=42cebdc0db812186&amp;cobrand=1&amp;ppr=35c465524ec682a3&amp;af_sid=19&amp;mpid=916-YKF968AD9276I96&amp;keyword=rugs&amp;a=a633a3c54179a8a9095cb9f843592d55&amp;dv=e7b953bd78f728911adad93887b9b0867a9121bc712093a8&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d6.cnnx.io/image/obj/23729610061;sq=60;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQABJIhiQWIFvyFrYoo1QKtapMcRGoMvHGBVQ==</Image><Image xsize="100" ysize="100">https://d6.cnnx.io/image/obj/23729610061;sq=100;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQABJIhiQWIFvyFrYoo1QKtapMcRGoMvHGBVQ==</Image><Image xsize="160" ysize="160">https://d6.cnnx.io/image/obj/23729610061;sq=160;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQABJIhiQWIFvyFrYoo1QKtapMcRGoMvHGBVQ==</Image><Image xsize="400" ysize="400">https://d6.cnnx.io/image/obj/23729610061;sq=400;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQABJIhiQWIFvyFrYoo1QKtapMcRGoMvHGBVQ==</Image></Images><Skus><sku>YKF968AD9276I96BKGG</sku></Skus><sku>YKF968AD9276I96BKGG</sku><detailUrl>https://www.bizrate.com/oid23729610061?af_sid=19&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="10712">$107.12</price><originalPrice integral="18212">$182.12</originalPrice><markdownPercent>41.18</markdownPercent><totalPrice integral="10712">$107.12</totalPrice><bidded>true</bidded><merchantProductId>916-YKF968AD9276I96</merchantProductId><merchantName>KaTom</merchantName><merchantLogoUrl>https://s9.cnnx.io/merchant/little/44084.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>24.000</shipWeight><relevancy>6.193437</relevancy><googleCategoryId>Hardware &gt; Building Materials &gt; Flooring &amp; Carpet</googleCategoryId></Offer><Offer merchantId="44084" categoryId="25000900" id="23729610059"><title>Flash Furniture YK-F968A-D9276I-810-BK-GG Olefin Fiber Floor Mat, Stain Resistant - 8 x 10 ft, Black/Gray, Multi-Colored</title><mature>false</mature><description>The Entrance Mats by Flash Furniture: Harken Collection Geometric Olefin Area Rug, 96 x 120, stain resistant, water repellant, non-shedding, jute backing, kid and pet friendly, black/gray ( Flash Furniture - YK-F968A-D9276I-810-BK-GG )</description><manufacturer>Flash Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.katom.com%2F916-YKF968AD9276I81.html%3Futm_source%3DShopzilla%26utm_medium%3DCSE%26utm_campaign%3DFlash%2BFurniture%26utm_content%3DSZ_REDIRECT_ID%26utm_term%3D916YKF968AD9276I81%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=44084&amp;cat_id=25000900&amp;atom=10705&amp;prod_id=&amp;oid=23729610059&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=42cebdc0db812186&amp;cobrand=1&amp;ppr=33630432b27089e1&amp;af_sid=19&amp;mpid=916-YKF968AD9276I81&amp;keyword=rugs&amp;a=a633a3c54179a8a9095cb9f843592d55&amp;dv=e7b953bd78f728911adad93887b9b0867a9121bc712093a8&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d9.cnnx.io/image/obj/23729610059;sq=60;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQBA5IhiQUXqsvBNJGWSQUqI2M1ExoF4XQY-g==</Image><Image xsize="100" ysize="100">https://d9.cnnx.io/image/obj/23729610059;sq=100;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQBA5IhiQUXqsvBNJGWSQUqI2M1ExoF4XQY-g==</Image><Image xsize="160" ysize="160">https://d9.cnnx.io/image/obj/23729610059;sq=160;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQBA5IhiQUXqsvBNJGWSQUqI2M1ExoF4XQY-g==</Image><Image xsize="400" ysize="400">https://d9.cnnx.io/image/obj/23729610059;sq=400;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQBA5IhiQUXqsvBNJGWSQUqI2M1ExoF4XQY-g==</Image></Images><Skus><sku>YKF968AD9276I810BKGG</sku></Skus><sku>YKF968AD9276I810BKGG</sku><detailUrl>https://www.bizrate.com/oid23729610059?af_sid=19&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="16317">$163.17</price><originalPrice integral="27740">$277.40</originalPrice><markdownPercent>41.18</markdownPercent><totalPrice integral="16317">$163.17</totalPrice><bidded>true</bidded><merchantProductId>916-YKF968AD9276I81</merchantProductId><merchantName>KaTom</merchantName><merchantLogoUrl>https://s9.cnnx.io/merchant/little/44084.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>35.000</shipWeight><relevancy>6.193255</relevancy><googleCategoryId>Hardware &gt; Building Materials &gt; Flooring &amp; Carpet</googleCategoryId></Offer><Offer merchantId="44084" categoryId="25000900" id="23729610067"><title>Flash Furniture YK-F968B-D9826-96-BL-GG Olefin Fiber Floor Mat, Stain Resistant - 6 x 9 ft, Blue/Gray, Multi-Colored</title><mature>false</mature><description>The Entrance Mats by Flash Furniture: Harken Collection Geometric Olefin Area Rug, 96 x 120, stain resistant, water repellant, non-shedding, jute backing, kid and pet friendly, blue/gray ( Flash Furniture - YK-F968B-D9826-96-BL-GG )</description><manufacturer>Flash Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.katom.com%2F916-YKF968BD982696BL.html%3Futm_source%3DShopzilla%26utm_medium%3DCSE%26utm_campaign%3DFlash%2BFurniture%26utm_content%3DSZ_REDIRECT_ID%26utm_term%3D916YKF968BD982696BL%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=44084&amp;cat_id=25000900&amp;atom=10705&amp;prod_id=&amp;oid=23729610067&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=42cebdc0db812186&amp;cobrand=1&amp;ppr=6966029b69287879&amp;af_sid=19&amp;mpid=916-YKF968BD982696BL&amp;keyword=rugs&amp;a=a633a3c54179a8a9095cb9f843592d55&amp;dv=e7b953bd78f728911adad93887b9b0867a9121bc712093a8&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d7.cnnx.io/image/obj/23729610067;sq=60;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFQPcPE3gQKFK6aCiDsu4MKolosxxn_VwLpzTq6H</Image><Image xsize="100" ysize="100">https://d7.cnnx.io/image/obj/23729610067;sq=100;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFQPcPE3gQKFK6aCiDsu4MKolosxxn_VwLpzTq6H</Image><Image xsize="160" ysize="160">https://d7.cnnx.io/image/obj/23729610067;sq=160;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFQPcPE3gQKFK6aCiDsu4MKolosxxn_VwLpzTq6H</Image><Image xsize="400" ysize="400">https://d7.cnnx.io/image/obj/23729610067;sq=400;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFQPcPE3gQKFK6aCiDsu4MKolosxxn_VwLpzTq6H</Image></Images><Skus><sku>YKF968BD982696BLGG</sku></Skus><sku>YKF968BD982696BLGG</sku><detailUrl>https://www.bizrate.com/oid23729610067?af_sid=19&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="10463">$104.63</price><originalPrice integral="17788">$177.88</originalPrice><markdownPercent>41.18</markdownPercent><totalPrice integral="10463">$104.63</totalPrice><bidded>true</bidded><merchantProductId>916-YKF968BD982696BL</merchantProductId><merchantName>KaTom</merchantName><merchantLogoUrl>https://s9.cnnx.io/merchant/little/44084.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>24.000</shipWeight><relevancy>6.192203</relevancy><googleCategoryId>Hardware &gt; Building Materials &gt; Flooring &amp; Carpet</googleCategoryId></Offer><Offer merchantId="44084" categoryId="25000900" id="23729610056"><title>Flash Furniture YK-F968A-D9276I-27-BK-GG Olefin Fiber Floor Mat, Stain Resistant - 2 x 7 ft, Black/Gray, Multi-Colored</title><mature>false</mature><description>The Entrance Mats by Flash Furniture: Harken Collection Geometric Olefin Area Rug, 24 x 84, stain resistant, water repellant, non-shedding, jute backing, kid and pet friendly, black/gray ( Flash Furniture - YK-F968A-D9276I-27-BK-GG )</description><manufacturer>Flash Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.katom.com%2F916-YKF968AD9276I27.html%3Futm_source%3DShopzilla%26utm_medium%3DCSE%26utm_campaign%3DFlash%2BFurniture%26utm_content%3DSZ_REDIRECT_ID%26utm_term%3D916YKF968AD9276I27%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=44084&amp;cat_id=25000900&amp;atom=10705&amp;prod_id=&amp;oid=23729610056&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=42cebdc0db812186&amp;cobrand=1&amp;ppr=ad64f96c20ca2a38&amp;af_sid=19&amp;mpid=916-YKF968AD9276I27&amp;keyword=rugs&amp;a=a633a3c54179a8a9095cb9f843592d55&amp;dv=e7b953bd78f728911adad93887b9b0867a9121bc712093a8&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d6.cnnx.io/image/obj/23729610056;sq=60;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQLBZIhiQUKLBmmNkPh7Uz8s9aTrTaoxpYCMw==</Image><Image xsize="100" ysize="100">https://d6.cnnx.io/image/obj/23729610056;sq=100;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQLBZIhiQUKLBmmNkPh7Uz8s9aTrTaoxpYCMw==</Image><Image xsize="160" ysize="160">https://d6.cnnx.io/image/obj/23729610056;sq=160;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQLBZIhiQUKLBmmNkPh7Uz8s9aTrTaoxpYCMw==</Image><Image xsize="400" ysize="400">https://d6.cnnx.io/image/obj/23729610056;sq=400;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQLBZIhiQUKLBmmNkPh7Uz8s9aTrTaoxpYCMw==</Image></Images><Skus><sku>YKF968AD9276I27BKGG</sku></Skus><sku>YKF968AD9276I27BKGG</sku><detailUrl>https://www.bizrate.com/oid23729610056?af_sid=19&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="2865">$28.65</price><originalPrice integral="4870">$48.70</originalPrice><markdownPercent>41.17</markdownPercent><totalPrice integral="2865">$28.65</totalPrice><bidded>true</bidded><merchantProductId>916-YKF968AD9276I27</merchantProductId><merchantName>KaTom</merchantName><merchantLogoUrl>https://s9.cnnx.io/merchant/little/44084.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>7.000</shipWeight><relevancy>6.191530</relevancy><googleCategoryId>Hardware &gt; Building Materials &gt; Flooring &amp; Carpet</googleCategoryId></Offer><Offer merchantId="44084" categoryId="25000900" id="23729610066"><title>Flash Furniture YK-F968B-D9826-8R-BL-GG Olefin Fiber Floor Mat, Stain Resistant - 8 x 8 ft, Blue/Gray, Multi-Colored</title><mature>false</mature><description>The Entrance Mats by Flash Furniture: Harken Collection Geometric Olefin Area Rug, 93 x 93, round, stain resistant, water repellant, non-shedding, jute backing, kid and pet friendly, blue/gray ( Flash Furniture - YK-F968B-D9826-8R-BL-GG )</description><manufacturer>Flash Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.katom.com%2F916-YKF968BD98268RBL.html%3Futm_source%3DShopzilla%26utm_medium%3DCSE%26utm_campaign%3DFlash%2BFurniture%26utm_content%3DSZ_REDIRECT_ID%26utm_term%3D916YKF968BD98268RBL%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=44084&amp;cat_id=25000900&amp;atom=10705&amp;prod_id=&amp;oid=23729610066&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=42cebdc0db812186&amp;cobrand=1&amp;ppr=377cdf5bb12d2dae&amp;af_sid=19&amp;mpid=916-YKF968BD98268RBL&amp;keyword=rugs&amp;a=a633a3c54179a8a9095cb9f843592d55&amp;dv=e7b953bd78f728911adad93887b9b0867a9121bc712093a8&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d6.cnnx.io/image/obj/23729610066;sq=60;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFVrcPE3gQJFak9wOY8iEe-Ee0pMpK8Ms6bEfy3I</Image><Image xsize="100" ysize="100">https://d6.cnnx.io/image/obj/23729610066;sq=100;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFVrcPE3gQJFak9wOY8iEe-Ee0pMpK8Ms6bEfy3I</Image><Image xsize="160" ysize="160">https://d6.cnnx.io/image/obj/23729610066;sq=160;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFVrcPE3gQJFak9wOY8iEe-Ee0pMpK8Ms6bEfy3I</Image><Image xsize="400" ysize="400">https://d6.cnnx.io/image/obj/23729610066;sq=400;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFVrcPE3gQJFak9wOY8iEe-Ee0pMpK8Ms6bEfy3I</Image></Images><Skus><sku>YKF968BD98268RBLGG</sku></Skus><sku>YKF968BD98268RBLGG</sku><detailUrl>https://www.bizrate.com/oid23729610066?af_sid=19&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="12456">$124.56</price><originalPrice integral="21176">$211.76</originalPrice><markdownPercent>41.18</markdownPercent><totalPrice integral="12456">$124.56</totalPrice><bidded>true</bidded><merchantProductId>916-YKF968BD98268RBL</merchantProductId><merchantName>KaTom</merchantName><merchantLogoUrl>https://s9.cnnx.io/merchant/little/44084.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>30.000</shipWeight><relevancy>6.107394</relevancy><googleCategoryId>Hardware &gt; Building Materials &gt; Flooring &amp; Carpet</googleCategoryId></Offer><Offer merchantId="44084" categoryId="25000900" id="23729610058"><title>Flash Furniture YK-F968A-D9276I-5R-BK-GG Olefin Fiber Floor Mat, Stain Resistant - 5 x 5 ft, Black/Gray, Multi-Colored</title><mature>false</mature><description>The Entrance Mats by Flash Furniture: Harken Collection Geometric Olefin Area Rug, 60 x 60, round, stain resistant, water repellant, non-shedding, jute backing, kid and pet friendly, black/gray ( Flash Furniture - YK-F968A-D9276I-5R-BK-GG )</description><manufacturer>Flash Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.katom.com%2F916-YKF968AD9276I5R.html%3Futm_source%3DShopzilla%26utm_medium%3DCSE%26utm_campaign%3DFlash%2BFurniture%26utm_content%3DSZ_REDIRECT_ID%26utm_term%3D916YKF968AD9276I5R%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=44084&amp;cat_id=25000900&amp;atom=10705&amp;prod_id=&amp;oid=23729610058&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=42cebdc0db812186&amp;cobrand=1&amp;ppr=c9785ddf994cc0da&amp;af_sid=19&amp;mpid=916-YKF968AD9276I5R&amp;keyword=rugs&amp;a=a633a3c54179a8a9095cb9f843592d55&amp;dv=e7b953bd78f728911adad93887b9b0867a9121bc712093a8&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d8.cnnx.io/image/obj/23729610058;sq=60;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQMYJIhiQVSGut-0vDumrMWr5i5Q6zgk1D-iQ==</Image><Image xsize="100" ysize="100">https://d8.cnnx.io/image/obj/23729610058;sq=100;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQMYJIhiQVSGut-0vDumrMWr5i5Q6zgk1D-iQ==</Image><Image xsize="160" ysize="160">https://d8.cnnx.io/image/obj/23729610058;sq=160;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQMYJIhiQVSGut-0vDumrMWr5i5Q6zgk1D-iQ==</Image><Image xsize="400" ysize="400">https://d8.cnnx.io/image/obj/23729610058;sq=400;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQMYJIhiQVSGut-0vDumrMWr5i5Q6zgk1D-iQ==</Image></Images><Skus><sku>YKF968AD9276I5RBKGG</sku></Skus><sku>YKF968AD9276I5RBKGG</sku><detailUrl>https://www.bizrate.com/oid23729610058?af_sid=19&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="5606">$56.06</price><originalPrice integral="9530">$95.30</originalPrice><markdownPercent>41.18</markdownPercent><totalPrice integral="5606">$56.06</totalPrice><bidded>true</bidded><merchantProductId>916-YKF968AD9276I5R</merchantProductId><merchantName>KaTom</merchantName><merchantLogoUrl>https://s9.cnnx.io/merchant/little/44084.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>9.000</shipWeight><relevancy>6.104131</relevancy><googleCategoryId>Hardware &gt; Building Materials &gt; Flooring &amp; Carpet</googleCategoryId></Offer><Offer merchantId="44084" categoryId="25000900" id="23729610064"><title>Flash Furniture YK-F968B-D9826-5R-BL-GG Olefin Fiber Floor Mat, Stain Resistant - 5 x 5 ft, Blue/Gray, Multi-Colored</title><mature>false</mature><description>The Entrance Mats by Flash Furniture: Harken Collection Geometric Olefin Area Rug, 60 x 60, round, stain resistant, water repellant, non-shedding, jute backing, kid and pet friendly, blue/gray ( Flash Furniture - YK-F968B-D9826-5R-BL-GG )</description><manufacturer>Flash Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.katom.com%2F916-YKF968BD98265RBL.html%3Futm_source%3DShopzilla%26utm_medium%3DCSE%26utm_campaign%3DFlash%2BFurniture%26utm_content%3DSZ_REDIRECT_ID%26utm_term%3D916YKF968BD98265RBL%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=44084&amp;cat_id=25000900&amp;atom=10705&amp;prod_id=&amp;oid=23729610064&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=42cebdc0db812186&amp;cobrand=1&amp;ppr=1aaf8c0abf5a1dc4&amp;af_sid=19&amp;mpid=916-YKF968BD98265RBL&amp;keyword=rugs&amp;a=a633a3c54179a8a9095cb9f843592d55&amp;dv=e7b953bd78f728911adad93887b9b0867a9121bc712093a8&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d9.cnnx.io/image/obj/23729610064;sq=60;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFhrcPE3gQJApSilBaGhfgFQY86ImQ49EA9JYWis</Image><Image xsize="100" ysize="100">https://d9.cnnx.io/image/obj/23729610064;sq=100;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFhrcPE3gQJApSilBaGhfgFQY86ImQ49EA9JYWis</Image><Image xsize="160" ysize="160">https://d9.cnnx.io/image/obj/23729610064;sq=160;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFhrcPE3gQJApSilBaGhfgFQY86ImQ49EA9JYWis</Image><Image xsize="400" ysize="400">https://d9.cnnx.io/image/obj/23729610064;sq=400;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdimNMXKeFhrcPE3gQJApSilBaGhfgFQY86ImQ49EA9JYWis</Image></Images><Skus><sku>YKF968BD98265RBLGG</sku></Skus><sku>YKF968BD98265RBLGG</sku><detailUrl>https://www.bizrate.com/oid23729610064?af_sid=19&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="6850">$68.50</price><originalPrice integral="11646">$116.46</originalPrice><markdownPercent>41.18</markdownPercent><totalPrice integral="6850">$68.50</totalPrice><bidded>true</bidded><merchantProductId>916-YKF968BD98265RBL</merchantProductId><merchantName>KaTom</merchantName><merchantLogoUrl>https://s9.cnnx.io/merchant/little/44084.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>9.000</shipWeight><relevancy>6.104131</relevancy><googleCategoryId>Hardware &gt; Building Materials &gt; Flooring &amp; Carpet</googleCategoryId></Offer><Offer merchantId="44084" categoryId="25000900" id="23729610060"><title>Flash Furniture YK-F968A-D9276I-8R-BK-GG Olefin Fiber Floor Mat, Stain Resistant - 8 x 8 ft, Black/Gray, Multi-Colored</title><mature>false</mature><description>The Entrance Mats by Flash Furniture: Harken Collection Geometric Olefin Area Rug, 93 x 93, round, stain resistant, water repellant, non-shedding, jute backing, kid and pet friendly, black/gray ( Flash Furniture - YK-F968A-D9276I-8R-BK-GG )</description><manufacturer>Flash Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.katom.com%2F916-YKF968AD9276I8R.html%3Futm_source%3DShopzilla%26utm_medium%3DCSE%26utm_campaign%3DFlash%2BFurniture%26utm_content%3DSZ_REDIRECT_ID%26utm_term%3D916YKF968AD9276I8R%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=44084&amp;cat_id=25000900&amp;atom=10705&amp;prod_id=&amp;oid=23729610060&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=42cebdc0db812186&amp;cobrand=1&amp;ppr=0e0c0b79af57e30a&amp;af_sid=19&amp;mpid=916-YKF968AD9276I8R&amp;keyword=rugs&amp;a=a633a3c54179a8a9095cb9f843592d55&amp;dv=e7b953bd78f728911adad93887b9b0867a9121bc712093a8&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d10.cnnx.io/image/obj/23729610060;sq=60;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQBYJIhiQW7cuEgBI64jZIEn-Ind9NDQxojhQ==</Image><Image xsize="100" ysize="100">https://d10.cnnx.io/image/obj/23729610060;sq=100;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQBYJIhiQW7cuEgBI64jZIEn-Ind9NDQxojhQ==</Image><Image xsize="160" ysize="160">https://d10.cnnx.io/image/obj/23729610060;sq=160;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQBYJIhiQW7cuEgBI64jZIEn-Ind9NDQxojhQ==</Image><Image xsize="400" ysize="400">https://d10.cnnx.io/image/obj/23729610060;sq=400;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuNA_gJdumNM_PeCQBYJIhiQW7cuEgBI64jZIEn-Ind9NDQxojhQ==</Image></Images><Skus><sku>YKF968AD9276I8RBKGG</sku></Skus><sku>YKF968AD9276I8RBKGG</sku><detailUrl>https://www.bizrate.com/oid23729610060?af_sid=19&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="12705">$127.05</price><originalPrice integral="21600">$216.00</originalPrice><markdownPercent>41.18</markdownPercent><totalPrice integral="12705">$127.05</totalPrice><bidded>true</bidded><merchantProductId>916-YKF968AD9276I8R</merchantProductId><merchantName>KaTom</merchantName><merchantLogoUrl>https://s9.cnnx.io/merchant/little/44084.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>30.000</shipWeight><relevancy>6.102770</relevancy><googleCategoryId>Hardware &gt; Building Materials &gt; Flooring &amp; Carpet</googleCategoryId></Offer><Offer merchantId="44084" categoryId="25000900" id="23729610054"><title>Flash Furniture YK-A811A-D8571-69-GR-GG Olefin Fiber Floor Mat, Stain Resistant - 6 x 9 ft, Abstract, Multi-Colored</title><mature>false</mature><description>The Entrance Mats by Flash Furniture: Caldor Collection Abstract Olefin Area Rug, 72W x 108D, indoor use, olefin fibers, stain resistant, jute backing, water repellent, non-shedding, beige/red/green ( Flash Furniture - YK-A811A-D8571-69-GR-GG )</description><manufacturer>Flash Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.katom.com%2F916-YKA811AD857169GR.html%3Futm_source%3DShopzilla%26utm_medium%3DCSE%26utm_campaign%3DFlash%2BFurniture%26utm_content%3DSZ_REDIRECT_ID%26utm_term%3D916YKA811AD857169GR%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=44084&amp;cat_id=25000900&amp;atom=10705&amp;prod_id=&amp;oid=23729610054&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=42cebdc0db812186&amp;cobrand=1&amp;ppr=35c465524ec682a3&amp;af_sid=19&amp;mpid=916-YKA811AD857169GR&amp;keyword=rugs&amp;a=a633a3c54179a8a9095cb9f843592d55&amp;dv=e7b953bd78f728911adad93887b9b0867a9121bc712093a8&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d9.cnnx.io/image/obj/23729610054;sq=60;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuMwXkw0kY0qSCwnDJjNRDEY252H5Hvod67k5IL3dWt5uOwEdgLhtJ</Image><Image xsize="100" ysize="100">https://d9.cnnx.io/image/obj/23729610054;sq=100;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuMwXkw0kY0qSCwnDJjNRDEY252H5Hvod67k5IL3dWt5uOwEdgLhtJ</Image><Image xsize="160" ysize="160">https://d9.cnnx.io/image/obj/23729610054;sq=160;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuMwXkw0kY0qSCwnDJjNRDEY252H5Hvod67k5IL3dWt5uOwEdgLhtJ</Image><Image xsize="400" ysize="400">https://d9.cnnx.io/image/obj/23729610054;sq=400;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuMwXkw0kY0qSCwnDJjNRDEY252H5Hvod67k5IL3dWt5uOwEdgLhtJ</Image></Images><Skus><sku>YKA811AD857169GRGG</sku></Skus><sku>YKA811AD857169GRGG</sku><detailUrl>https://www.bizrate.com/oid23729610054?af_sid=19&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="10712">$107.12</price><originalPrice integral="18212">$182.12</originalPrice><markdownPercent>41.18</markdownPercent><totalPrice integral="10712">$107.12</totalPrice><bidded>true</bidded><merchantProductId>916-YKA811AD857169GR</merchantProductId><merchantName>KaTom</merchantName><merchantLogoUrl>https://s9.cnnx.io/merchant/little/44084.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>24.000</shipWeight><relevancy>6.019741</relevancy><googleCategoryId>Hardware &gt; Building Materials &gt; Flooring &amp; Carpet</googleCategoryId></Offer><Offer merchantId="44084" categoryId="25000900" id="23729610053"><title>Flash Furniture YK-A811A-D8571-57-GR-GG Olefin Fiber Floor Mat, Stain Resistant, 5 x 7 ft, Abstract, Multi-Colored</title><mature>false</mature><description>The Entrance Mats by Flash Furniture: Caldor Collection Abstract Olefin Area Rug, 60W x 90D, indoor use, olefin fibers, stain resistant, jute backing, water repellent, non-shedding, beige/red/green ( Flash Furniture - YK-A811A-D8571-57-GR-GG )</description><manufacturer>Flash Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.katom.com%2F916-YKA811AD857157GR.html%3Futm_source%3DShopzilla%26utm_medium%3DCSE%26utm_campaign%3DFlash%2BFurniture%26utm_content%3DSZ_REDIRECT_ID%26utm_term%3D916YKA811AD857157GR%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=44084&amp;cat_id=25000900&amp;atom=10705&amp;prod_id=&amp;oid=23729610053&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=42cebdc0db812186&amp;cobrand=1&amp;ppr=35aa3ac6211559d7&amp;af_sid=19&amp;mpid=916-YKA811AD857157GR&amp;keyword=rugs&amp;a=a633a3c54179a8a9095cb9f843592d55&amp;dv=e7b953bd78f728911adad93887b9b0867a9121bc712093a8&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d8.cnnx.io/image/obj/23729610053;sq=60;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuMwXkw0kY0qSCwnPHjNRDEY3AcIFIJbQdrajLv6SoHiGesL8VWXbl</Image><Image xsize="100" ysize="100">https://d8.cnnx.io/image/obj/23729610053;sq=100;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuMwXkw0kY0qSCwnPHjNRDEY3AcIFIJbQdrajLv6SoHiGesL8VWXbl</Image><Image xsize="160" ysize="160">https://d8.cnnx.io/image/obj/23729610053;sq=160;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuMwXkw0kY0qSCwnPHjNRDEY3AcIFIJbQdrajLv6SoHiGesL8VWXbl</Image><Image xsize="400" ysize="400">https://d8.cnnx.io/image/obj/23729610053;sq=400;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuMwXkw0kY0qSCwnPHjNRDEY3AcIFIJbQdrajLv6SoHiGesL8VWXbl</Image></Images><Skus><sku>YKA811AD857157GRGG</sku></Skus><sku>YKA811AD857157GRGG</sku><detailUrl>https://www.bizrate.com/oid23729610053?af_sid=19&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="8096">$80.96</price><originalPrice integral="13764">$137.64</originalPrice><markdownPercent>41.18</markdownPercent><totalPrice integral="8096">$80.96</totalPrice><bidded>true</bidded><merchantProductId>916-YKA811AD857157GR</merchantProductId><merchantName>KaTom</merchantName><merchantLogoUrl>https://s9.cnnx.io/merchant/little/44084.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>16.000</shipWeight><relevancy>6.018792</relevancy><googleCategoryId>Hardware &gt; Building Materials &gt; Flooring &amp; Carpet</googleCategoryId></Offer><Offer merchantId="44084" categoryId="25000900" id="23729610055"><title>Flash Furniture YK-A811A-D8571-8R-GR-GG Olefin Fiber Floor Mat, Stain Resistant - 8 x 8 ft, Abstract, Multi-Colored</title><mature>false</mature><description>The Entrance Mats by Flash Furniture: Caldor Collection Abstract Olefin Area Rug, 93 x 93, round, indoor use, olefin fibers, stain resistant, jute backing, water repellent, non-shedding, beige/red/green ( Flash Furniture - YK-A811A-D8571-8R-GR-GG )</description><manufacturer>Flash Furniture</manufacturer><url>https://rd.bizrate.com/rd?t=https%3A%2F%2Fwww.katom.com%2F916-YKA811AD85718RGR.html%3Futm_source%3DShopzilla%26utm_medium%3DCSE%26utm_campaign%3DFlash%2BFurniture%26utm_content%3DSZ_REDIRECT_ID%26utm_term%3D916YKA811AD85718RGR%26cnxclid%3DSZ_REDIRECT_ID&amp;mid=44084&amp;cat_id=25000900&amp;atom=10705&amp;prod_id=&amp;oid=23729610055&amp;pos=1&amp;b_id=18&amp;bid_type=10&amp;bamt=42cebdc0db812186&amp;cobrand=1&amp;ppr=0e0c0b79af57e30a&amp;af_sid=19&amp;mpid=916-YKA811AD85718RGR&amp;keyword=rugs&amp;a=a633a3c54179a8a9095cb9f843592d55&amp;dv=e7b953bd78f728911adad93887b9b0867a9121bc712093a8&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</url><Images><Image xsize="60" ysize="60">https://d10.cnnx.io/image/obj/23729610055;sq=60;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuMwXkw0kY0qSCwn6ijNRDEY2xT7TAzpUIxLNGZvOk74fZNGE0mQhE</Image><Image xsize="100" ysize="100">https://d10.cnnx.io/image/obj/23729610055;sq=100;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuMwXkw0kY0qSCwn6ijNRDEY2xT7TAzpUIxLNGZvOk74fZNGE0mQhE</Image><Image xsize="160" ysize="160">https://d10.cnnx.io/image/obj/23729610055;sq=160;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuMwXkw0kY0qSCwn6ijNRDEY2xT7TAzpUIxLNGZvOk74fZNGE0mQhE</Image><Image xsize="400" ysize="400">https://d10.cnnx.io/image/obj/23729610055;sq=400;p=0;t=ooPwmM0WTWKYEhJbU0tycd5YS58hOJxx6Mok6XvFfuUrjaqsRg6V3gNvuNJ9aK0InLsZcpkkiJrPE7TVPrnuMwXkw0kY0qSCwn6ijNRDEY2xT7TAzpUIxLNGZvOk74fZNGE0mQhE</Image></Images><Skus><sku>YKA811AD85718RGRGG</sku></Skus><sku>YKA811AD85718RGRGG</sku><detailUrl>https://www.bizrate.com/oid23729610055?af_sid=19&amp;rf=af1&amp;af_assettype_id=10&amp;af_creative_id=2975&amp;af_id=726189&amp;af_placement_id=1</detailUrl><price integral="12705">$127.05</price><originalPrice integral="21600">$216.00</originalPrice><markdownPercent>41.18</markdownPercent><totalPrice integral="12705">$127.05</totalPrice><bidded>true</bidded><merchantProductId>916-YKA811AD85718RGR</merchantProductId><merchantName>KaTom</merchantName><merchantLogoUrl>https://s9.cnnx.io/merchant/little/44084.gif</merchantLogoUrl><condition>NEW</condition><stock>IN</stock><shipType>UNKNOWN</shipType><shipWeight>30.000</shipWeight><relevancy>5.937651</relevancy><googleCategoryId>Hardware &gt; Building Materials &gt; Flooring &amp; Carpet</googleCategoryId></Offer></Offers></ProductResponse>
bizrate/tshirts_726189.xml ADDED
The diff for this file is too large to render. See raw diff
 
bizrate/versace_726189.xml ADDED
The diff for this file is too large to render. See raw diff
 
df_session.xlsx ADDED
Binary file (5.31 kB). View file
 
df_sku.xlsx ADDED
Binary file (4.93 kB). View file
 
recommend.py ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+ import numpy as np
3
+ import requests,io
4
+ from bs4 import BeautifulSoup
5
+ import urllib.parse
6
+
7
+ from datetime import datetime
8
+ from datetime import timedelta
9
+
10
+
11
+ import streamlit as st
12
+ import uuid
13
+
14
+ import warnings
15
+
16
+ warnings.filterwarnings('ignore')
17
+
18
+ # Importing Custom Modules
19
+ from folder_management import create_folder, remove_files_folder
20
+ from sqlite_database import create_insert_table, query_table
21
+
22
+ '''
23
+ This Module will, for a particular keyword and publisherid combo query data from bizrate.com store it
24
+ in bizrate.db. And then generate Top 50 recommendation from it and Store it in RecSysData.db
25
+
26
+ '''
27
+
28
+
29
+ # Function Definitions
30
+ def tag_to_list(tag_name, soup):
31
+ if tag_name == 'Image':
32
+ tag_list = soup.find_all(tag_name, {'xsize': '400'})
33
+ else:
34
+ tag_list = soup.find_all(tag_name)
35
+
36
+ return pd.Series([item.text for item in tag_list])
37
+
38
+
39
+ def loadRSS(filepath, keyword, publisherid):
40
+ url = filepath
41
+ resp = requests.get(url)
42
+ with open('bizrate/' + keyword + "_" + publisherid + '.xml', 'wb') as f:
43
+ f.write(resp.content)
44
+
45
+
46
+ def remove_dollar_comma(row):
47
+ try:
48
+ row = row.split('$')[1]
49
+ row = row.replace(',', '')
50
+ row = float(row)
51
+ except AttributeError:
52
+ return row
53
+ return row
54
+
55
+
56
+ def url_decode(url):
57
+ return urllib.parse.unquote(url.split('?t=')[1])
58
+
59
+
60
+ def query_bizrate(keyword, publisherid='726189', search_results=500):
61
+ file_path = 'http://catalog.bizrate.com/services/catalog/v1/api/product?apiKey=36874cbf9d18804f1a3d23b1a774dcce' \
62
+ '&publisherId={}&placementId=1&categoryId=&keyword={' \
63
+ '}&productId=&productIdType=&offersOnly=true&merchantId=&brandId=&biddedOnly=&minPrice=&maxPrice' \
64
+ '=&minMarkdown=&zipCode=&freeShipping=&start=0&results={' \
65
+ '}&startOffers=0&resultsOffers=0&sort=relevancy_desc&attFilter=&attWeights=&attributeId' \
66
+ '=&resultsAttribute=10&resultsAttributeValues=10&showAttributes=&showProductAttributes' \
67
+ '=&minRelevancyScore=1000&maxAge=&showRawUrl=&showUnitPricing=&useSecureImageDomain' \
68
+ '=&useSecureLinkDomain=&reviews=none&format=xml&callback=callback'.format(publisherid,
69
+ keyword,
70
+ search_results)
71
+
72
+ loadRSS(file_path, keyword, publisherid) # stores data as xml file in RecSysData Folder
73
+
74
+ with open('bizrate/' + keyword + "_" + publisherid + '.xml', 'r', errors='ignore') as f:
75
+ file = f.read()
76
+
77
+ soup = BeautifulSoup(file, 'xml')
78
+
79
+ # cols = ['title', 'Brand', 'mature', 'description', 'manufacturer', 'url', 'Image', 'Skus', 'upc', 'gtin', 'ean13',
80
+ # 'detailUrl',
81
+ # 'price', 'originalPrice', 'markdownPercent', 'totalPrice', 'bidded', 'merchantProductId',
82
+ # 'merchantName', 'merchantLogoUrl', 'condition', 'stock', 'shipAmount', 'shipType', 'relevancy']
83
+
84
+ cols = ['title', 'Brand', 'url', 'Image', 'Skus', 'price', 'originalPrice', 'markdownPercent', 'totalPrice',
85
+ 'condition', 'stock', 'relevancy']
86
+
87
+ df_product = pd.DataFrame({'title': pd.Series(dtype='object'),
88
+ 'Brand': pd.Series(dtype='object'),
89
+ 'url': pd.Series(dtype='object'),
90
+ 'Image': pd.Series(dtype='object'),
91
+ 'Skus': pd.Series(dtype='object'),
92
+ 'price': pd.Series(dtype='object'),
93
+ 'originalPrice': pd.Series(dtype='object'),
94
+ 'markdownPercent': pd.Series(dtype='object'),
95
+ 'totalPrice': pd.Series(dtype='object'),
96
+ 'condition': pd.Series(dtype='object'),
97
+ 'stock': pd.Series(dtype='object'),
98
+ 'relevancy': pd.Series(dtype='object')})
99
+ for col in cols:
100
+ df_product[col] = tag_to_list(col, soup)
101
+ df_product.dropna(subset=['Skus'], inplace=True)
102
+ df_product['Skus'] = df_product['Skus'].astype('object')
103
+
104
+ # Inserting the DataFrame into the bizrate DB into the corresponding table
105
+ create_insert_table(db_name='bizrate', table_name=keyword + "_" + publisherid, df=df_product)
106
+
107
+
108
+ def generate_clickreport(api_key='36874cbf9d18804f1a3d23b1a774dcce', publisher_id='726189'):
109
+ today = datetime.utcnow().date()
110
+ previous_day = today - timedelta(days=5)
111
+ start_date = previous_day.strftime("%Y-%m-%d")
112
+ end_date = today.strftime("%Y-%m-%d")
113
+ list_of_dates = [d.strftime('%Y-%m-%d') for d in pd.date_range(start=start_date, end=end_date, freq='D')]
114
+ # print(list_of_dates)
115
+ df_click = pd.DataFrame({}, columns=['report_date', 'publisher_id', 'campaign_id', 'placement_id', 'rid',
116
+ 'clicks', 'earnings', 'cpc'])
117
+ for reportDate in list_of_dates:
118
+ url = 'https://publisher-api.connexity.com/api/reporting/getClickReport?publisherId={}&reportDate={}&apiKey={}'.format(
119
+ publisher_id, reportDate, api_key)
120
+ # print(url)
121
+ urlData = requests.get(url).content
122
+ rawData = pd.read_csv(io.StringIO(urlData.decode("utf-8")))
123
+ df_click= pd.concat([df_click, rawData]) # Vertical Stacking
124
+
125
+ # Data Transformation
126
+ df_click[['keyword', 'Skus']] = df_click['rid'].str.split("_", expand=True)
127
+ df_click = df_click[['report_date', 'publisher_id', 'campaign_id', 'placement_id', 'rid', 'keyword', 'Skus',
128
+ 'clicks', 'earnings', 'cpc']]
129
+
130
+ create_insert_table(db_name='clickReport', table_name='clickReport', df=df_click)
131
+
132
+
133
+
134
+ def recommend(keyword, publisherid='726189', campaign_id='test_campaign', relevancy_filter=False, price_filter=True,
135
+ discount_filter=False,
136
+ condition_filter='NEW', stock_filter='IN', n_rec=50):
137
+ # Querying required data from the bizrate database
138
+ df_product = query_table(db_name='bizrate', table_name=keyword + "_" + publisherid)
139
+ df_product.to_csv(keyword + "_" + publisherid + '.csv', index=False)
140
+ '''df_sku = pd.read_excel('df_sku.xlsx')
141
+ sku_list = list(df_product['Skus'].unique())
142
+ df_session = pd.read_excel('df_session.xlsx')
143
+ session_id = list(df_session['ID'])[-1]
144
+ for sku in sku_list:
145
+ df_row = pd.DataFrame({'SessionID': session_id, 'Keyword': selected_keyword, 'Skus': sku, 'Count': 0}, index=[0])
146
+ df_sku = pd.concat([df_sku, df_row], ignore_index=True)
147
+ df_sku.to_excel('df_sku.xlsx', index = False)'''
148
+
149
+ df_product['price'] = df_product['price'].map(remove_dollar_comma)
150
+ df_product['originalPrice'] = df_product['originalPrice'].map(remove_dollar_comma)
151
+ df_product['totalPrice'] = df_product['totalPrice'].map(remove_dollar_comma)
152
+ # df_product['shipAmount'] = df_product['shipAmount'].map(remove_dollar_comma)
153
+ df_product['markdownPercent'] = df_product['markdownPercent'].astype('float')
154
+ df_product['relevancy'] = df_product['relevancy'].astype('float')
155
+
156
+ optional_tracking_string = '&af_campaign_id={}&af_rid={}_'.format(campaign_id, keyword)
157
+ df_product['url'] = df_product['url'] + df_product['Skus'].map(lambda x: optional_tracking_string + x)
158
+
159
+ # Sorting the Results
160
+ df_product = df_product.sort_values(by=['relevancy', 'price', 'markdownPercent'],
161
+ ascending=[relevancy_filter, price_filter, discount_filter], na_position='last')
162
+
163
+ # Filtering the Results
164
+ # condition_filter = st.sidebar.selectbox("Condition of the Product: ", list(df_product['condition'].unique()))
165
+ # stock_filter = st.sidebar.selectbox("Stock of Products: ", list(df_product['stock'].unique()))
166
+
167
+ #filter_condition = (df_product['condition'] == condition_filter) & (df_product['stock'] == stock_filter)
168
+ filter_condition = df_product['stock'] == stock_filter
169
+ df_product = df_product[filter_condition]
170
+
171
+ # Top N Recommendations
172
+ top_n_rec = df_product.head(n_rec)
173
+
174
+ # Inserting the DataFrame into the bizrate DB into the corresponding table
175
+ create_insert_table(db_name='RecSysData', table_name=keyword + "_" + publisherid, df=top_n_rec)
176
+
177
+ # Main Program
178
+ # selected_keyword = 'aquaman'
179
+ # publisher_id = '725895'
180
+ # query_bizrate(selected_keyword, publisher_id, 100)
181
+ # recommend(selected_keyword, publisher_id)
182
+
183
+ # list_keywords = ['aquaman', 'superman', 'batman', 'shoes', 'electronics', 'wallet', 'movies', 'books']
184
+ #
185
+ # for selected_keyword in list_keywords:
186
+ # query_bizrate(selected_keyword)
187
+ # recommend(selected_keyword)
requirements.txt ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ altair==4.2.0
2
+ attrs==22.2.0
3
+ beautifulsoup4==4.11.1
4
+ blinker==1.5
5
+ cachetools==5.2.0
6
+ certifi==2022.12.7
7
+ charset-normalizer==2.1.1
8
+ click==8.1.3
9
+ colorama==0.4.6
10
+ commonmark==0.9.1
11
+ decorator==5.1.1
12
+ entrypoints==0.4
13
+ et-xmlfile==1.1.0
14
+ gitdb==4.0.10
15
+ GitPython==3.1.30
16
+ idna==3.4
17
+ importlib-metadata==6.0.0
18
+ Jinja2==3.1.2
19
+ jsonschema==4.17.3
20
+ lxml==4.9.2
21
+ MarkupSafe==2.1.1
22
+ numpy==1.24.1
23
+ openpyxl==3.0.10
24
+ packaging==22.0
25
+ pandas==1.5.2
26
+ Pillow==9.4.0
27
+ protobuf==3.20.3
28
+ pyarrow==10.0.1
29
+ pydeck==0.8.0
30
+ Pygments==2.14.0
31
+ Pympler==1.0.1
32
+ pyrsistent==0.19.3
33
+ python-dateutil==2.8.2
34
+ pytz==2022.7
35
+ pytz-deprecation-shim==0.1.0.post0
36
+ requests==2.28.1
37
+ rich==13.0.0
38
+ semver==2.13.0
39
+ six==1.16.0
40
+ smmap==5.0.0
41
+ soupsieve==2.3.2.post1
42
+ st-click-detector==0.1.3
43
+ streamlit==1.16.0
44
+ toml==0.10.2
45
+ toolz==0.12.0
46
+ tornado==6.2
47
+ typing_extensions==4.4.0
48
+ tzdata==2022.7
49
+ tzlocal==4.2
50
+ urllib3==1.26.13
51
+ validators==0.20.0
52
+ watchdog==2.2.1
53
+ zipp==3.11.0
sqlite_database.py ADDED
@@ -0,0 +1,196 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import sqlite3
2
+ import pandas as pd
3
+ import datetime
4
+
5
+ # Functions
6
+
7
+ def create_insert_table(db_name, table_name, df):
8
+ try:
9
+ sqliteconnection = sqlite3.connect('sqlite_databases/{}.db'.format(db_name))
10
+ cursor = sqliteconnection.cursor()
11
+ print('DB Init')
12
+
13
+ # Write a query and execute it with cursor
14
+ # query = 'SELECT sqlite_version();'
15
+ # cursor.execute(query)
16
+
17
+ # Fetch and Output Result
18
+ # result = cursor.fetchall()
19
+ # print('SQLite Version is {}'.format(result))
20
+
21
+ # Drop the table if already exists.
22
+ cursor.execute("DROP TABLE IF EXISTS {}".format(table_name))
23
+
24
+ # Creating table
25
+ bizrate_table_string = """ CREATE TABLE {} (
26
+ title VARCHAR(500),
27
+ Brand CHAR(100),
28
+ url TEXT,
29
+ Image TEXT,
30
+ Skus TEXT,
31
+ price VARCHAR(50),
32
+ originalPrice VARCHAR(50),
33
+ markdownPercent VARCHAR(50),
34
+ totalPrice VARCHAR(50),
35
+ condition VARCHAR(10),
36
+ stock VARCHAR(10),
37
+ relevancy REAL); """.format(table_name)
38
+
39
+ recsys_table_string = """ CREATE TABLE {} (
40
+ title VARCHAR(500),
41
+ Brand CHAR(100),
42
+ url TEXT,
43
+ Image TEXT,
44
+ Skus TEXT,
45
+ price REAL,
46
+ originalPrice REAL,
47
+ markdownPercent REAL,
48
+ totalPrice REAL,
49
+ condition VARCHAR(10),
50
+ stock VARCHAR(10),
51
+ relevancy REAL); """.format(table_name)
52
+
53
+ clickReport_table_string = """ CREATE TABLE {} (
54
+ report_date VARCHAR(50),
55
+ publisher_id VARCHAR(10),
56
+ campaign_id VARCHAR(50),
57
+ placement_id VARCHAR(10),
58
+ rid TEXT,
59
+ keyword TEXT,
60
+ Skus TEXT,
61
+ clicks REAL,
62
+ earnings REAL,
63
+ cpc REAL); """.format(table_name)
64
+
65
+ # Create Table
66
+ if db_name == 'bizrate':
67
+ table_string = bizrate_table_string
68
+ cursor.execute(table_string)
69
+ elif db_name == 'RecSysData':
70
+ table_string = recsys_table_string
71
+ cursor.execute(table_string)
72
+ elif db_name == 'clickReport':
73
+ table_string = clickReport_table_string
74
+ cursor.execute(table_string)
75
+
76
+
77
+ # Inserting the DataFrame into the Sqlite Table
78
+ df.to_sql(table_name, sqliteconnection, if_exists='replace', index=False)
79
+ sqliteconnection.commit()
80
+ # Handle Errors
81
+ except sqlite3.Error as error:
82
+ print('Error Occured - ', error)
83
+
84
+ # Close the DB Connection Irrespective of Success or Failure
85
+ finally:
86
+ if sqliteconnection:
87
+ sqliteconnection.close()
88
+ print('SQLite Connection Closed.')
89
+
90
+
91
+ def query_table(db_name, table_name):
92
+ try:
93
+ sqliteconnection = sqlite3.connect('sqlite_databases/{}.db'.format(db_name))
94
+ cursor = sqliteconnection.cursor()
95
+ print('DB Init')
96
+
97
+
98
+ query_string = '''
99
+ SELECT *
100
+ FROM {}
101
+ '''.format(table_name)
102
+
103
+ query_op_df = pd.read_sql_query(query_string, sqliteconnection)
104
+
105
+ # Handle Errors
106
+ except sqlite3.Error as error:
107
+ print('Error Occured - ', error)
108
+
109
+ # Close the DB Connection Irrespective of Success or Failure
110
+ finally:
111
+ if sqliteconnection:
112
+ sqliteconnection.close()
113
+ print('SQLite Connection Closed.')
114
+
115
+ return query_op_df
116
+
117
+
118
+ def insert_clickdata_table(session_id, keyword, publisherid, sku, count):
119
+ try:
120
+ conn = sqlite3.connect('sqlite_databases/{}.db'.format('session_data'))
121
+ cursor = conn.cursor()
122
+ print('Click Data DB Init')
123
+
124
+ # Creating Table
125
+ table_string = """ CREATE TABLE IF NOT EXISTS session_data (
126
+ clicked_at TIMESTAMP,
127
+ session_id TEXT,
128
+ keyword VARCHAR(100),
129
+ publisherid VARCHAR(100),
130
+ Skus TEXT,
131
+ count INTEGER); """.format(table_name)
132
+ cursor.execute(table_string)
133
+ currentDateTime = datetime.datetime.now()
134
+ insert_string = '''INSERT INTO session_data VALUES ('{}', '{}', '{}', '{}', '{}', {})'''.format(currentDateTime, session_id, keyword, publisherid, sku, count)
135
+ print(insert_string)
136
+ cursor.execute(insert_string)
137
+ #cursor.execute('''INSERT INTO click_data (keyword, Skus) VALUES ({}, {})'''.format(table_name, keyword, sku))
138
+
139
+ conn.commit()
140
+
141
+
142
+ # Handle Errors
143
+ except sqlite3.Error as error:
144
+ print('Error Occured - ', error)
145
+
146
+ # Close the DB Connection Irrespective of Success or Failure
147
+ finally:
148
+ if conn:
149
+ conn.close()
150
+ print('SQLite Connection Closed.')
151
+
152
+
153
+ def check_for_table(db_name, table_name):
154
+ '''Checks whether the specified table exists within the specified database.
155
+ Returns True if it does.
156
+ Else returns False.'''
157
+
158
+ filepath = 'sqlite_databases/'
159
+ conn = sqlite3.connect(filepath + db_name + ".db")
160
+ cursor = conn.cursor()
161
+
162
+ query_string = '''
163
+ SELECT name
164
+ FROM sqlite_master
165
+ WHERE type = 'table' AND name='{}';
166
+ '''.format(table_name)
167
+
168
+ result = cursor.execute(query_string)
169
+ list_of_tables = result.fetchall()
170
+ conn.close()
171
+ # print(len(list_of_tables))
172
+ return bool(len(list_of_tables))
173
+
174
+ # Main Program
175
+
176
+ # Input
177
+ file_path = 'bizrate/aqua_725895.xlsx'
178
+
179
+ file_name = file_path.split('/')
180
+ db_name = file_name[0]
181
+ table_name = file_name[1].split('.')[0]
182
+
183
+
184
+ # # Creating Table/ Inserting Data
185
+ # print('Creating/Accessing the DataBase: {} ; Inserting Data into Table: {}'.format(db_name, table_name))
186
+
187
+ # df = pd.read_excel(file_path)
188
+ # .drop(columns='markdownpercent', inplace=True)
189
+
190
+ # create_insert_table(db_name, table_name, df)
191
+
192
+
193
+ # # Query Sqlite Database
194
+ # df = query_table(db_name, table_name)
195
+ # print(df.head())
196
+ # print(df.info())
sqlite_databases/RecSysData.db ADDED
Binary file (365 kB). View file
 
sqlite_databases/RecSysData_archive.db ADDED
Binary file (135 kB). View file
 
sqlite_databases/bizrate.db ADDED
Binary file (987 kB). View file
 
sqlite_databases/bizrate_archive.db ADDED
Binary file (553 kB). View file
 
sqlite_databases/clickReport.db ADDED
Binary file (20.5 kB). View file
 
sqlite_databases/session_data.db ADDED
Binary file (16.4 kB). View file
 
sqlite_databases/session_data_archive.db ADDED
Binary file (8.19 kB). View file